@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,16 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" id="tnt-Scene-NoUsers">
2
+ <path fill="var(--sapIllus_BackgroundColor)" d="M291.511203,65.949879 C280.876203,51.820879 264.104203,40.708879 240.401203,35.081879 C198.748203,25.194879 137.096203,3.92487898 94.1502033,17.280879 C54.0502033,29.751879 18.7242033,68.299879 15.4812033,108.223879 C8.35020326,196.005879 81.7602033,222.591879 150.387203,225.809879 C182.124203,227.298879 213.787203,220.223879 242.943203,207.867879 C300.381203,183.522879 323.414203,108.336879 291.511203,65.949879" class="sapIllus_BackgroundColor"/>
3
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M287.033703,112.111979 C287.033703,141.456979 268.709703,166.614979 242.643703,177.232979 L187.266703,177.232979 C161.201703,166.614979 142.877703,141.456979 142.877703,112.111979 C142.877703,89.127979 154.119703,68.711979 171.516703,55.838979 L258.941703,56.247979 C276.027703,69.140979 287.033703,89.369979 287.033703,112.111979" class="sapIllus_ObjectFillColor"/>
4
+ <path fill="var(--sapIllus_Layering2)" d="M250.126503,168.574879 C247.123503,170.399879 243.967503,171.992879 240.674503,173.334879 L189.237503,173.334879 C185.578503,171.838879 182.084503,170.042879 178.782503,167.957879 C178.897503,167.793879 179.032503,167.628879 179.178503,167.483879 C179.795503,166.866879 180.654503,166.479879 181.601503,166.479879 L246.969503,166.479879 C248.388503,166.479879 249.605503,167.339879 250.126503,168.574879" class="sapIllus_Layering2"/>
5
+ <polygon fill="var(--sapIllus_BrandColorSecondary)" points="215.603 166.485 245.628 166.485 245.628 133.362 215.603 133.362" class="sapIllus_BrandColorSecondary"/>
6
+ <polygon fill="var(--sapIllus_BrandColorSecondary)" points="251.254 116.59 251.254 133.359 209.976 133.359 209.976 116.59 216.262 116.59 216.262 120.765 221.926 120.765 221.926 116.59 227.777 116.59 227.777 120.765 233.452 120.765 233.452 116.59 239.305 116.59 239.305 120.765 244.968 120.765 244.968 116.59" class="sapIllus_BrandColorSecondary"/>
7
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M230.649903,147.474279 C226.578903,147.474279 223.276903,150.774279 223.276903,154.846279 L223.276903,166.485279 L238.021903,166.485279 L238.021903,154.846279 C238.021903,150.774279 234.720903,147.474279 230.649903,147.474279" class="sapIllus_StrokeDetailColor"/>
8
+ <polygon fill="var(--sapIllus_StrokeDetailColor)" points="215.603 133.358 245.628 133.358 245.628 134.918 218.195 134.918" class="sapIllus_StrokeDetailColor"/>
9
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M171.678203,149.315079 C171.532203,149.315079 171.388203,149.252079 171.288203,149.128079 C162.910203,138.735079 158.296203,125.644079 158.296203,112.269079 C158.296203,107.239079 158.933203,102.242079 160.190203,97.417079 C160.258203,97.150079 160.529203,96.986079 160.799203,97.059079 C161.067203,97.128079 161.227203,97.401079 161.157203,97.669079 C159.922203,102.412079 159.296203,107.324079 159.296203,112.269079 C159.296203,125.417079 163.831203,138.285079 172.068203,148.502079 C172.240203,148.716079 172.206203,149.031079 171.991203,149.205079 C171.900203,149.279079 171.788203,149.315079 171.678203,149.315079" class="sapIllus_StrokeDetailColor"/>
10
+ <path fill="var(--sapIllus_BackgroundColor)" d="M184.478103 123.087579C184.478103 125.537579 182.492103 127.524579 180.041103 127.524579 177.590103 127.524579 175.604103 125.537579 175.604103 123.087579 175.604103 120.637579 177.590103 118.650579 180.041103 118.650579 182.492103 118.650579 184.478103 120.637579 184.478103 123.087579M191.827703 134.427379C191.827703 135.994379 190.557703 137.265379 188.990703 137.265379 187.423703 137.265379 186.152703 135.994379 186.152703 134.427379 186.152703 132.860379 187.423703 131.589379 188.990703 131.589379 190.557703 131.589379 191.827703 132.860379 191.827703 134.427379M188.432203 98.085679C188.432203 99.344679 187.411203 100.364679 186.153203 100.364679 184.894203 100.364679 183.874203 99.344679 183.874203 98.085679 183.874203 96.826679 184.894203 95.807679 186.153203 95.807679 187.411203 95.807679 188.432203 96.826679 188.432203 98.085679" class="sapIllus_BackgroundColor"/>
11
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M242.546403 176.733079L187.364403 176.733079C160.639403 165.805079 143.377403 140.451079 143.377403 112.112079 143.377403 90.031079 153.691403 69.712079 171.681403 56.339079L258.773403 56.747079C276.417403 70.125079 286.533403 90.295079 286.533403 112.112079 286.533403 140.451079 269.272403 165.805079 242.546403 176.733079M287.533403 112.112079C287.533403 89.923079 277.222403 69.416079 259.242403 55.848079 259.156403 55.784079 259.052403 55.749079 258.943403 55.748079L171.519403 55.338079 171.517403 55.338079C171.409403 55.338079 171.306403 55.373079 171.219403 55.436079 152.890403 69.000079 142.377403 89.657079 142.377403 112.112079 142.377403 140.123079 159.002403 165.253079 184.927403 176.773079L40.1924033 176.733079C39.9164033 176.733079 39.6924033 176.957079 39.6924033 177.233079 39.6924033 177.509079 39.9164033 177.733079 40.1924033 177.733079L253.853403 177.793079C254.129403 177.793079 254.353403 177.569079 254.353403 177.293079 254.353403 177.016079 254.129403 176.793079 253.853403 176.793079L244.944403 176.790079C270.892403 165.277079 287.533403 140.137079 287.533403 112.112079M257.8833 177.792679C257.608303 177.792679 257.384303 177.569679 257.3833 177.294679 257.382303 177.018679 257.605303 176.793679 257.881303 176.792679L273.892303 176.732679C274.141303 176.735679 274.393303 176.953679 274.394307 177.230679 274.395303 177.507679 274.172303 177.731679 273.896303 177.732679L257.885303 177.792679 257.8833 177.792679z" class="sapIllus_StrokeDetailColor"/>
12
+ <path fill="var(--sapIllus_AccentColor)" d="M210.247603,151.544579 C207.756603,154.502579 211.809603,161.998579 209.077603,166.293579 C205.748603,158.555579 210.681603,149.213579 208.848603,142.787579 C208.059603,140.486579 204.616603,141.465579 205.563603,143.897579 C207.463603,148.771579 204.560603,156.659579 206.208603,162.789579 C204.988603,160.092579 204.265603,157.694579 204.489603,154.919579 C204.764603,153.275579 202.188603,152.946579 201.695603,155.357579 C201.029603,159.795579 203.923603,163.774579 206.876603,166.480579 L208.012603,166.480579 L208.971603,166.480579 L209.148603,166.480579 L210.329603,166.480579 C213.314603,162.926579 211.858603,156.223579 212.669603,153.540579 C213.721603,150.976579 211.604603,150.313579 210.247603,151.544579" class="sapIllus_AccentColor"/>
13
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M60.8179033,179.721379 C57.9889033,175.082379 56.6679033,172.711379 57.5339033,169.526379 C57.7289033,168.807379 58.0179033,168.132379 58.3719033,167.496379 C62.0549033,172.140379 67.3019033,175.480379 73.3159033,176.737379 L113.811903,176.750379 C113.313903,170.055379 109.608903,166.435379 99.6409033,166.468379 L99.6319033,166.473379 C102.661903,162.241379 104.449903,157.061379 104.449903,151.459379 C104.449903,150.179379 104.352903,148.922379 104.172903,147.693379 C104.172903,147.693379 104.173903,147.693379 104.173903,147.694379 C107.547903,150.657379 115.451903,173.022379 120.082903,176.752379 L137.649903,176.758379 C137.343903,170.676379 134.471903,166.372379 125.116903,166.553379 L114.899903,144.791379 C113.120903,141.001379 112.216903,136.863379 112.254903,132.675379 C112.313903,126.104379 112.436903,119.264379 111.816903,112.702379 L142.296903,101.469379 C142.767903,101.312379 143.090903,100.985379 143.325903,100.582379 C144.251903,94.974379 145.845903,89.548379 148.069903,84.397379 C143.475903,83.803379 139.354903,85.052379 137.752903,92.069379 C137.486903,93.233379 136.588903,94.153379 135.421903,94.405379 L109.268903,99.910379 C107.591903,94.954379 105.016903,90.450379 101.055903,86.723379 C111.513903,88.214379 122.338903,82.501379 123.495903,73.847379 L119.089903,69.849379 C117.225903,63.262379 112.857903,58.925379 103.043903,57.836379 L104.449903,46.404379 C77.6819033,57.227379 81.5509033,84.058379 80.3479033,98.745379 C79.1529033,113.340379 55.9549033,126.989379 53.1199033,147.311379 C53.1009033,147.425379 53.0819033,147.540379 53.0639033,147.657379 C53.0629033,147.668379 53.0599033,147.681379 53.0579033,147.694379 L53.0589033,147.694379 C52.8799033,148.922379 52.7829033,150.180379 52.7829033,151.459379 C52.7829033,152.768379 52.8819033,154.054379 53.0699033,155.311379 C49.9899033,158.039379 47.2369033,161.661379 45.9549033,166.377379 C43.6939033,174.688379 47.3479033,180.680379 50.5719033,185.969379 C52.7759033,189.582379 54.8569033,192.996379 55.5019033,197.450379 C56.1259033,201.768379 51.9609033,205.739379 48.3569033,208.309379 C45.6589033,210.233379 45.0319033,213.981379 46.9559033,216.678379 C48.1269033,218.319379 49.9719033,219.194379 51.8449033,219.194379 C53.0509033,219.194379 54.2679033,218.832379 55.3249033,218.078379 C66.7769033,209.912379 68.1999033,201.418379 67.3779033,195.731379 C66.3819033,188.848379 63.2969033,183.787379 60.8179033,179.721379" class="sapIllus_BrandColorSecondary"/>
14
+ <path fill="var(--sapIllus_PatternShadow)" d="M281.931203 112.854179C281.931203 140.108179 264.904203 163.479179 240.697203 173.339179L189.261203 173.339179C171.632203 166.160179 157.822203 151.813179 151.623203 134.027179 164.334203 148.844179 183.193203 158.221179 204.248203 158.221179 242.553203 158.221179 273.587203 127.174179 273.587203 88.882179 273.587203 86.280179 273.444203 83.704179 273.156203 81.179179L273.587203 81.179179C278.897203 90.569179 281.931203 101.372179 281.931203 112.854179M51.8462033 219.200879C49.9732033 219.200879 48.1272033 218.325879 46.9562033 216.683879 46.2352033 215.672879 45.8722033 214.513879 45.8432033 213.357879 53.2332033 212.031879 69.2442033 203.740879 60.8192033 179.727879 63.2972033 183.793879 66.3832033 188.853879 67.3782033 195.737879 68.2002033 201.424879 66.7782033 209.918879 55.3252033 218.085879 54.2692033 218.839879 53.0522033 219.200879 51.8462033 219.200879" class="sapIllus_PatternShadow"/>
15
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M240.573803,172.832679 L189.337803,172.832679 C164.534803,162.686679 148.512803,139.152679 148.512803,112.851679 C148.512803,102.147679 151.225803,91.551679 156.361803,82.183679 L166.611803,82.139679 C165.977803,83.195679 165.368803,84.267679 164.803803,85.359679 C164.677803,85.605679 164.773803,85.906679 165.018803,86.033679 C165.092803,86.071679 165.171803,86.089679 165.248803,86.089679 C165.428803,86.089679 165.603803,85.990679 165.692803,85.818679 C166.340803,84.562679 167.052803,83.340679 167.794803,82.133679 L273.270803,81.679679 C278.589803,91.180679 281.398803,101.951679 281.398803,112.851679 C281.398803,139.152679 265.377803,162.686679 240.573803,172.832679 M273.998803,80.932679 C273.909803,80.774679 273.742803,80.678679 273.562803,80.678679 L273.560803,80.678679 L168.422803,81.131679 C172.029803,75.519679 176.607803,70.496679 181.894803,66.434679 C182.113803,66.266679 182.154803,65.951679 181.986803,65.732679 C181.817803,65.513679 181.503803,65.473679 181.285803,65.641679 C175.737803,69.904679 170.959803,75.208679 167.239803,81.136679 L156.063803,81.184679 C155.882803,81.185679 155.716803,81.283679 155.628803,81.441679 C150.319803,91.019679 147.512803,101.881679 147.512803,112.851679 C147.512803,139.593679 163.817803,163.515679 189.051803,173.795679 C189.110803,173.819679 189.175803,173.832679 189.239803,173.832679 L240.671803,173.832679 C240.735803,173.832679 240.800803,173.819679 240.859803,173.795679 C266.094803,163.516679 282.398803,139.593679 282.398803,112.851679 C282.398803,101.682679 279.493803,90.644679 273.998803,80.932679" class="sapIllus_StrokeDetailColor"/>
16
+ </svg>`;
@@ -0,0 +1,20 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" id="tnt-Scene-Radar">
2
+ <path fill="var(--sapIllus_BackgroundColor)" d="M235.470472,161.02995 C235.573472,152.47295 242.834472,146.41995 252.605472,146.21595 C282.933472,145.58195 307.430472,120.88995 304.397472,91.1139502 C301.758472,65.1989502 278.055472,45.9879502 251.012472,45.9859502 C207.079472,45.9837002 135.201472,45.9837002 91.268472,45.9859502 C64.226472,45.9869502 40.523472,65.1989502 37.883472,91.1129502 C34.850472,120.88995 59.340472,146.21595 89.675472,146.21595 L89.835472,146.21595 C95.990472,146.21595 101.009472,151.06295 100.991472,156.98895 L100.990472,157.10995 L100.991472,157.22995 C101.009472,163.15595 95.990472,168.00495 89.835472,168.00495 L45.402472,168.00395 C31.523472,168.00395 18.796472,176.83395 15.753472,189.87195 C11.469472,208.22395 26.047472,224.65595 44.417472,224.65595 L73.981472,224.65595 L206.231472,224.65595 L224.417472,224.65595 C238.725472,224.65595 251.712472,215.25395 254.344472,201.71195 C256.816472,188.99595 248.756472,179.43395 239.870472,171.69895 C237.332472,169.48995 235.415472,165.52495 235.470472,161.02995" class="sapIllus_BackgroundColor"/>
3
+ <path fill="var(--sapIllus_Layering2)" d="M93.742972,224.66085 L127.492972,224.66085 L127.492972,160.52985 C127.492972,160.16185 127.287972,159.82385 126.960972,159.65385 L95.195972,143.15485 C94.533972,142.80985 93.742972,143.29185 93.742972,144.03785 L93.742972,224.66085 Z" class="sapIllus_Layering2"/>
4
+ <path fill="var(--sapIllus_Layering1)" d="M130.494872 36.0456502C130.131872 36.0516502 129.831872 35.7616502 129.825872 35.3986502L129.825872 31.3506502C129.838872 30.9806502 130.147872 30.6916502 130.516872 30.7036502 130.868872 30.7166502 131.150872 30.9986502 131.163872 31.3506502L131.163872 35.3976502C131.157872 35.7616502 130.858872 36.0516502 130.494872 36.0456502M130.494872 21.3522502C130.131872 21.3582502 129.831872 21.0682502 129.825872 20.7052502L129.825872 16.6502502C129.836872 16.2812502 130.143872 15.9902502 130.513872 16.0002502 130.867872 16.0102502 131.152872 16.2952502 131.163872 16.6502502L131.163872 20.7052502C131.157872 21.0682502 130.858872 21.3582502 130.494872 21.3522502M125.172572 26.6891502L121.122572 26.6891502C120.753572 26.6891502 120.454572 26.3901502 120.454572 26.0211502 120.454572 25.6521502 120.753572 25.3531502 121.122572 25.3531502L125.172572 25.3531502C125.541572 25.3531502 125.840572 25.6521502 125.840572 26.0211502 125.840572 26.3901502 125.541572 26.6891502 125.172572 26.6891502M139.871872 26.6911502L135.826872 26.6911502C135.458872 26.6791502 135.169872 26.3711502 135.181872 26.0031502 135.191872 25.6511502 135.475872 25.3681502 135.826872 25.3571502L139.871872 25.3571502C140.239872 25.3691502 140.528872 25.6761502 140.517872 26.0451502 140.506872 26.3971502 140.223872 26.6791502 139.871872 26.6911502M28.282972 161.28875C27.863972 161.29575 27.518972 160.96275 27.511972 160.54375L27.511972 155.88175C27.526972 155.45675 27.884972 155.12375 28.308972 155.13875 28.714972 155.15175 29.039972 155.47675 29.053972 155.88175L29.053972 160.54275C29.046972 160.96175 28.701972 161.29575 28.283972 161.28875L28.282972 161.28875zM28.282972 144.36885C27.863972 144.37585 27.518972 144.04185 27.511972 143.62285L27.511972 143.62185 27.511972 138.95285C27.524972 138.52785 27.879972 138.19285 28.303972 138.20485 28.712972 138.21685 29.041972 138.54485 29.053972 138.95285L29.053972 143.62185C29.046972 144.04085 28.701972 144.37485 28.282972 144.36885M22.154072 150.51435L17.490072 150.51435C17.065072 150.51435 16.720072 150.16935 16.720072 149.74435 16.720072 149.32035 17.065072 148.97535 17.490072 148.97535L22.154072 148.97535C22.579072 148.97535 22.924072 149.32035 22.924072 149.74435 22.924072 150.16935 22.579072 150.51435 22.154072 150.51435M39.081772 150.51635L34.423772 150.51635C33.999772 150.50235 33.666772 150.14835 33.680772 149.72335 33.692772 149.31835 34.018772 148.99335 34.423772 148.98035L39.081772 148.98035C39.505772 148.99435 39.838772 149.34835 39.825772 149.77235 39.811772 150.17735 39.486772 150.50335 39.081772 150.51635" class="sapIllus_Layering1"/>
5
+ <polygon fill="var(--sapIllus_Layering2)" points="178.177 201.484 160.081 201.484 169.552 114.796 170.048 116.327" class="sapIllus_Layering2"/>
6
+ <path fill="var(--sapIllus_AccentColor)" d="M295.403072 158.72235C290.089072 156.75335 287.488072 151.91035 285.469072 146.97035 285.375072 146.74235 285.151072 146.59235 284.904072 146.59235 284.665072 146.61535 284.452072 146.75535 284.337072 146.96635 281.711072 153.25435 278.267072 155.97235 273.314072 159.40235 273.041072 159.59035 272.971072 159.96435 273.160072 160.23835 273.238072 160.35135 273.353072 160.43535 273.485072 160.47335 277.652072 161.74335 283.908072 169.56635 283.943072 173.55235 283.948072 173.85435 284.174072 174.10735 284.473072 174.14635 284.502072 174.15035 284.531072 174.15135 284.560072 174.15135 284.830072 174.15035 285.067072 173.97135 285.143072 173.71235 286.159072 170.18435 289.437072 162.82535 294.578072 160.22235 294.850072 160.08335 295.129072 159.95935 295.412072 159.85035 295.722072 159.73335 295.879072 159.38635 295.761072 159.07535 295.700072 158.91035 295.569072 158.78235 295.404072 158.72235L295.403072 158.72235zM51.937272 37.0251502C47.719272 35.4631502 45.656272 31.6201502 44.053272 27.6991502 43.978272 27.5181502 43.801272 27.3991502 43.605272 27.4001439 43.415272 27.4181502 43.247272 27.5291502 43.155272 27.6961502 41.071272 32.6861502 38.338272 34.8421502 34.408272 37.5641502 34.191272 37.7131502 34.136272 38.0111502 34.286272 38.2281502 34.347272 38.3181502 34.438272 38.3841502 34.543272 38.4151502 37.850272 39.4221502 42.815272 45.6301502 42.842272 48.7941502 42.846272 49.0331502 43.025272 49.2341502 43.263272 49.2641502 43.286272 49.2671502 43.309272 49.2691502 43.333272 49.2681502 43.546272 49.2671502 43.734272 49.1261502 43.794272 48.9211502 44.601272 46.1211502 47.203272 40.2801502 51.282272 38.2151502 51.498272 38.1051502 51.718272 38.0071502 51.943272 37.9211502 52.190272 37.8271502 52.314272 37.5511502 52.221272 37.3051502 52.172272 37.1741502 52.068272 37.0721502 51.937272 37.0251502" class="sapIllus_AccentColor"/>
7
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M221.950872,81.5973502 C224.110872,79.4363502 227.613872,79.4363502 229.774872,81.5973502 C231.934872,83.7573502 231.934872,87.2603502 229.774872,89.4203502 C227.613872,91.5813502 224.110872,91.5813502 221.950872,89.4203502 C219.789872,87.2603502 219.789872,83.7573502 221.950872,81.5973502" class="sapIllus_BrandColorSecondary"/>
8
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M166.942172,144.43035 C192.317172,169.80535 233.380172,169.91435 258.902172,144.77535 L166.596172,52.4703502 C141.458172,77.9923502 141.566172,119.05435 166.942172,144.43035" class="sapIllus_ObjectFillColor"/>
9
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M167.295672,144.07685 C142.350672,119.13185 142.080672,78.4638502 166.600672,53.1808502 L258.191672,144.77085 C232.907672,169.29085 192.240672,169.01985 167.295672,144.07685 M259.255672,144.42185 L213.456672,98.6228502 L221.151672,90.9288502 C221.347672,90.7328502 221.347672,90.4158502 221.151672,90.2208502 C220.956672,90.0258502 220.640672,90.0258502 220.444672,90.2208502 L212.749672,97.9158502 L166.949672,52.1168502 C166.856672,52.0228502 166.729672,51.9708502 166.596672,51.9708502 L166.594672,51.9708502 C166.461672,51.9708502 166.333672,52.0238502 166.239672,52.1198502 C140.981672,77.7638502 141.137672,119.33285 166.588672,144.78385 C179.377672,157.57285 196.234672,163.97385 213.098672,163.97385 C229.793672,163.97385 246.494672,157.69785 259.252672,145.13185 C259.348672,145.03785 259.401686,144.90985 259.401686,144.77685 C259.401686,144.64285 259.350672,144.51485 259.255672,144.42185" class="sapIllus_StrokeDetailColor"/>
10
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M171.836672,139.53485 C192.897672,160.59585 225.977672,163.68685 247.159672,142.82285 L168.548672,64.2128502 C147.684672,85.3938502 150.775672,118.47385 171.836672,139.53485" class="sapIllus_BrandColorSecondary"/>
11
+ <path fill="var(--sapIllus_PatternHighlight)" d="M205.42584,173.493177 C207.63584,158.361177 208.54184,146.621177 229.72384,125.757177 L202.13784,98.1711774 C181.27384,119.352177 184.36484,152.432177 205.42584,173.493177" class="sapIllus_PatternHighlight" transform="scale(1 -1) rotate(89 347.07 0)"/>
12
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M175.434272,153.02605 C175.434272,157.05105 175.876272,159.97905 171.331272,160.31405 C166.853272,160.64505 161.859272,157.05105 161.859272,153.02605 C161.859272,149.00105 165.498272,145.73805 169.989272,145.73805 C174.479272,145.73805 175.434272,149.00105 175.434272,153.02605" class="sapIllus_StrokeDetailColor"/>
13
+ <path fill="var(--sapIllus_Layering1)" d="M179.744872,148.47625 C179.744872,154.27325 175.045872,158.97225 169.248872,158.97225 C163.452872,158.97225 158.753872,154.27325 158.753872,148.47625 C158.753872,142.68025 163.452872,137.98125 169.248872,137.98125 C175.045872,137.98125 179.744872,142.68025 179.744872,148.47625" class="sapIllus_Layering1"/>
14
+ <polygon fill="var(--sapIllus_Layering1)" points="82.905 224.65 64.747 224.65 64.747 119.062 64.747 102.126 82.905 102.126" class="sapIllus_Layering1"/>
15
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M64.8883988,118.69205 L82.877472,123.57805 L82.888472,117.06705 C82.888472,117.06705 64.846472,118.69205 64.8883988,118.69205" class="sapIllus_StrokeDetailColor"/>
16
+ <path fill="var(--sapIllus_Layering2)" d="M99.986072,118.81705 L45.666072,118.81705 C45.180072,118.81705 44.764072,118.46805 44.681072,117.99005 L36.531072,71.4900502 C36.424072,70.8780502 36.895072,70.3170502 37.516072,70.3170502 L108.135072,70.3170502 C108.757072,70.3170502 109.227072,70.8780502 109.121072,71.4900502 L100.970072,117.99005 C100.887072,118.46805 100.471072,118.81705 99.986072,118.81705" class="sapIllus_Layering2"/>
17
+ <path fill="var(--sapIllus_Layering1)" d="M46.697972 84.0046502L46.697972 98.5046502C46.697972 99.0576502 47.144972 99.5046502 47.697972 99.5046502L56.947972 99.5046502C57.499972 99.5046502 57.947972 99.0576502 57.947972 98.5046502L57.947972 84.0046502C57.947972 83.4516502 57.499972 83.0046502 56.947972 83.0046502L47.697972 83.0046502C47.144972 83.0046502 46.697972 83.4516502 46.697972 84.0046502M60.347372 84.0046502L60.347372 98.5046502C60.347372 99.0576502 60.795372 99.5046502 61.347372 99.5046502L70.597372 99.5046502C71.150372 99.5046502 71.597372 99.0576502 71.597372 98.5046502L71.597372 84.0046502C71.597372 83.4516502 71.150372 83.0046502 70.597372 83.0046502L61.347372 83.0046502C60.795372 83.0046502 60.347372 83.4516502 60.347372 84.0046502M87.897172 84.0046502L87.897172 98.5046502C87.897172 99.0576502 88.345172 99.5046502 88.897172 99.5046502L98.147172 99.5046502C98.700172 99.5046502 99.147172 99.0576502 99.147172 98.5046502L99.147172 84.0046502C99.147172 83.4516502 98.700172 83.0046502 98.147172 83.0046502L88.897172 83.0046502C88.345172 83.0046502 87.897172 83.4516502 87.897172 84.0046502M43.297572 83.0046502L38.766572 83.0046502C38.145572 83.0046502 37.674572 83.5656502 37.780572 84.1776502L40.322572 98.6776502C40.406572 99.1556502 40.821572 99.5046502 41.307572 99.5046502L43.297572 99.5046502C43.850572 99.5046502 44.297572 99.0576502 44.297572 98.5046502L44.297572 84.0046502C44.297572 83.4516502 43.850572 83.0046502 43.297572 83.0046502M101.547572 84.0046502L101.547572 98.5046502C101.547572 99.0576502 101.994572 99.5046502 102.547572 99.5046502L104.287572 99.5046502C104.773572 99.5046502 105.188572 99.1556502 105.272572 98.6776502L107.814572 84.1776502C107.920572 83.5656502 107.449572 83.0046502 106.828572 83.0046502L102.547572 83.0046502C101.994572 83.0046502 101.547572 83.4516502 101.547572 84.0046502M73.997772 84.0046502L73.997772 98.5046502C73.997772 99.0576502 74.444772 99.5046502 74.997772 99.5046502L84.497772 99.5046502C85.049772 99.5046502 85.497772 99.0576502 85.497772 98.5046502L85.497772 84.0046502C85.497772 83.4516502 85.049772 83.0046502 84.497772 83.0046502L74.997772 83.0046502C74.444772 83.0046502 73.997772 83.4516502 73.997772 84.0046502M120.242972 182.40015L113.865972 182.40015C113.312972 182.40015 112.865972 181.95315 112.865972 181.40015L112.865972 169.43815C112.865972 168.88615 113.312972 168.43815 113.865972 168.43815L120.242972 168.43815C120.794972 168.43815 121.242972 168.88615 121.242972 169.43815L121.242972 181.40015C121.242972 181.95315 120.794972 182.40015 120.242972 182.40015M120.242972 202.02515L113.865972 202.02515C113.312972 202.02515 112.865972 201.57815 112.865972 201.02515L112.865972 189.06315C112.865972 188.51115 113.312972 188.06315 113.865972 188.06315L120.242972 188.06315C120.794972 188.06315 121.242972 188.51115 121.242972 189.06315L121.242972 201.02515C121.242972 201.57815 120.794972 202.02515 120.242972 202.02515" class="sapIllus_Layering1"/>
18
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M137.081772 125.88355C136.683772 125.85055 136.278772 125.87155 135.879772 125.95255 136.303772 125.86555 135.399772 123.83055 135.259772 123.59055 134.776772 122.76355 134.059772 122.06755 133.182772 121.67155 131.560772 120.94055 129.942772 121.43455 128.647772 122.55255 127.410772 123.62155 126.651772 125.27255 125.143772 126.01955 125.080772 126.05055 125.010772 126.08055 124.940772 126.06555 124.888772 126.05455 124.844772 126.01755 124.803772 125.98255 124.002772 125.29755 123.108772 124.84055 122.038772 124.76755 120.176772 124.63955 118.263772 125.74655 117.644772 127.54555 117.518772 127.91255 117.443772 128.30555 117.231772 128.63155 116.431772 129.87055 114.861772 129.28455 113.779772 128.88955 109.348772 127.27255 107.138772 135.89155 113.411772 134.86855 115.084772 134.59655 116.821772 134.14655 118.511772 134.03655 120.080772 133.93655 121.721772 134.01255 123.298772 134.11955 126.736772 134.35355 130.139772 134.93655 133.564772 135.29355 135.950772 135.54155 138.873772 135.07655 140.378772 133.00255 141.332772 131.68855 141.491772 129.83955 140.776772 128.38055 140.081772 126.96355 138.627772 126.01355 137.081772 125.88355M278.204752 68.8769276C277.722424 68.8369356 277.231613 68.862385 276.748074 68.9605472 277.26191 68.8551138 276.166372 66.3889406 275.996709 66.0980897 275.411371 65.095866 274.542454 64.2523985 273.479637 63.7724945 271.513969 62.8866112 269.55315 63.4852792 267.983767 64.8401596 266.484673 66.135658 265.564857 68.1364697 263.737344 69.0417431 263.660995 69.0793113 263.576164 69.1156677 263.491332 69.0974895 263.428315 69.0841588 263.374992 69.0393193 263.325305 68.9969036 262.35459 68.1667667 261.271171 67.6129381 259.97446 67.5244709 257.717942 67.3693505 255.399618 68.7109002 254.649465 70.89107 254.496769 71.3358294 254.405878 71.8120978 254.14896 72.2071702 253.179457 73.7086879 251.276807 72.998527 249.965554 72.5198349 244.59572 70.5602271 241.917468 81.0054096 249.519583 79.7656577 251.547056 79.4360267 253.652089 78.8906812 255.700164 78.7573746 257.601602 78.6361867 259.590295 78.7282895 261.501428 78.8579605 265.667867 79.1415401 269.79189 79.8480654 273.942574 80.2807061 276.834117 80.581252 280.376438 80.0177284 282.200316 77.504292 283.356448 75.9118834 283.549137 73.6711197 282.682644 71.9029887 281.840388 70.1857566 280.078316 69.0344718 278.204752 68.8769276" class="sapIllus_ObjectFillColor"/>
19
+ <path fill="var(--sapIllus_Layering1)" d="M197.325872,224.65205 L139.825872,224.65205 L139.825872,200.97805 C139.825872,200.42505 140.272872,199.97805 140.825872,199.97805 L196.325872,199.97805 C196.878872,199.97805 197.325872,200.42505 197.325872,200.97805 L197.325872,224.65205 Z" class="sapIllus_Layering1"/>
20
+ </svg>`;
@@ -0,0 +1,46 @@
1
+ export default `<svg width="321" height="240" viewBox="0 0 321 240" fill="none" xmlns="http://www.w3.org/2000/svg" id="tnt-Scene-RoadMap">
2
+ <path d="M305.711 20.0059H14.6174C12.72 20.0041 10.8408 20.3763 9.08735 21.1012C7.33387 21.8261 5.74044 22.8895 4.39815 24.2305C3.05586 25.5716 1.99103 27.164 1.26452 28.9168C0.538005 30.6696 0.164062 32.5485 0.164063 34.4459V205.553C0.164063 209.386 1.68681 213.062 4.39734 215.773C7.10786 218.483 10.7841 220.006 14.6174 220.006H305.711C309.544 220.006 313.22 218.483 315.931 215.773C318.641 213.062 320.164 209.386 320.164 205.553V34.4459C320.164 32.5485 319.79 30.6696 319.064 28.9168C318.337 27.164 317.272 25.5716 315.93 24.2305C314.588 22.8895 312.994 21.8261 311.241 21.1012C309.487 20.3763 307.608 20.0041 305.711 20.0059Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M273.889 81.9329C288.647 81.9329 300.61 69.9694 300.61 55.2117C300.61 40.454 288.647 28.4905 273.889 28.4905C259.131 28.4905 247.168 40.454 247.168 55.2117C247.168 69.9694 259.131 81.9329 273.889 81.9329Z" fill="var(--sapContent_Illustrative_Color20)"/>
4
+ <path d="M268.95 61.7753C268.858 62.0425 266.825 60.8693 264.883 61.7753C262.574 62.8483 262.34 65.9505 261.831 65.842C261.247 65.7209 260.424 61.3745 262.737 59.8547C265.234 58.2097 269.079 61.3954 268.95 61.7753Z" fill="var(--sapContent_Illustrative_Color2)"/>
5
+ <path d="M280.582 41.8429C280.49 42.1101 278.456 40.941 276.515 41.8429C274.206 42.92 273.972 46.018 273.463 45.9136C272.878 45.7884 272.056 41.442 274.369 39.9223C276.866 38.2814 280.711 41.4671 280.582 41.8429Z" fill="var(--sapContent_Illustrative_Color2)"/>
6
+ <path d="M288.498 57.2116C288.406 57.4746 286.372 56.3056 284.431 57.2116C282.122 58.2846 281.888 61.3867 281.379 61.2782C280.794 61.1529 279.972 56.8066 282.285 55.291C284.782 53.646 288.615 56.8316 288.498 57.2116Z" fill="var(--sapContent_Illustrative_Color2)"/>
7
+ <path d="M296.271 40.6279C297.865 46.7661 297.223 53.2708 294.461 58.9792C291.699 64.6876 286.996 69.2276 281.194 71.7876C275.393 74.3477 268.869 74.7609 262.791 72.9534C256.712 71.146 251.475 67.2356 248.015 61.9214C248.988 65.67 250.764 69.1624 253.22 72.1566C255.676 75.1508 258.754 77.5752 262.24 79.262C265.727 80.9489 269.538 81.8577 273.41 81.9257C277.282 81.9937 281.123 81.2191 284.666 79.6557C288.209 78.0922 291.37 75.7772 293.93 72.871C296.49 69.9649 298.388 66.537 299.492 62.8248C300.596 59.1126 300.879 55.2049 300.323 51.3721C299.767 47.5394 298.385 43.8734 296.271 40.6279Z" fill="var(--sapContent_Illustrative_Color2)"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M194.297 8.684C194.303 9.5124 193.636 10.1888 192.808 10.1948C190.877 10.2087 188.935 10.2764 186.984 10.397C186.157 10.4481 185.445 9.81926 185.394 8.99241C185.343 8.16556 185.972 7.45384 186.799 7.40273C188.804 7.27883 190.8 7.2092 192.786 7.19486C193.614 7.18888 194.291 7.85559 194.297 8.684ZM197.21 8.74521C197.252 7.91783 197.956 7.28085 198.784 7.32247C200.793 7.42352 202.788 7.58364 204.768 7.80394C205.591 7.89557 206.184 8.6373 206.093 9.46065C206.001 10.284 205.259 10.8772 204.436 10.7855C202.518 10.5721 200.583 10.4168 198.633 10.3187C197.806 10.2771 197.169 9.57259 197.21 8.74521ZM182.496 9.2483C182.59 10.0714 181.998 10.8147 181.175 10.9085C179.255 11.1275 177.328 11.396 175.396 11.7132C174.578 11.8475 173.807 11.2937 173.673 10.4762C173.538 9.65871 174.092 8.88717 174.91 8.7529C176.889 8.42777 178.865 8.15244 180.836 7.92785C181.659 7.83402 182.402 8.42521 182.496 9.2483ZM208.976 9.87344C209.12 9.05761 209.898 8.51291 210.714 8.65682C212.695 9.00625 214.657 9.4193 216.596 9.89715C217.401 10.0953 217.892 10.908 217.694 11.7124C217.496 12.5168 216.683 13.0082 215.879 12.8101C214.005 12.3485 212.109 11.9492 210.193 11.6112C209.377 11.4673 208.833 10.6893 208.976 9.87344ZM170.813 11.0163C170.985 11.8266 170.468 12.6233 169.658 12.7958C167.765 13.1991 165.869 13.6481 163.972 14.1421C163.171 14.3509 162.352 13.8703 162.143 13.0687C161.934 12.267 162.415 11.4478 163.216 11.239C165.155 10.7338 167.095 10.2744 169.033 9.86164C169.844 9.68909 170.64 10.206 170.813 11.0163ZM220.496 12.5062C220.75 11.7177 221.595 11.2843 222.384 11.5383C224.296 12.1542 226.184 12.8375 228.043 13.5894C228.811 13.9 229.182 14.7743 228.871 15.5423C228.56 16.3103 227.686 16.6811 226.918 16.3705C225.127 15.6464 223.309 14.9878 221.464 14.3938C220.676 14.1399 220.242 13.2948 220.496 12.5062ZM159.341 13.8644C159.585 14.6563 159.14 15.4954 158.348 15.7387C156.494 16.3083 154.642 16.9202 152.793 17.5737C152.012 17.8498 151.155 17.4404 150.879 16.6593C150.603 15.8782 151.012 15.0212 151.793 14.7452C153.681 14.078 155.573 13.453 157.467 12.871C158.259 12.6277 159.098 13.0725 159.341 13.8644ZM231.528 16.7336C231.895 15.9911 232.795 15.6868 233.538 16.0541C235.334 16.9428 237.1 17.9008 238.831 18.9293C239.544 19.3524 239.778 20.2727 239.355 20.985C238.932 21.6973 238.012 21.9317 237.299 21.5087C235.634 20.5197 233.936 19.5982 232.207 18.7432C231.465 18.3759 231.161 17.4762 231.528 16.7336ZM148.15 17.6865C148.458 18.4558 148.083 19.3286 147.314 19.6359C145.51 20.3566 143.711 21.1165 141.918 21.9151C141.162 22.2522 140.275 21.9121 139.938 21.1554C139.601 20.3987 139.941 19.5119 140.697 19.1748C142.525 18.3604 144.36 17.5853 146.201 16.8499C146.97 16.5426 147.843 16.9171 148.15 17.6865ZM137.303 22.3904C137.669 23.1337 137.363 24.0328 136.619 24.3985C134.876 25.2559 133.142 26.1498 131.417 27.0795C130.688 27.4726 129.778 27.2001 129.385 26.4708C128.992 25.7416 129.264 24.8318 129.994 24.4387C131.751 23.4915 133.518 22.5806 135.295 21.7066C136.038 21.3409 136.937 21.647 137.303 22.3904ZM241.799 22.5672C242.275 21.8898 243.211 21.7272 243.889 22.2041C245.521 23.3534 247.118 24.5716 248.677 25.8598C249.315 26.3875 249.405 27.333 248.877 27.9716C248.35 28.6101 247.404 28.7 246.765 28.1722C245.267 26.9334 243.731 25.7621 242.162 24.6572C241.484 24.1803 241.322 23.2446 241.799 22.5672ZM126.848 27.8988C127.268 28.6132 127.029 29.5324 126.314 29.9518C124.637 30.9368 122.97 31.9559 121.317 33.0084C120.618 33.4532 119.691 33.2472 119.246 32.5484C118.801 31.8495 119.007 30.9223 119.706 30.4775C121.39 29.4058 123.087 28.368 124.795 27.3647C125.51 26.9453 126.429 27.1844 126.848 27.8988ZM251.047 29.9098C251.622 29.3133 252.572 29.2957 253.168 29.8706C254.599 31.2493 255.991 32.694 257.342 34.2055C257.895 34.8231 257.841 35.7713 257.224 36.3235C256.606 36.8757 255.658 36.8227 255.106 36.2051C253.804 34.7487 252.463 33.3576 251.086 32.0307C250.49 31.4559 250.472 30.5063 251.047 29.9098ZM116.815 34.1568C117.285 34.8395 117.112 35.7734 116.429 36.2427C114.824 37.3463 113.233 38.4819 111.657 39.6488C110.991 40.1418 110.052 40.0018 109.559 39.3361C109.066 38.6703 109.206 37.731 109.872 37.2379C111.475 36.0502 113.095 34.8942 114.729 33.7706C115.412 33.3013 116.346 33.4742 116.815 34.1568ZM259.082 38.5604C259.738 38.0539 260.68 38.1746 261.186 38.8301C261.8 39.6246 262.404 40.435 262.998 41.2611C263.481 41.9339 263.328 42.8712 262.655 43.3546C261.982 43.8379 261.045 43.6844 260.562 43.0116C259.988 42.2136 259.405 41.4313 258.813 40.6646C258.306 40.009 258.427 39.067 259.082 38.5604ZM107.252 41.1078C107.768 41.756 107.661 42.6997 107.013 43.2156C105.489 44.4283 103.983 45.6709 102.494 46.9427C101.864 47.4809 100.917 47.4066 100.379 46.7767C99.841 46.1469 99.9153 45.2001 100.545 44.6619C102.06 43.3675 103.594 42.1028 105.144 40.8685C105.792 40.3525 106.736 40.4597 107.252 41.1078ZM98.1985 48.7065C98.7581 49.3173 98.7167 50.2661 98.1059 50.8258C96.6689 52.1426 95.2512 53.4875 93.854 54.8599C93.2631 55.4405 92.3134 55.432 91.7328 54.8411C91.1523 54.2501 91.1607 53.3004 91.7517 52.7198C93.1737 51.3229 94.6166 49.9541 96.0792 48.614C96.6899 48.0543 97.6388 48.0957 98.1985 48.7065ZM89.689 56.9199C90.2898 57.4903 90.3144 58.4397 89.744 59.0405C88.4027 60.4533 87.083 61.8925 85.7863 63.3576C85.2373 63.9779 84.2893 64.0357 83.6689 63.4867C83.0486 62.9376 82.9908 61.9896 83.5398 61.3693C84.8598 59.8779 86.2031 58.4129 87.5684 56.9749C88.1388 56.3741 89.0882 56.3495 89.689 56.9199ZM81.7787 65.6994C82.418 66.2263 82.5091 67.1717 81.9822 67.811C81.3608 68.5649 80.7454 69.3252 80.1362 70.0916C79.6207 70.7401 78.6771 70.8479 78.0286 70.3324C77.3801 69.817 77.2723 68.8734 77.7877 68.2248C78.408 67.4445 79.0345 66.6705 79.6671 65.9029C80.194 65.2637 81.1394 65.1726 81.7787 65.6994Z" fill="var(--sapContent_Illustrative_Color5)"/>
9
+ <path d="M66.6181 135.545C87.9846 135.545 105.306 117.322 105.306 94.8433C105.306 72.3645 87.9846 54.1418 66.6181 54.1418C45.2516 54.1418 27.9307 72.3645 27.9307 94.8433C27.9307 117.322 45.2516 135.545 66.6181 135.545Z" fill="var(--sapContent_Illustrative_Color3)"/>
10
+ <path d="M60.395 94.7461H57.9626C57.6291 94.7461 57.3092 94.8855 57.0734 95.1336C56.8375 95.3817 56.7051 95.7182 56.7051 96.0691C56.7051 96.42 56.8375 96.7565 57.0734 97.0046C57.3092 97.2527 57.6291 97.3921 57.9626 97.3921H60.395C60.7285 97.3921 61.0484 97.2527 61.2843 97.0046C61.5201 96.7565 61.6526 96.42 61.6526 96.0691C61.6526 95.7182 61.5201 95.3817 61.2843 95.1336C61.0484 94.8855 60.7285 94.7461 60.395 94.7461Z" fill="var(--sapContent_Illustrative_Color15)"/>
11
+ <path d="M90.6377 76.5155C90.6377 76.6891 90.6703 76.861 90.7335 77.0214C90.7967 77.1818 90.8894 77.3275 91.0062 77.4501C91.123 77.5728 91.2616 77.67 91.4142 77.7362C91.5667 77.8024 91.7302 77.8363 91.8952 77.8359H101.773C101.379 76.9369 100.955 76.0557 100.501 75.1925H91.9074C91.7412 75.1904 91.5762 75.2232 91.4221 75.2888C91.2679 75.3544 91.1277 75.4515 91.0096 75.5746C90.8914 75.6977 90.7977 75.8443 90.7339 76.0058C90.6701 76.1673 90.6374 76.3406 90.6377 76.5155Z" fill="var(--sapContent_Illustrative_Color15)"/>
12
+ <path d="M83.5036 77.8406H85.936C86.2696 77.8406 86.5894 77.7012 86.8253 77.4531C87.0611 77.205 87.1936 76.8685 87.1936 76.5176C87.1936 76.1667 87.0611 75.8302 86.8253 75.5821C86.5894 75.334 86.2696 75.1946 85.936 75.1946H83.5036C83.1701 75.1946 82.8502 75.334 82.6144 75.5821C82.3786 75.8302 82.2461 76.1667 82.2461 76.5176C82.2461 76.8685 82.3786 77.205 82.6144 77.4531C82.8502 77.7012 83.1701 77.8406 83.5036 77.8406Z" fill="var(--sapContent_Illustrative_Color15)"/>
13
+ <path d="M91.6186 109.629C91.3361 110.188 90.9249 110.664 90.4227 111.013C89.9205 111.362 89.3432 111.574 88.7435 111.628L86.3111 111.85C86.0161 111.845 85.7284 111.946 85.4959 112.137C85.2634 112.328 85.1004 112.597 85.0341 112.899C84.9953 113.092 84.998 113.292 85.0418 113.483C85.0857 113.675 85.1697 113.854 85.2876 114.007C85.4056 114.16 85.5545 114.283 85.7236 114.368C85.8926 114.452 86.0776 114.496 86.2649 114.496H100.516C101.579 112.463 102.474 110.338 103.192 108.145H93.9683C93.4915 108.173 93.0283 108.322 92.6189 108.581C92.2095 108.84 91.8661 109.199 91.6186 109.629Z" fill="var(--sapContent_Illustrative_Color15)"/>
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M42.2743 119.542C51.0574 117.757 61.6394 114.195 72.6217 109.061C86.107 102.759 97.5149 95.3348 104.849 88.5662C105.008 89.6546 105.126 90.7567 105.204 91.8724C97.099 98.4415 86.051 105.277 73.3636 111.206C66.2448 114.534 59.271 117.268 52.7423 119.367C52.7435 119.367 52.7446 119.368 52.7458 119.369C49.4984 120.428 46.213 121.35 42.8973 122.135C42.1233 122.319 41.3593 122.492 40.6061 122.654C39.9762 122.791 39.3452 122.922 38.7133 123.049C38.3468 122.646 37.9884 122.238 37.6381 121.823L37.5943 121.769C37.2408 121.35 36.8979 120.923 36.5654 120.49C36.5688 120.489 36.5722 120.489 36.5756 120.488C36.5741 120.486 36.5725 120.484 36.571 120.482C36.8109 120.453 37.0528 120.422 37.2966 120.389C38.9631 120.154 40.623 119.871 42.2743 119.542Z" fill="var(--sapContent_Illustrative_Color15)"/>
15
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M52.8951 95.1302C53.1305 95.3778 53.2627 95.7137 53.2627 96.0639C53.2634 96.4128 53.1328 96.7477 52.8994 96.9956C52.6661 97.2435 52.3489 97.3842 52.0173 97.3869H36.3713H28.0022C27.9535 96.5475 27.9268 95.7005 27.9268 94.8458V94.7434H27.9357H35.6415H52.0076C52.3405 94.7434 52.6597 94.8825 52.8951 95.1302Z" fill="var(--sapContent_Illustrative_Color15)"/>
16
+ <rect x="64.7256" y="105.191" width="38.015" height="4.47226" rx="2.23613" fill="var(--sapContent_Illustrative_Color15)"/>
17
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M34.759 79.8732C34.7592 79.8715 34.7594 79.8698 34.7596 79.8682H30.6245L30.5442 80.0882C30.4372 80.3774 30.3326 80.6666 30.2329 80.9583C30.2247 80.9821 30.2164 81.0057 30.2083 81.0293C30.1776 81.1174 30.1473 81.2047 30.1185 81.2935C30.0495 81.4989 29.9834 81.7087 29.9178 81.917C29.8632 82.0903 29.8089 82.2624 29.7537 82.4298C29.7381 82.4772 29.7246 82.5257 29.7111 82.5739C29.7035 82.6011 29.6959 82.6282 29.688 82.655C29.5883 82.9876 29.4934 83.3203 29.401 83.6581L29.3207 83.9549C29.2161 84.3593 29.114 84.7662 29.0191 85.1756L29.0045 85.237C28.9121 85.6337 28.8294 86.0329 28.7491 86.4321L28.698 86.688C28.535 87.5402 28.394 88.4025 28.2821 89.2726L28.2529 89.4876C28.1994 89.9226 28.1507 90.3602 28.1094 90.8003L28.1206 90.8003C28.1206 90.8012 28.1205 90.802 28.1204 90.8028H59.192L93.9219 90.9H105.111C104.947 89.0962 104.668 87.306 104.277 85.5414H82.9079C82.4873 85.5414 82.0839 85.7172 81.7865 86.0301C81.4891 86.343 81.322 86.7674 81.322 87.2099C81.322 87.4294 81.2809 87.6467 81.2011 87.8494C81.1213 88.0522 81.0043 88.2364 80.8568 88.3915C80.7093 88.5467 80.5342 88.6698 80.3415 88.7538C80.1488 88.8377 79.9422 88.881 79.7336 88.881H66.6108C65.1533 88.8803 63.7557 88.2707 62.7253 87.1861C61.6949 86.1016 61.116 84.631 61.116 83.0976V81.5417C61.116 81.3224 61.0749 81.1052 60.9951 80.9026C60.9152 80.7 60.7982 80.5159 60.6507 80.361C60.5031 80.206 60.328 80.0831 60.1353 79.9994C59.9426 79.9157 59.7361 79.8728 59.5276 79.8732H34.759Z" fill="var(--sapContent_Illustrative_Color15)"/>
18
+ <path d="M93.7272 84.791C93.7272 104.725 78.3674 120.884 59.4202 120.884C45.5667 120.884 33.6311 112.245 28.2148 99.8086C30.5428 119.945 46.8485 135.545 66.6173 135.545C87.9838 135.545 105.305 117.322 105.305 94.8432C105.305 77.9999 95.5798 63.5462 81.715 57.3577C89.0674 63.9774 93.7272 73.8117 93.7272 84.791Z" fill="var(--sapContent_Illustrative_Color15)"/>
19
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M119.068 70.2792C116.921 65.1919 107.512 64.1375 94.5012 66.6403C95.2552 67.4643 95.9744 68.3173 96.6587 69.1993C105.474 68.1168 111.65 69.3042 113.228 73.0378C114.807 76.7715 111.509 82.3911 104.841 88.5482C104.842 88.5549 104.843 88.5616 104.844 88.5684C97.5106 95.3365 86.1035 102.759 72.6196 109.062C61.6374 114.196 51.0553 117.757 42.2722 119.542C40.6209 119.871 38.9611 120.154 37.2945 120.39C37.051 120.422 36.8095 120.453 36.5698 120.482C36.5698 120.482 36.5698 120.482 36.5698 120.482C27.7547 121.562 21.5789 120.375 19.9978 116.636C18.4192 112.897 21.7199 107.28 28.3872 101.126C28.2169 99.9743 28.0945 98.8082 28.0199 97.6277C17.3732 106.19 11.6887 114.33 13.856 119.459C16.0226 124.586 25.5504 125.6 38.7063 123.044C38.7079 123.045 38.7096 123.047 38.7112 123.049C39.3431 122.922 39.9741 122.791 40.604 122.654C41.3572 122.492 42.1212 122.319 42.8953 122.135C46.2109 121.35 49.4964 120.428 52.7437 119.369L52.7402 119.367C59.2689 117.268 66.2428 114.534 73.3615 111.206C86.0489 105.277 97.0969 98.4416 105.202 91.8726C105.201 91.8655 105.201 91.8585 105.2 91.8514C115.66 83.3949 121.216 75.3532 119.068 70.2792Z" fill="var(--sapContent_Illustrative_Color6)"/>
20
+ <path d="M290.774 107.501C291.677 106.599 291.677 105.136 290.774 104.234C289.872 103.332 288.41 103.332 287.508 104.234C286.605 105.136 286.605 106.599 287.508 107.501C288.41 108.403 289.872 108.403 290.774 107.501Z" fill="var(--sapContent_Illustrative_Color18)"/>
21
+ <path d="M275.421 124.906C276.323 124.004 276.323 122.542 275.421 121.639C274.519 120.737 273.056 120.737 272.154 121.639C271.252 122.542 271.252 124.004 272.154 124.906C273.056 125.809 274.519 125.809 275.421 124.906Z" fill="var(--sapContent_Illustrative_Color18)"/>
22
+ <path d="M172.839 61.4196C173.741 60.5175 173.741 59.0548 172.839 58.1526C171.937 57.2505 170.474 57.2505 169.572 58.1526C168.67 59.0548 168.67 60.5175 169.572 61.4196C170.474 62.3218 171.937 62.3218 172.839 61.4196Z" fill="var(--sapContent_Illustrative_Color18)"/>
23
+ <path d="M26.7657 44.6611C27.6679 43.7589 27.6679 42.2962 26.7657 41.3941C25.8636 40.4919 24.4009 40.4919 23.4987 41.3941C22.5966 42.2962 22.5966 43.7589 23.4987 44.6611C24.4009 45.5632 25.8636 45.5632 26.7657 44.6611Z" fill="var(--sapContent_Illustrative_Color18)"/>
24
+ <path d="M105.334 192.128C106.236 191.226 106.236 189.763 105.334 188.861C104.432 187.959 102.969 187.959 102.067 188.861C101.165 189.763 101.165 191.226 102.067 192.128C102.969 193.03 104.432 193.03 105.334 192.128Z" fill="var(--sapContent_Illustrative_Color18)"/>
25
+ <path d="M283.793 196.168C284.942 195.019 284.942 193.156 283.793 192.007C282.644 190.857 280.781 190.857 279.632 192.007C278.482 193.156 278.482 195.019 279.632 196.168C280.781 197.317 282.644 197.317 283.793 196.168Z" fill="var(--sapContent_Illustrative_Color19)"/>
26
+ <path d="M138.038 41.394C138.94 40.4918 138.94 39.0292 138.038 38.127C137.136 37.2249 135.673 37.2249 134.771 38.127C133.869 39.0292 133.869 40.4918 134.771 41.394C135.673 42.2961 137.136 42.2961 138.038 41.394Z" fill="var(--sapContent_Illustrative_Color20)"/>
27
+ <circle cx="186.762" cy="164.843" r="66.2081" fill="var(--sapContent_Illustrative_Color20)"/>
28
+ <path d="M249.875 177.755C249.652 177.342 248.613 175.511 246.94 175.363C245.621 175.246 244.522 176.097 243.06 177.944C239.157 182.864 239.006 184.098 240.083 187.315C240.246 187.842 240.583 188.299 241.039 188.61C241.502 188.905 242.043 189.054 242.591 189.037C244.586 189.09 246.679 187.667 247.174 187.319C247.509 187.088 247.822 186.826 248.107 186.536C250.88 183.701 250.12 179.034 249.875 177.755Z" fill="var(--sapContent_Illustrative_Color14)"/>
29
+ <path d="M182.052 156.079C180.508 156.109 178.968 156.235 177.44 156.458C176.723 156.575 176 156.65 175.275 156.681C174.346 156.589 173.434 156.368 172.566 156.022C171.455 155.583 170.283 155.319 169.091 155.239C167.852 155.239 166.269 155.746 165.759 158.324C165.611 158.83 165.583 159.364 165.676 159.883C165.769 160.402 165.981 160.893 166.295 161.317C166.998 162.169 168.241 162.581 169.979 162.581C170.961 162.56 171.941 162.479 172.914 162.339C173.37 162.271 173.827 162.226 174.285 162.203C174.852 162.203 175.128 162.441 175.721 163.017C176.566 163.937 177.632 164.624 178.819 165.011L179.196 165.14C181.163 165.89 183.229 166.342 185.328 166.484H185.354C185.98 166.532 186.61 166.443 187.198 166.222C187.786 166.006 188.319 165.66 188.758 165.212C189.176 164.65 189.467 164.005 189.612 163.32C189.752 162.631 189.74 161.92 189.574 161.238C189.075 157.794 186.552 156.079 182.052 156.079Z" fill="var(--sapContent_Illustrative_Color14)"/>
30
+ <path d="M220.673 184.238C218.278 184.249 215.9 184.649 213.632 185.422C212.852 185.714 212.036 185.895 211.206 185.96C210.663 185.956 210.135 185.783 209.695 185.464C208.822 184.738 208.168 183.782 207.806 182.705C206.99 180.888 205.978 178.621 202.517 178.621H201.762C200.31 178.625 198.872 178.341 197.531 177.785C196.193 177.228 194.979 176.41 193.961 175.378C193.463 174.849 192.861 174.43 192.193 174.148C191.523 173.867 190.803 173.729 190.077 173.743C188.947 173.789 187.828 173.984 186.749 174.322C185.949 174.572 185.122 174.726 184.286 174.78C183.098 174.723 181.943 174.374 180.924 173.762C179.906 173.152 179.052 172.302 178.438 171.286C178.192 170.783 177.527 169.47 176.284 169.47C175.298 169.47 174.396 170.246 173.104 172.149C172.907 172.479 172.726 172.762 172.56 173.016C172.298 173.473 171.991 173.902 171.642 174.295C170.9 173.677 170.254 172.951 169.726 172.142C169.299 171.57 168.891 171.025 168.514 170.495C166.179 167.392 164.532 165.098 162.715 164.232C162.134 163.951 161.534 163.712 160.92 163.516C159.715 163.138 158.831 162.816 158.317 161.787C158.148 161.344 158.057 160.875 158.049 160.401C157.887 158.358 157.358 156.526 152.76 156.526C151.219 156.526 150.203 156.204 149.912 155.659C149.534 154.902 150.067 153.388 151.566 151.151C152.726 149.308 154.037 148.445 155.344 148.445C156.428 148.445 157.611 149.074 158.873 150.338C160.788 152.249 162.688 153.218 164.517 153.218C165.313 153.199 166.097 153.018 166.821 152.684C167.539 152.352 168.182 151.877 168.71 151.288C170.746 149.289 171.77 147.23 172.767 143.234C173.806 139.07 175.654 134.218 180.701 133.352C181.834 133.162 182.967 133.015 184.021 132.867C188.475 132.254 192.004 131.758 193.738 129.162C196.216 125.449 197.429 119.428 192.672 114.678C190.142 112 186.668 110.419 182.99 110.272C181.274 110.302 179.586 110.719 178.052 111.491C176.521 112.261 175.183 113.369 174.139 114.731C171.592 117.785 169.605 119.817 168.124 119.817C167.219 119.696 166.396 119.223 165.835 118.5C165.416 117.998 165.114 117.408 164.951 116.774C164.79 116.139 164.773 115.475 164.902 114.833C165.013 114.074 165.307 113.354 165.76 112.736C166.213 112.115 166.811 111.615 167.501 111.279C168.792 110.776 170.176 110.56 171.558 110.647C174.252 110.586 177.312 110.526 179.356 107.123C180.406 105.378 180.655 103.812 180.111 102.46C179.79 101.805 179.333 101.226 178.77 100.761C178.209 100.293 177.472 99.6634 176.769 99.468H176.425C165.555 100.983 155.33 105.521 146.546 112.112C137.771 118.685 130.812 127.388 126.323 137.401C126.195 137.663 123.082 143.96 124.106 148.044C124.69 150.121 125.924 151.954 127.627 153.275C129.331 154.599 131.413 155.343 133.569 155.398C137.184 155.398 139.636 156.265 141.37 160.591C143.297 165.401 147.962 168.436 151.43 169.587C151.906 169.742 152.382 169.875 152.851 170.003C155.144 170.643 157.12 171.188 158.563 174.806C159.008 176.173 159.896 177.35 161.086 178.152C162.285 178.947 163.714 179.321 165.148 179.215H167.278C168.121 179.257 169.273 179.329 169.602 179.923C169.79 180.279 170.025 181.437 168.204 184.605C164.184 191.63 165.182 194.79 167.21 198.802C168.374 201.164 170.077 203.218 172.182 204.797C174.299 206.376 176.758 207.431 179.36 207.878C179.915 207.923 180.451 208.105 180.92 208.407C181.393 208.707 181.782 209.121 182.053 209.611C183.118 211.711 182.053 215.39 180.659 218.138C179.999 219.429 179.214 220.652 178.317 221.79C177.425 222.994 176.723 223.921 176.723 225.253C176.812 226.863 177.157 228.449 177.743 229.95L177.935 230.423L178.445 230.488C180.886 230.77 183.473 231.057 185.929 231.051C187.063 231.051 188.155 231.025 189.246 231.017L192.306 230.858L189.469 229.235C189.409 229.205 188.067 228.436 188.067 225.295C188.067 224.319 190.043 223.274 195.581 223.274H197.799C198.782 223.2 199.697 222.743 200.349 222.002L200.799 221.446C202.808 218.929 207.648 213.029 209.744 211.636C210.673 211.042 211.694 210.61 212.767 210.357C214.579 209.956 216.235 209.035 217.534 207.707C218.176 207.09 218.69 206.352 219.045 205.535C219.401 204.715 219.588 203.832 219.597 202.938C219.599 201.874 219.9 200.831 220.466 199.93C221.217 198.934 222.175 198.113 223.273 197.522C224.712 196.659 226.446 195.558 227.311 193.196C228.509 190.006 228.648 187.996 227.579 186.475C226.51 184.953 224.364 184.238 220.673 184.238Z" fill="var(--sapContent_Illustrative_Color14)"/>
31
+ <path d="M189.326 106.873C190.587 107.262 191.903 107.438 193.221 107.395C194.052 107.395 194.566 107.395 194.778 107.615C195.076 108.028 195.295 108.492 195.424 108.985C195.862 110.2 196.402 111.699 197.906 112.422C199.132 112.923 200.45 113.162 201.774 113.122C202.968 113.122 205.93 112.951 207.607 111.335C211.034 108.035 206.132 101.8 205.916 101.55L205.758 101.365L205.512 101.289C199.312 99.3466 192.566 98.5886 186.07 98.6375H184.68L184.846 99.6139C184.959 100.246 186.025 105.813 189.326 106.873Z" fill="var(--sapContent_Illustrative_Color14)"/>
32
+ <path d="M244.609 150.546C246.593 146.762 246.343 142.651 243.914 138.692C239.339 131.267 228.395 126.282 221.036 126.282C216.446 126.282 213.344 128.125 212.294 131.445C211.391 134.139 211.168 137.015 211.644 139.817C212.12 142.622 213.28 145.266 215.022 147.515C219.177 153.101 226.483 156.856 233.219 156.856C238.459 156.856 242.494 154.615 244.609 150.546Z" fill="var(--sapContent_Illustrative_Color14)"/>
33
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M228.873 113.751C228.873 113.751 228.873 113.751 228.873 113.751C233.07 122.446 235.423 132.198 235.423 142.5C235.423 179.066 205.781 208.708 169.215 208.708C153.219 208.708 138.548 203.036 127.104 193.592C127.563 194.542 128.043 195.479 128.545 196.402C123.448 187.021 120.554 176.27 120.554 164.843C120.554 128.278 150.196 98.6353 186.762 98.6353C202.758 98.6353 217.429 104.308 228.873 113.751Z" fill="var(--sapContent_Illustrative_Color18)"/>
34
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M234.264 130.097C229.835 127.68 224.933 126.282 221.037 126.282C216.447 126.282 213.345 128.125 212.295 131.445C211.392 134.139 211.169 137.015 211.645 139.817C212.121 142.622 213.281 145.266 215.023 147.515C219.178 153.101 226.484 156.856 233.22 156.856C233.437 156.856 233.653 156.852 233.866 156.844C234.886 152.225 235.424 147.425 235.424 142.5C235.424 138.261 235.025 134.115 234.264 130.097Z" fill="var(--sapContent_Illustrative_Color17)"/>
35
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M220.612 184.238C218.237 184.256 215.88 184.656 213.631 185.423C212.851 185.714 212.035 185.895 211.205 185.96C210.662 185.956 210.134 185.783 209.694 185.464C208.821 184.738 208.167 183.783 207.805 182.705L207.801 182.696C206.986 180.881 205.971 178.622 202.516 178.622H201.761C200.309 178.625 198.871 178.341 197.53 177.785C196.192 177.228 194.978 176.41 193.96 175.378C193.462 174.85 192.86 174.431 192.192 174.148C191.522 173.867 190.802 173.729 190.076 173.743C188.946 173.79 187.827 173.984 186.748 174.322C185.948 174.572 185.121 174.726 184.285 174.78C183.097 174.724 181.942 174.374 180.923 173.762C179.905 173.152 179.052 172.302 178.437 171.287C178.191 170.783 177.526 169.47 176.284 169.47C175.297 169.47 174.395 170.246 173.103 172.15C172.906 172.479 172.725 172.763 172.559 173.016C172.297 173.473 171.99 173.902 171.641 174.296C170.899 173.677 170.253 172.951 169.725 172.142L169.666 172.063C169.261 171.52 168.873 171.001 168.513 170.496C168.372 170.309 168.234 170.125 168.098 169.944C165.979 167.121 164.421 165.046 162.714 164.232C162.133 163.951 161.533 163.712 160.919 163.517C159.714 163.138 158.83 162.816 158.316 161.787C158.147 161.344 158.056 160.876 158.048 160.402C157.886 158.358 157.357 156.526 152.759 156.526C151.218 156.526 150.202 156.204 149.911 155.659C149.533 154.902 150.066 153.388 151.565 151.152C152.725 149.308 154.036 148.446 155.343 148.446C156.427 148.446 157.61 149.074 158.872 150.338C160.787 152.249 162.687 153.218 164.516 153.218C165.312 153.2 166.096 153.018 166.82 152.685C167.538 152.352 168.181 151.877 168.709 151.288C170.745 149.29 171.769 147.231 172.766 143.234C173.805 139.071 175.653 134.219 180.7 133.352C181.597 133.202 182.495 133.078 183.353 132.96C183.579 132.929 183.801 132.898 184.02 132.867C188.474 132.254 192.003 131.759 193.737 129.162C196.215 125.449 197.428 119.428 192.672 114.678C190.141 112 186.667 110.419 182.989 110.272C181.273 110.303 179.585 110.719 178.052 111.491C176.52 112.262 175.182 113.369 174.138 114.731C171.591 117.785 169.604 119.818 168.123 119.818C167.218 119.696 166.395 119.223 165.834 118.5C165.415 117.998 165.113 117.408 164.95 116.775C164.789 116.139 164.772 115.476 164.901 114.833C165.012 114.074 165.306 113.355 165.759 112.736C166.212 112.116 166.81 111.615 167.5 111.279C168.791 110.776 170.175 110.56 171.557 110.647L171.577 110.647C174.266 110.586 177.316 110.518 179.355 107.123C180.405 105.379 180.654 103.812 180.11 102.461C179.789 101.805 179.332 101.226 178.769 100.761C178.75 100.745 178.73 100.729 178.711 100.712C178.157 100.25 177.447 99.6569 176.768 99.4683H176.424C165.554 100.984 155.329 105.521 146.545 112.112C137.77 118.685 130.811 127.389 126.322 137.402L126.32 137.406C126.166 137.72 123.086 143.979 124.105 148.044C124.689 150.121 125.923 151.954 127.626 153.275C129.33 154.599 131.412 155.343 133.568 155.398C137.183 155.398 139.635 156.265 141.369 160.591C143.296 165.401 147.961 168.437 151.429 169.587C151.905 169.742 152.381 169.875 152.85 170.004L152.863 170.007C155.15 170.645 157.122 171.195 158.562 174.806C159.007 176.173 159.895 177.351 161.085 178.152C162.284 178.947 163.713 179.321 165.147 179.216H167.277C168.12 179.257 169.272 179.329 169.601 179.923C169.789 180.279 170.024 181.437 168.203 184.605C164.183 191.63 165.181 194.79 167.209 198.802C168.373 201.164 170.076 203.218 172.181 204.797C174.298 206.376 176.757 207.432 179.359 207.878C179.431 207.884 179.503 207.892 179.574 207.902C196.065 205.311 210.535 196.632 220.612 184.238ZM183.385 230.967C184.241 231.021 185.092 231.053 185.928 231.052C186.069 231.052 186.209 231.051 186.349 231.051C185.355 231.045 184.368 231.017 183.385 230.967ZM188.768 231.022C188.927 231.02 189.086 231.019 189.245 231.018L192.305 230.859L192.251 230.828C191.098 230.922 189.937 230.987 188.768 231.022Z" fill="var(--sapContent_Illustrative_Color17)"/>
36
+ <path d="M182.052 156.079C180.508 156.109 178.968 156.235 177.44 156.458C176.723 156.576 176 156.65 175.275 156.681C174.346 156.589 173.434 156.368 172.566 156.023C171.455 155.583 170.283 155.319 169.091 155.239C167.852 155.239 166.269 155.746 165.759 158.324C165.611 158.83 165.583 159.364 165.676 159.883C165.769 160.403 165.981 160.894 166.295 161.318C166.998 162.169 168.241 162.582 169.979 162.582C170.961 162.56 171.941 162.479 172.914 162.339C173.37 162.271 173.827 162.226 174.285 162.203C174.852 162.203 175.128 162.442 175.721 163.017C176.566 163.937 177.632 164.624 178.819 165.012L179.196 165.14C181.163 165.89 183.229 166.343 185.328 166.484H185.354C185.98 166.532 186.61 166.443 187.198 166.223C187.786 166.006 188.319 165.661 188.758 165.212C189.176 164.65 189.467 164.005 189.612 163.32C189.752 162.632 189.74 161.921 189.574 161.238C189.075 157.794 186.552 156.079 182.052 156.079Z" fill="var(--sapContent_Illustrative_Color17)"/>
37
+ <path d="M189.326 106.873C190.587 107.262 191.903 107.438 193.221 107.395C194.052 107.395 194.566 107.395 194.778 107.615C195.076 108.028 195.295 108.492 195.424 108.985C195.862 110.2 196.402 111.699 197.906 112.422C199.132 112.923 200.45 113.162 201.774 113.122C202.968 113.122 205.93 112.951 207.607 111.335C211.034 108.035 206.132 101.8 205.916 101.55L205.758 101.365L205.512 101.289C199.312 99.3466 192.566 98.5886 186.07 98.6375H184.68L184.846 99.6139C184.959 100.246 186.025 105.813 189.326 106.873Z" fill="var(--sapContent_Illustrative_Color17)"/>
38
+ <path d="M38.2848 174.831L38.1945 174.887C36.6578 175.952 35.6309 177.545 35.3378 179.319C35.0446 181.093 35.5091 182.905 36.6298 184.358C37.7475 185.808 39.4279 186.784 41.3063 187.076C43.1847 187.367 45.1095 186.95 46.6629 185.915C46.7082 185.887 46.75 185.854 46.7876 185.818L80.5407 153.565C80.6704 153.423 80.7441 153.244 80.7494 153.058C80.7547 152.871 80.6913 152.689 80.5698 152.541C80.4484 152.393 80.2764 152.29 80.083 152.248C79.8897 152.206 79.6869 152.228 79.5091 152.311L38.2848 174.831Z" fill="var(--sapContent_Illustrative_Color19)"/>
39
+ <path d="M42.9879 184.528C45.6327 184.528 47.7767 182.511 47.7767 180.023C47.7767 177.535 45.6327 175.518 42.9879 175.518C40.3432 175.518 38.1992 177.535 38.1992 180.023C38.1992 182.511 40.3432 184.528 42.9879 184.528Z" fill="var(--sapContent_Illustrative_Color7)"/>
40
+ <path d="M65.8565 179.582L65.8049 179.635C64.9691 180.569 64.56 181.776 64.6672 182.993C64.7743 184.209 65.3888 185.337 66.3766 186.129C67.3604 186.913 68.6322 187.303 69.9184 187.215C71.2046 187.126 72.4026 186.567 73.2545 185.656L73.319 185.571L90.1655 159.185C90.2398 159.073 90.2676 158.938 90.2436 158.808C90.2196 158.677 90.1454 158.559 90.0352 158.476C89.9251 158.394 89.7865 158.352 89.6457 158.359C89.5049 158.366 89.3717 158.421 89.2714 158.514L65.8565 179.582Z" fill="var(--sapContent_Illustrative_Color19)"/>
41
+ <path d="M69.8414 185.377C71.641 185.377 73.0998 184.005 73.0998 182.312C73.0998 180.619 71.641 179.247 69.8414 179.247C68.0418 179.247 66.583 180.619 66.583 182.312C66.583 184.005 68.0418 185.377 69.8414 185.377Z" fill="var(--sapContent_Illustrative_Color7)"/>
42
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M112.079 59.2857C112.222 60.659 111.224 61.888 109.851 62.0307C107.172 62.3092 104.537 62.8998 101.994 63.7804C100.689 64.2322 99.2654 63.5408 98.8136 62.2361C98.3618 60.9314 99.0532 59.5074 100.358 59.0556C103.257 58.0518 106.267 57.3763 109.334 57.0575C110.707 56.9148 111.936 57.9124 112.079 59.2857ZM115.736 59.3351C115.918 57.9663 117.174 57.0037 118.543 57.185C121.534 57.5812 124.523 58.3291 127.46 59.4504C128.75 59.9429 129.396 61.3878 128.904 62.6777C128.411 63.9676 126.966 64.614 125.676 64.1216C123.104 63.1396 120.494 62.4871 117.887 62.1417C116.518 61.9604 115.555 60.7038 115.736 59.3351ZM95.5151 63.8133C96.244 64.9859 95.8843 66.5274 94.7117 67.2563C92.4403 68.6682 90.3054 70.3383 88.3529 72.2448C87.365 73.2093 85.7822 73.1904 84.8176 72.2026C83.853 71.2147 83.8719 69.6319 84.8598 68.6673C87.0714 66.5078 89.4925 64.6133 92.0721 63.0099C93.2447 62.281 94.7862 62.6407 95.5151 63.8133ZM132.144 64.3574C132.905 63.2053 134.456 62.8882 135.608 63.6491C138.056 65.2656 140.422 67.1801 142.678 69.4037C143.661 70.3731 143.672 71.956 142.703 72.9392C141.733 73.9224 140.151 73.9336 139.167 72.9642C137.136 70.9617 135.021 69.2536 132.853 67.8213C131.701 67.0603 131.383 65.5095 132.144 64.3574ZM82.491 75.022C83.6427 75.7836 83.9589 77.3346 83.1974 78.4863C82.4575 79.6051 81.7692 80.773 81.1374 81.9877C80.5003 83.2126 78.9908 83.6892 77.7659 83.0521C76.541 82.415 76.0644 80.9055 76.7015 79.6806C77.4139 78.3108 78.1908 76.9925 79.0267 75.7284C79.7883 74.5767 81.3393 74.2604 82.491 75.022ZM145.062 75.7172C146.18 74.9071 147.743 75.1567 148.553 76.2748C150.233 78.5932 151.816 81.1295 153.287 83.89C153.937 85.1086 153.475 86.6227 152.257 87.272C151.038 87.9213 149.524 87.4599 148.875 86.2413C147.506 83.6734 146.043 81.3327 144.504 79.2085C143.694 78.0904 143.944 76.5273 145.062 75.7172ZM153.777 90.6009C155.061 90.0943 156.513 90.7248 157.02 92.0092C158.059 94.6437 159.011 97.4371 159.866 100.393C160.25 101.72 159.486 103.106 158.16 103.49C156.834 103.874 155.447 103.11 155.064 101.783C154.249 98.9704 153.348 96.3258 152.369 93.8439C151.862 92.5595 152.492 91.1076 153.777 90.6009ZM159.033 107.068C160.386 106.79 161.707 107.662 161.985 109.014C162.552 111.774 163.044 114.654 163.455 117.656C163.642 119.024 162.685 120.285 161.317 120.473C159.949 120.66 158.689 119.703 158.501 118.335C158.104 115.437 157.631 112.667 157.087 110.02C156.81 108.667 157.681 107.346 159.033 107.068ZM161.701 124.081C163.077 123.972 164.282 124.999 164.391 126.375C164.506 127.827 164.604 129.305 164.684 130.808C164.757 132.187 163.699 133.364 162.32 133.437C160.941 133.511 159.764 132.452 159.691 131.074C159.613 129.613 159.518 128.179 159.406 126.771C159.297 125.394 160.325 124.19 161.701 124.081Z" fill="var(--sapContent_Illustrative_Color5)"/>
43
+ <path d="M178.423 45.894C165.526 45.894 158.737 56.7992 158.737 68.7896C158.737 81.6108 171.472 98.6739 176.866 105.326C178.18 106.947 180.501 107.175 182.079 105.809C188.613 100.155 204.137 85.0132 204.137 68.7897C204.137 54.4204 191.319 45.894 178.423 45.894ZM182.064 76.5354C177.466 76.5354 173.733 73.0653 173.733 68.7896C173.733 64.514 177.466 61.0438 182.064 61.0438C186.663 61.0438 190.395 64.514 190.395 68.7896C190.395 73.0653 186.663 76.5354 182.064 76.5354Z" fill="var(--sapContent_Illustrative_Color16)"/>
44
+ <path d="M176.862 45.9138C164.872 45.9138 155.174 55.6115 155.174 67.602C155.174 80.163 168.107 97.343 173.999 104.518C175.503 106.349 178.221 106.349 179.725 104.518C185.617 97.343 198.55 80.163 198.55 67.602C198.55 55.6115 188.852 45.9138 176.862 45.9138ZM176.862 75.3477C172.586 75.3477 169.116 71.8776 169.116 67.602C169.116 63.3263 172.586 59.8562 176.862 59.8562C181.138 59.8562 184.608 63.3263 184.608 67.602C184.608 71.8776 181.138 75.3477 176.862 75.3477Z" fill="var(--sapContent_Illustrative_Color1)"/>
45
+ </svg>
46
+ `;
@@ -0,0 +1,15 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" id="tnt-Scene-Secrets">
2
+ <path fill="var(--sapIllus_BackgroundColor)" d="M118.167955,220.5072 C83.9699551,210.9762 43.1749551,187.9462 41.0879551,147.3502 C39.6089551,118.5902 53.1219551,93.0522 70.2459551,70.8502 C88.5009551,47.1812 112.868955,29.1772 143.714955,24.7982 C176.575955,20.1332 211.087955,26.0372 236.884955,47.1922 C265.031955,70.2742 285.469955,103.6462 281.874955,138.0962 C278.321955,172.1522 250.580955,203.1072 218.954955,218.4842 C190.621955,232.2592 149.459955,229.2282 118.167955,220.5072" class="sapIllus_BackgroundColor"/>
3
+ <path fill="var(--sapIllus_AccentColor)" d="M79.0935551,71.0417 C77.0615551,71.4837 75.0545551,70.1997 74.6135551,68.1677 C74.1675551,66.1367 75.4505551,64.1307 77.4815551,63.6847 C79.5135551,63.2427 81.5205551,64.5267 81.9665551,66.5567 C82.4125551,68.5877 81.1245551,70.5957 79.0935551,71.0417 L79.0935551,71.0417 Z M85.3775551,63.9697 C83.8175551,60.7457 80.1975551,58.8837 76.5445551,59.6867 C72.2695551,60.6207 69.5595551,64.8517 70.4945551,69.1317 C71.4345551,73.4107 75.6595551,76.1167 79.9395551,75.1817 C83.6425551,74.3687 86.1745551,71.0877 86.1715551,67.4487 L97.2915551,65.0137 L98.1405551,68.8927 C98.1735551,69.0557 98.3365551,69.1587 98.4995551,69.1207 L100.739555,68.6347 C100.906555,68.5957 101.009555,68.4327 100.970555,68.2657 L100.749555,67.2747 C100.711555,67.1127 100.815555,66.9487 100.981555,66.9107 L103.196555,66.4257 C103.362555,66.3867 103.521555,66.4917 103.560555,66.6577 L103.778555,67.6547 C103.812555,67.8217 103.976555,67.9247 104.138555,67.8877 L106.324555,67.4107 C106.486555,67.3727 106.590555,67.2137 106.556555,67.0467 L105.708555,63.1717 L106.267555,63.0487 L105.506555,59.5617 L85.3775551,63.9697 Z" class="sapIllus_AccentColor"/>
4
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M43.6578551,147.2876 C42.9428551,148.7686 41.1638551,149.3886 39.6828551,148.6746 C38.2028551,147.9596 37.5818551,146.1796 38.2968551,144.6996 C39.0108551,143.2186 40.7908551,142.5976 42.2708551,143.3126 C43.7518551,144.0276 44.3728551,145.8066 43.6578551,147.2876" class="sapIllus_BrandColorSecondary"/>
5
+ <path fill="var(--sapIllus_Layering1)" d="M239.538555 55.862L242.176555 46.288C242.369555 45.586 241.730555 44.938 241.026555 45.122L231.416555 47.625C230.711555 47.808 230.469555 48.685 230.981555 49.204L237.953555 56.275C238.464555 56.793 239.345555 56.564 239.538555 55.862M246.617955 79.3051C246.335955 79.3101 246.102955 79.0851 246.097955 78.8021L246.097955 78.8021 246.097955 75.6591C246.107955 75.3721 246.348955 75.1471 246.635955 75.1571 246.908955 75.1671 247.127955 75.3861 247.137955 75.6591L247.137955 78.8021C247.132955 79.0841 246.900955 79.3091 246.617955 79.3051zM246.617955 67.8949C246.335955 67.8999 246.102955 67.6739 246.098955 67.3919L246.098955 67.3909 246.098955 64.2429C246.106955 63.9559 246.345955 63.7299 246.632955 63.7389 246.907955 63.7459 247.129955 63.9679 247.136955 64.2429L247.136955 67.3909C247.132955 67.6739 246.900955 67.8989 246.617955 67.8949 246.617955 67.8949 246.617955 67.8949 246.617955 67.8949M242.484955 72.0391L239.339955 72.0391C239.052955 72.0391 238.820955 71.8071 238.820955 71.5201 238.820955 71.2341 239.052955 71.0011 239.339955 71.0011L242.484955 71.0011C242.771955 71.0011 243.003955 71.2341 243.003955 71.5201 243.003955 71.8071 242.771955 72.0391 242.484955 72.0391M253.900155 72.0404L250.759155 72.0404C250.473155 72.0314 250.248155 71.7924 250.257155 71.5064 250.266155 71.2324 250.486155 71.0134 250.759155 71.0044L253.900155 71.0044C254.186155 71.0134 254.411155 71.2524 254.402155 71.5384 254.393155 71.8124 254.173155 72.0314 253.900155 72.0404M64.1607551 177.7619C63.7977551 177.7679 63.4987551 177.4789 63.4927551 177.1159L63.4927551 177.1159 63.4927551 171.7319C63.4927551 171.3629 63.7917551 171.0639 64.1607551 171.0639 64.5297551 171.0639 64.8287551 171.3629 64.8287551 171.7319L64.8287551 177.1159C64.8227551 177.4789 64.5237551 177.7679 64.1607551 177.7619 64.1607551 177.7619 64.1607551 177.7619 64.1607551 177.7619M64.1638551 161.7353C63.8008551 161.7413 63.5018551 161.4513 63.4958551 161.0893 63.4958551 161.0883 63.4958551 161.0883 63.4958551 161.0883L63.4958551 155.7073C63.4958551 155.3393 63.7948551 155.0403 64.1638551 155.0403 64.5328551 155.0403 64.8318551 155.3393 64.8318551 155.7073L64.8318551 161.0883C64.8258551 161.4513 64.5268551 161.7413 64.1638551 161.7353zM58.8430551 167.0775L53.4500551 167.0775C53.0810551 167.0775 52.7820551 166.7785 52.7820551 166.4095 52.7820551 166.0405 53.0810551 165.7415 53.4500551 165.7415L58.8430551 165.7415C59.2120551 165.7415 59.5110551 166.0405 59.5110551 166.4095 59.5110551 166.7785 59.2120551 167.0775 58.8430551 167.0775M74.8653551 167.0775L69.4783551 167.0775C69.1093551 167.0775 68.8103551 166.7785 68.8103551 166.4095 68.8103551 166.0405 69.1093551 165.7415 69.4783551 165.7415L74.8653551 165.7415C75.2343551 165.7415 75.5333551 166.0405 75.5333551 166.4095 75.5333551 166.7785 75.2343551 167.0775 74.8653551 167.0775" class="sapIllus_Layering1"/>
6
+ <polygon fill="var(--sapIllus_BrandColorSecondary)" points="269.456 62.313 266.413 63.738 264.988 60.695 268.031 59.27" class="sapIllus_BrandColorSecondary"/>
7
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M141.536455,81.258 L146.836455,51.199 L146.811455,51.194 C149.519455,36.267 163.851455,26.253 178.840455,28.896 C193.805455,31.535 203.848455,45.847 201.287455,60.8 L196.280455,89.199 C189.014455,84.653 180.780455,81.387 171.821455,79.807 C161.392455,77.968 151.099455,78.594 141.536455,81.258 M209.591455,100.065 L216.056455,63.404 L216.031455,63.4 C220.026455,40.313 204.537455,18.226 181.440455,14.153 C158.342455,10.08 136.209455,25.534 132.068455,48.595 L125.069455,88.287 C108.399455,98.126 95.9634551,114.905 92.3384551,135.462 C85.7584551,172.779 110.675455,208.365 147.993455,214.945 C185.310455,221.525 220.895455,196.607 227.476455,159.29 C231.408455,136.987 224.083455,115.308 209.591455,100.065" class="sapIllus_ObjectFillColor"/>
8
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M164.121255,94.0547 C193.570255,96.3817 215.556255,122.1417 213.228255,151.5897 C210.901255,181.0387 185.141255,203.0247 155.693255,200.6977 C126.245255,198.3697 104.259255,172.6107 106.586255,143.1627 C108.913255,113.7137 134.672255,91.7277 164.120255,94.0547 C164.121255,94.0547 164.121255,94.0547 164.121255,94.0547" class="sapIllus_BrandColorSecondary"/>
9
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M164.589455 120.2935C164.560455 120.2935 164.530455 120.2915 164.501455 120.2855 164.230455 120.2375 164.048455 119.9795 164.096455 119.7065L165.773455 110.1955C165.820455 109.9245 166.083455 109.7365 166.352455 109.7905 166.623455 109.8385 166.805455 110.0975 166.757455 110.3695L165.080455 119.8805C165.037455 120.1225 164.826455 120.2935 164.589455 120.2935M153.322855 184.188C153.293855 184.188 153.263855 184.186 153.234855 184.18 152.963855 184.132 152.781855 183.874 152.829855 183.601L154.506855 174.09C154.554855 173.818 154.819855 173.632 155.085855 173.685 155.356855 173.733 155.538855 173.992 155.490855 174.264L153.813855 183.775C153.770855 184.017 153.559855 184.188 153.322855 184.188M132.541655 143.0386C132.512655 143.0386 132.482655 143.0366 132.453655 143.0306L122.942655 141.3536C122.671655 141.3066 122.489655 141.0476 122.537655 140.7746 122.585655 140.5026 122.850655 140.3156 123.116655 140.3696L132.627655 142.0466C132.898655 142.0946 133.080655 142.3526 133.032655 142.6256 132.989655 142.8676 132.778655 143.0386 132.541655 143.0386M136.506455 132.6499C136.413455 132.6499 136.320455 132.6249 136.237455 132.5719L128.092455 127.3819C127.859455 127.2339 127.790455 126.9239 127.939455 126.6919 128.088455 126.4599 128.400455 126.3929 128.629455 126.5389L136.775455 131.7279C137.008455 131.8769 137.076455 132.1859 136.928455 132.4189 136.832455 132.5679 136.671455 132.6499 136.506455 132.6499M140.067055 179.1079C139.974055 179.1079 139.881055 179.0829 139.798055 179.0299 139.565055 178.8809 139.497055 178.5719 139.645055 178.3389L144.834055 170.1939C144.984055 169.9609 145.295055 169.8939 145.524055 170.0409 145.757055 170.1889 145.826055 170.4989 145.677055 170.7309L140.489055 178.8769C140.393055 179.0259 140.232055 179.1079 140.067055 179.1079M174.927355 124.3882C174.834355 124.3882 174.741355 124.3632 174.658355 124.3102 174.425355 124.1612 174.357355 123.8522 174.505355 123.6192L179.694355 115.4742C179.843355 115.2412 180.155355 115.1752 180.384355 115.3212 180.617355 115.4692 180.686355 115.7792 180.537355 116.0112L175.349355 124.1572C175.253355 124.3062 175.092355 124.3882 174.927355 124.3882M143.956655 124.8677C143.799655 124.8677 143.644655 124.7937 143.547655 124.6547L138.007655 116.7437C137.848655 116.5167 137.903655 116.2057 138.129655 116.0477 138.355655 115.8887 138.667655 115.9427 138.825655 116.1697L144.365655 124.0807C144.524655 124.3067 144.469655 124.6187 144.243655 124.7767 144.155655 124.8387 144.056655 124.8677 143.956655 124.8677M181.170555 178.0142C181.013555 178.0142 180.858555 177.9402 180.761555 177.8012L175.221555 169.8902C175.062555 169.6632 175.117555 169.3522 175.343555 169.1942 175.569555 169.0352 175.882555 169.0902 176.039555 169.3162L181.579555 177.2272C181.738555 177.4532 181.683555 177.7652 181.457555 177.9232 181.369555 177.9852 181.270555 178.0142 181.170555 178.0142M129.467455 169.1519C129.310455 169.1519 129.155455 169.0779 129.058455 168.9389 128.899455 168.7129 128.954455 168.4009 129.180455 168.2429L137.091455 162.7029C137.318455 162.5449 137.629455 162.5979 137.787455 162.8249 137.946455 163.0509 137.891455 163.3629 137.665455 163.5209L129.754455 169.0609C129.666455 169.1229 129.567455 169.1519 129.467455 169.1519M182.613955 131.938C182.456955 131.938 182.301955 131.864 182.204955 131.725 182.045955 131.499 182.100955 131.187 182.326955 131.029L190.237955 125.489C190.464955 125.331 190.776955 125.384 190.933955 125.611 191.092955 125.837 191.037955 126.149 190.811955 126.307L182.900955 131.847C182.812955 131.909 182.713955 131.938 182.613955 131.938M153.817055 120.5288C153.588055 120.5288 153.380055 120.3708 153.329055 120.1368L151.239055 110.7088C151.179055 110.4388 151.349055 110.1718 151.619055 110.1118 151.899055 110.0528 152.156055 110.2218 152.215055 110.4918L154.305055 119.9208C154.365055 120.1898 154.195055 120.4578 153.925055 120.5168 153.888055 120.5248 153.852055 120.5288 153.817055 120.5288M167.860055 183.8706C167.631055 183.8706 167.423055 183.7126 167.372055 183.4786L165.282055 174.0506C165.222055 173.7806 165.392055 173.5136 165.662055 173.4536 165.944055 173.3956 166.199055 173.5646 166.258055 173.8336L168.348055 183.2626C168.408055 183.5316 168.238055 183.7996 167.968055 183.8586 167.931055 183.8666 167.895055 183.8706 167.860055 183.8706M123.484055 155.897C123.255055 155.897 123.047055 155.739 122.996055 155.505 122.936055 155.236 123.106055 154.968 123.376055 154.909L132.805055 152.818C133.080055 152.76 133.342055 152.929 133.402055 153.198 133.462055 153.467 133.292055 153.735 133.022055 153.794L123.592055 155.885C123.556055 155.893 123.519055 155.897 123.484055 155.897" class="sapIllus_StrokeDetailColor"/>
10
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M227.834755,154.4761 C228.463755,147.7851 228.093755,141.0381 226.736755,134.4561 C224.683755,124.9961 220.697755,116.0971 215.063755,108.3031 C213.920755,106.7221 211.336755,107.9031 211.928755,109.7621 C215.315755,120.4121 216.049755,129.8281 215.609755,138.8201 C215.506755,149.6351 213.032755,160.2961 208.361755,170.0511 C204.342755,178.3171 198.486755,185.5551 191.242755,191.2121 C189.349755,192.5691 187.377755,193.8131 185.338755,194.9381 C182.194755,196.5801 178.911755,197.9421 175.528755,199.0071 C162.069755,203.1091 143.940755,199.9911 143.940755,199.9911 C130.993755,197.6061 117.757755,190.8591 106.370755,183.2281 C104.785755,182.1661 102.868755,184.0581 103.922755,185.6481 C108.676755,192.8191 114.769755,199.0401 121.891755,203.9541 C128.767755,208.7101 136.468755,212.1451 144.600755,214.0821 C147.549755,214.7681 150.536755,215.2781 153.545755,215.6101 C155.270755,215.7901 156.765755,215.8651 157.420755,215.8971 C158.383755,215.966508 159.349755,215.9841 160.313755,215.9491 C161.442755,215.8891 161.902755,215.7641 163.744755,215.5011 C165.300755,215.2791 166.114755,215.2041 166.963755,215.1001 C171.454755,214.4741 175.906755,213.5911 180.296755,212.4541 C182.772755,211.9071 185.203755,211.1731 187.567755,210.2571 C189.280755,209.5441 190.948755,208.7281 192.563755,207.8131 C195.889755,205.9631 199.077755,203.8751 202.102755,201.5661 C208.630755,196.2321 214.236755,189.8601 218.694755,182.7051 C223.782755,174.0831 226.903755,164.4441 227.834755,154.4761" class="sapIllus_ObjectFillColor"/>
11
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M230.482955,181.837 L159.791955,169.372 C147.998955,167.293 140.124955,156.047 142.203955,144.254 L142.203955,144.254 C144.283955,132.462 155.528955,124.587 167.321955,126.667 L238.012955,139.132 C249.805955,141.211 257.679955,152.457 255.600955,164.249 L255.600955,164.249 C253.520955,176.042 242.275955,183.916 230.482955,181.837" class="sapIllus_ObjectFillColor"/>
12
+ <path fill="var(--sapIllus_AccentColor)" d="M160.215455 151.6813L155.745455 156.7873C155.476455 157.0953 155.008455 157.1263 154.700455 156.8573L152.807455 155.2003C152.476455 154.9113 152.468455 154.3983 152.791455 154.0993L158.065455 149.2093C158.453455 148.8503 158.350455 148.2123 157.870455 147.9923L151.888455 145.2533C151.497455 145.0743 151.340455 144.6023 151.545455 144.2253L152.772455 141.9703C152.976455 141.5963 153.453455 141.4703 153.815455 141.6963L159.319455 145.1233C159.773455 145.4063 160.369455 145.1283 160.444455 144.5983L161.400455 137.8583C161.458455 137.4433 161.849455 137.1603 162.262455 137.2333L164.645455 137.6533C165.059455 137.7263 165.330455 138.1293 165.240455 138.5403L163.799455 145.1373C163.685455 145.6593 164.144455 146.1263 164.668455 146.0213L170.945455 144.7643C171.359455 144.6823 171.758455 144.9603 171.823455 145.3773L172.209455 147.8643C172.275455 148.2913 171.964455 148.6833 171.534455 148.7163L164.884455 149.2343C164.360455 149.2753 164.044455 149.8333 164.278455 150.3033L167.494455 156.7543C167.689455 157.1443 167.506455 157.6183 167.099455 157.7753L164.757455 158.6813C164.371455 158.8303 163.938455 158.6343 163.795455 158.2463L161.468455 151.9133C161.274455 151.3863 160.585455 151.2583 160.215455 151.6813M185.089755 156.0673L180.619755 161.1733C180.350755 161.4813 179.882755 161.5123 179.574755 161.2433L177.681755 159.5863C177.350755 159.2973 177.342755 158.7843 177.665755 158.4853L182.939755 153.5953C183.327755 153.2363 183.224755 152.5983 182.744755 152.3783L176.762755 149.6393C176.371755 149.4603 176.214755 148.9883 176.419755 148.6113L177.646755 146.3563C177.850755 145.9823 178.327755 145.8563 178.689755 146.0823L184.193755 149.5093C184.647755 149.7923 185.243755 149.5143 185.318755 148.9843L186.274755 142.2443C186.332755 141.8293 186.723755 141.5463 187.136755 141.6193L189.519755 142.0393C189.933755 142.1123 190.204755 142.5153 190.114755 142.9263L188.673755 149.5233C188.559755 150.0453 189.018755 150.5123 189.542755 150.4073L195.819755 149.1503C196.233755 149.0683 196.632755 149.3463 196.697755 149.7633L197.083755 152.2503C197.149755 152.6773 196.838755 153.0693 196.408755 153.1023L189.758755 153.6203C189.234755 153.6613 188.918755 154.2193 189.152755 154.6893L192.368755 161.1403C192.563755 161.5303 192.380755 162.0043 191.973755 162.1613L189.631755 163.0673C189.245755 163.2163 188.812755 163.0203 188.669755 162.6313L186.342755 156.2993C186.148755 155.7713 185.459755 155.6443 185.089755 156.0673M209.964055 160.4533L205.494055 165.5593C205.225055 165.8673 204.757055 165.8983 204.449055 165.6293L202.556055 163.9723C202.225055 163.6833 202.217055 163.1703 202.540055 162.8713L207.814055 157.9813C208.202055 157.6223 208.099055 156.9843 207.619055 156.7643L201.637055 154.0253C201.246055 153.8463 201.089055 153.3743 201.294055 152.9973L202.521055 150.7423C202.725055 150.3683 203.202055 150.2423 203.564055 150.4683L209.068055 153.8953C209.522055 154.1783 210.118055 153.9003 210.193055 153.3703L211.149055 146.6303C211.207055 146.2153 211.598055 145.9323 212.011055 146.0053L214.394055 146.4253C214.808055 146.4983 215.079055 146.9013 214.989055 147.3123L213.548055 153.9093C213.434055 154.4313 213.893055 154.8983 214.417055 154.7933L220.694055 153.5363C221.108055 153.4543 221.507055 153.7323 221.572055 154.1493L221.958055 156.6363C222.024055 157.0633 221.713055 157.4553 221.283055 157.4883L214.633055 158.0063C214.109055 158.0473 213.793055 158.6053 214.027055 159.0753L217.243055 165.5263C217.438055 165.9163 217.255055 166.3903 216.848055 166.5473L214.506055 167.4533C214.120055 167.6023 213.687055 167.4063 213.544055 167.0183L211.217055 160.6853C211.023055 160.1573 210.334055 160.0303 209.964055 160.4533M234.838355 164.8393L230.368355 169.9453C230.099355 170.2533 229.631355 170.2843 229.323355 170.0153L227.430355 168.3583C227.099355 168.0693 227.091355 167.5563 227.414355 167.2573L232.688355 162.3673C233.076355 162.0083 232.973355 161.3703 232.493355 161.1503L226.511355 158.4113C226.120355 158.2323 225.963355 157.7603 226.168355 157.3833L227.395355 155.1283C227.599355 154.7543 228.076355 154.6283 228.438355 154.8543L233.942355 158.2813C234.396355 158.5643 234.992355 158.2863 235.067355 157.7563L236.023355 151.0163C236.081355 150.6013 236.472355 150.3183 236.885355 150.3913L239.268355 150.8113C239.682355 150.8843 239.953355 151.2873 239.863355 151.6983L238.422355 158.2953C238.308355 158.8173 238.767355 159.2843 239.291355 159.1793L245.568355 157.9223C245.982355 157.8403 246.381355 158.1183 246.446355 158.5353L246.832355 161.0223C246.898355 161.4493 246.587355 161.8413 246.157355 161.8743L239.507355 162.3923C238.983355 162.4333 238.667355 162.9913 238.901355 163.4613L242.117355 169.9123C242.312355 170.3023 242.129355 170.7763 241.722355 170.9333L239.380355 171.8393C238.994355 171.9883 238.561355 171.7923 238.418355 171.4043L236.091355 165.0713C235.897355 164.5443 235.208355 164.4163 234.838355 164.8393" class="sapIllus_AccentColor"/>
13
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M255.103955,164.1582 C254.123955,169.7382 251.033955,174.5882 246.393955,177.8382 C241.763955,181.0782 236.143955,182.3282 230.573955,181.3482 L221.023955,179.6682 L219.983955,179.4782 L159.873955,168.8782 C148.373955,166.8482 140.663955,155.8482 142.693955,144.3382 C144.723955,132.8382 155.723955,125.1382 167.233955,127.1582 L227.363955,137.7682 L228.373955,137.9482 L237.923955,139.6282 C249.433955,141.6482 257.133955,152.6582 255.103955,164.1582 L255.103955,164.1582 Z M148.083955,214.4482 C111.093955,207.9282 86.3139551,172.5382 92.8339551,135.5482 C96.3539551,115.5682 108.313955,99.1382 124.383955,89.2882 C124.763955,89.0582 125.143955,88.8382 125.523955,88.6182 C130.333955,85.7882 135.503955,83.5482 140.903955,81.9782 C141.253955,81.8682 141.613955,81.7682 141.963955,81.6782 C147.713955,80.0982 153.733955,79.2582 159.873955,79.2582 C163.783955,79.2582 167.753955,79.5982 171.733955,80.2982 C180.383955,81.8182 188.483955,84.9282 195.733955,89.4082 C196.043955,89.5982 196.343955,89.7882 196.643955,89.9782 C201.153955,92.8682 205.323955,96.2982 209.063955,100.2082 C209.353955,100.5082 209.633955,100.8082 209.913955,101.1182 C211.983955,103.3582 213.923955,105.7582 215.703955,108.3082 C221.733955,116.9282 225.623955,126.6182 227.203955,136.7182 L167.403955,126.1782 C155.353955,124.0482 143.833955,132.1182 141.713955,144.1682 C139.583955,156.2082 147.663955,167.7382 159.703955,169.8682 L219.483955,180.4082 C205.763955,205.0982 177.423955,219.6182 148.083955,214.4482 L148.083955,214.4482 Z M195.913955,88.3882 C188.753955,83.9982 180.663955,80.8582 171.903955,79.3182 C161.853955,77.5382 151.743955,77.9982 142.163955,80.5482 L147.323955,51.2882 L147.383955,50.8782 C150.223955,36.4382 164.213955,26.8282 178.753955,29.3882 C193.423955,31.9782 203.313955,46.0282 200.793955,60.7182 L195.913955,88.3882 Z M132.563955,48.6882 C136.653955,25.8982 158.543955,10.6282 181.353955,14.6482 C204.153955,18.6682 219.483955,40.4982 215.533955,63.3182 L215.453955,63.8182 L215.473955,63.8182 L209.263955,99.0382 C205.553955,95.2282 201.383955,91.8382 196.823955,88.9582 L201.783955,60.8882 C204.393955,45.6582 194.133955,31.0882 178.923955,28.4082 C163.713955,25.7182 149.073955,35.8982 146.323955,51.1082 L146.253955,51.6182 L141.103955,80.8382 C135.783955,82.3482 130.633955,84.5082 125.753955,87.2882 L132.563955,48.6882 Z M238.103955,138.6382 L228.223955,136.8982 C226.063955,122.9082 219.643955,110.0282 210.123955,99.9282 L216.543955,63.4882 L216.613955,62.9882 L216.603955,62.9782 C220.333955,39.8082 204.693955,17.7482 181.523955,13.6582 C158.163955,9.5382 135.763955,25.1782 131.573955,48.5082 L124.623955,87.9582 C123.143955,88.8282 121.683955,89.7682 120.263955,90.7682 C105.143955,101.3482 95.0539551,117.1982 91.8439551,135.3782 C88.6439551,153.5582 92.7039551,171.8982 103.293955,187.0182 C113.883955,202.1382 129.723955,212.2282 147.903955,215.4382 C151.943955,216.1482 155.973955,216.4982 159.943955,216.4982 C185.333955,216.4982 208.543955,202.4182 220.523955,180.5882 L230.393955,182.3282 C231.693955,182.5582 232.983955,182.6682 234.253955,182.6682 C244.813955,182.6682 254.193955,175.0882 256.093955,164.3382 C258.213955,152.2882 250.143955,140.7682 238.103955,138.6382 L238.103955,138.6382 Z" class="sapIllus_StrokeDetailColor"/>
14
+ </svg>
15
+ `;
@@ -0,0 +1,17 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" id="tnt-Scene-Services">
2
+ <path fill="var(--sapIllus_BackgroundColor)" d="M235.82129,143.0528 C235.92129,134.8158 242.91129,128.9878 252.31729,128.7908 C281.51329,128.1818 305.09629,104.4108 302.17729,75.7458 C299.63629,50.7988 276.81729,32.3038 250.78429,32.3018 C208.49029,32.29955 139.29429,32.29955 97.0012897,32.3018 C70.9672897,32.3038 48.1482897,50.7978 45.6072897,75.7458 C42.6872897,104.4108 66.2642897,128.7908 95.4672897,128.7908 L95.6212897,128.7908 C101.54629,128.7908 106.37829,133.4588 106.36029,139.1628 L106.35929,139.2798 L106.36029,139.3958 C106.37829,145.0998 101.54629,149.7678 95.6212897,149.7678 L52.8452897,149.7678 C39.4842897,149.7678 27.2322897,158.2678 24.3022897,170.8198 C20.1792897,188.4878 34.2132897,204.3048 51.8972897,204.3048 L80.3582897,204.3048 L207.67429,204.3048 L225.18129,204.3048 C238.95629,204.3048 251.45829,195.2538 253.99229,182.2178 C256.37129,169.9758 248.61329,160.7718 240.05729,153.3238 C237.61529,151.1978 235.76929,147.3808 235.82129,143.0528" class="sapIllus_BackgroundColor"/>
3
+ <path fill="var(--sapIllus_Layering1)" d="M276.74899 216.2999C276.15999 216.3099 275.67399 215.8399 275.66399 215.2499L275.66399 208.6869C275.68599 208.0879 276.18699 207.6189 276.78599 207.6399 277.35599 207.6589 277.81299 208.1169 277.83399 208.6869L277.83399 215.2489C277.82399 215.8389 277.33899 216.3089 276.74999 216.2999L276.74899 216.2999zM276.74899 192.4776C276.15899 192.4876 275.67399 192.0166 275.66499 191.4276L275.66499 191.4266 275.66499 184.8536C275.68199 184.2546 276.18099 183.7836 276.77899 183.7996 277.35399 183.8166 277.81699 184.2796 277.83299 184.8536L277.83299 191.4266C277.82399 192.0156 277.33899 192.4866 276.74999 192.4776L276.74899 192.4776zM268.12009 201.13L261.55509 201.13C260.95609 201.13 260.47109 200.646 260.47109 200.047 260.47109 199.448 260.95609 198.964 261.55509 198.964L268.12009 198.964C268.71909 198.964 269.20309 199.448 269.20309 200.047 269.20309 200.646 268.71909 201.13 268.12009 201.13M291.95209 201.1329L285.39409 201.1329C284.79709 201.1129 284.32809 200.6139 284.34809 200.0169 284.36509 199.4459 284.82409 198.9879 285.39409 198.9699L291.95209 198.9699C292.55009 198.9889 293.01809 199.4879 292.99909 200.0859 292.98109 200.6559 292.52309 201.1139 291.95209 201.1329M61.0106897 45.7999C60.5576897 45.8079 60.1846897 45.4459 60.1766897 44.9929L60.1766897 39.9489C60.1926897 39.4879 60.5786897 39.1279 61.0386897 39.1449 61.4776897 39.1589 61.8286897 39.5109 61.8436897 39.9489L61.8436897 44.9919C61.8366897 45.4459 61.4636897 45.8069 61.0106897 45.7999M61.0106897 27.4913C60.5576897 27.4993 60.1846897 27.1373 60.1766897 26.6843L60.1766897 26.6833 60.1766897 21.6323C60.1906897 21.1723 60.5736897 20.8093 61.0336897 20.8223 61.4756897 20.8353 61.8306897 21.1903 61.8436897 21.6323L61.8436897 26.6833C61.8366897 27.1373 61.4636897 27.4983 61.0106897 27.4913M54.3788897 34.1407L49.3318897 34.1407C48.8728897 34.1407 48.4998897 33.7687 48.4998897 33.3087 48.4998897 32.8487 48.8728897 32.4767 49.3318897 32.4767L54.3788897 32.4767C54.8388897 32.4767 55.2108897 32.8487 55.2108897 33.3087 55.2108897 33.7687 54.8388897 34.1407 54.3788897 34.1407M72.6952897 34.1437L67.6542897 34.1437C67.1952897 34.1287 66.8362897 33.7457 66.8492897 33.2867 66.8642897 32.8477 67.2162897 32.4957 67.6542897 32.4817L72.6952897 32.4817C73.1542897 32.4957 73.5132897 32.8797 73.5002897 33.3387 73.4852897 33.7777 73.1332897 34.1287 72.6952897 34.1437" class="sapIllus_Layering1"/>
4
+ <path fill="var(--sapIllus_AccentColor)" d="M39.0868897,118.4591 C34.1598897,116.4771 31.7578897,111.6341 29.8958897,106.6961 C29.7498897,106.2931 29.3718897,106.0211 28.9428897,106.0101 C28.5318897,106.0601 28.1718897,106.3061 27.9758897,106.6711 C25.4898897,112.8161 21.7818897,115.9691 17.4898897,119.6191 L17.3838897,119.7111 C17.0708897,119.9811 16.9358897,120.4021 17.0288897,120.8051 C17.1168897,121.2021 17.4258897,121.5151 17.8218897,121.6081 C21.5578897,122.4371 27.3388897,129.8791 27.3388897,133.8611 C27.3298897,134.3891 27.7068897,134.8441 28.2268897,134.9331 C28.2758897,134.9401 28.3248897,134.9431 28.3748897,134.9431 C28.8428897,134.9371 29.2478897,134.6191 29.3678897,134.1671 C30.6208897,129.7161 34.2418897,122.3991 39.0818897,120.4801 C39.6408897,120.2421 39.8988897,119.5961 39.6608897,119.0371 C39.5508897,118.7781 39.3448897,118.5711 39.0858897,118.4601 L39.0868897,118.4591 Z" class="sapIllus_AccentColor"/>
5
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M162.77439,169.9483 L218.06839,114.6543 C221.44639,111.2763 212.98939,97.3423 199.17839,83.5313 C185.36839,69.7203 171.43439,61.2633 168.05539,64.6423 L112.76239,119.9353 L162.77439,169.9483 Z" class="sapIllus_ObjectFillColor"/>
6
+ <path fill="var(--sapIllus_PatternShadow)" d="M221.019701,105.10147 C207.208701,91.2904698 193.275701,82.8334698 189.896701,86.2124698 L134.603701,141.50547 L160.076701,166.97947 L221.019701,105.10147 Z" class="sapIllus_PatternShadow" transform="scale(1 -1) rotate(90 304.036 0)"/>
7
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M230.30179,130.296 L253.47479,162.21 C254.68179,163.417 254.70979,165.346 253.53779,166.518 L213.71779,206.338 C212.54579,207.51 210.61679,207.482 209.40979,206.275 L177.49579,183.102 C176.28879,181.895 176.26079,179.967 177.43179,178.795 L225.99479,130.232 C227.16679,129.061 229.09479,129.089 230.30179,130.296" class="sapIllus_ObjectFillColor"/>
8
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M218.29299 173.9093L228.04099 183.6573C228.45699 184.0733 228.41799 184.7863 227.95399 185.2503L212.55599 200.6473C212.09199 201.1123 211.37899 201.1513 210.96299 200.7353L199.68699 192.5153C199.27099 192.0993 199.30999 191.3873 199.77299 190.9223L216.69899 173.9963C217.16399 173.5323 217.87699 173.4933 218.29299 173.9093M204.72459 160.3399L214.21559 169.8309C214.63159 170.2469 214.59259 170.9609 214.12759 171.4249L196.53159 189.0219C196.06759 189.4859 195.35359 189.5249 194.93859 189.1089L183.80559 181.2589C183.38959 180.8429 183.42859 180.1299 183.89259 179.6659L203.13059 160.4279C203.59459 159.9639 204.30859 159.9249 204.72459 160.3399M239.46969 152.7325L247.46769 164.2305C247.88369 164.6465 247.84469 165.3595 247.37969 165.8245L232.14569 181.0585C231.68169 181.5225 230.96769 181.5615 230.55169 181.1455L220.80469 171.3975C220.38869 170.9825 220.42769 170.2685 220.89169 169.8045L237.87569 152.8205C238.33969 152.3555 239.05369 152.3165 239.46969 152.7325M228.15429 136.9103L236.00429 148.0433C236.42029 148.4593 236.38129 149.1723 235.91729 149.6373L218.32029 167.2323C217.85629 167.6973 217.14229 167.7363 216.72629 167.3203L207.23529 157.8293C206.81929 157.4133 206.85829 156.7003 207.32329 156.2353L226.56029 136.9983C227.02529 136.5333 227.73829 136.4943 228.15429 136.9103" class="sapIllus_BrandColorSecondary"/>
9
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M125.33109,25.3253 L148.50409,57.2403 C149.71109,58.4473 149.73909,60.3753 148.56809,61.5473 L108.74709,101.3683 C107.57509,102.5393 105.64709,102.5113 104.44009,101.3043 L72.5250897,78.1313 C71.3180897,76.9243 71.2900897,74.9963 72.4620897,73.8243 L121.02409,25.2623 C122.19609,24.0903 124.12409,24.1183 125.33109,25.3253" class="sapIllus_ObjectFillColor"/>
10
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M113.32229 68.9386L123.07029 78.6866C123.48629 79.1026 123.44729 79.8156 122.98329 80.2806L107.58629 95.6776C107.12129 96.1416 106.40829 96.1806 105.99229 95.7646L94.7162897 87.5446C94.3002897 87.1286 94.3392897 86.4166 94.8032897 85.9526L111.72929 69.0266C112.19329 68.5616 112.90729 68.5226 113.32229 68.9386M99.7538897 55.3702L109.24489 64.8612C109.66089 65.2762 109.62189 65.9902 109.15689 66.4542L91.5618897 84.0512C91.0968897 84.5162 90.3838897 84.5552 89.9678897 84.1392L78.8348897 76.2892C78.4188897 75.8732 78.4578897 75.1592 78.9228897 74.6952L98.1598897 55.4572C98.6248897 54.9932 99.3378897 54.9542 99.7538897 55.3702M134.49899 47.7618L142.49699 59.2598C142.91299 59.6758 142.87399 60.3898 142.40999 60.8538L127.17499 76.0878C126.71099 76.5518 125.99699 76.5908 125.58199 76.1758L115.83399 66.4278C115.41799 66.0118 115.45699 65.2978 115.92099 64.8338L132.90499 47.8498C133.36999 47.3848 134.08299 47.3458 134.49899 47.7618M123.18359 31.9395L131.03359 43.0725C131.44959 43.4885 131.41059 44.2025 130.94659 44.6665L113.34959 62.2625C112.88559 62.7265 112.17159 62.7655 111.75559 62.3495L102.26459 52.8585C101.84859 52.4425 101.88859 51.7295 102.35259 51.2655L121.59059 32.0275C122.05459 31.5625 122.76759 31.5235 123.18359 31.9395" class="sapIllus_BrandColorSecondary"/>
11
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M127.73929,154.9708 C115.82329,143.0548 98.1872897,141.1648 87.3262897,150.2818 L132.42929,195.3838 C141.54629,184.5228 139.65529,166.8868 127.73929,154.9708" class="sapIllus_ObjectFillColor"/>
12
+ <path fill="var(--sapIllus_PatternShadow)" d="M147.447051,175.164863 C135.531051,163.248863 117.895051,161.358863 107.034051,170.475863 L121.708051,185.493863 C130.824051,174.632863 139.208051,176.493863 147.447051,175.164863" class="sapIllus_PatternShadow" transform="scale(-1 1) rotate(-90 0 302.358)"/>
13
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M102.64159,189.2071 C100.11859,191.7301 96.0265897,191.7301 93.5025897,189.2071 C90.9795897,186.6841 90.9795897,182.5921 93.5025897,180.0681 C96.0265897,177.5451 100.11859,177.5451 102.64159,180.0681 C105.16459,182.5921 105.16459,186.6841 102.64159,189.2071" class="sapIllus_BrandColorSecondary"/>
14
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M253.18459,166.1642 L213.36459,205.9842 C212.89359,206.4552 212.24259,206.6802 211.58459,206.6982 C210.90159,206.6882 210.25459,206.4122 209.70459,205.8702 L177.84959,182.7482 C176.83959,181.7382 176.81159,180.1232 177.78559,179.1482 L226.34859,130.5852 C226.82459,130.1092 227.45359,129.8732 228.08959,129.8732 C228.74559,129.8732 229.40859,130.1242 229.92059,130.6232 L253.12159,162.5632 C253.61259,163.0552 253.88859,163.7012 253.898875,164.3852 C253.90859,165.0612 253.65559,165.6932 253.18459,166.1642 L253.18459,166.1642 Z M162.77459,169.2412 L113.46959,119.9352 L168.40959,64.9962 C171.19759,62.2082 184.07959,69.1392 198.82559,83.8852 C213.57259,98.6322 220.49759,111.5182 217.71459,114.3012 L162.77459,169.2412 Z M132.39259,194.6402 L88.0705897,150.3182 C98.7965897,141.7432 115.94859,143.8882 127.38559,155.3242 C138.82359,166.7622 140.96659,183.9132 132.39259,194.6402 L132.39259,194.6402 Z M108.39359,101.0152 C107.42159,101.9882 105.80559,101.9622 104.73459,100.8992 L72.8785897,77.7772 C71.8695897,76.7682 71.8405897,75.1522 72.8155897,74.1782 L121.37759,25.6152 C121.85459,25.1392 122.48259,24.9022 123.11959,24.9022 C123.77459,24.9022 124.43759,25.1532 124.95059,25.6522 L148.15059,57.5942 C149.16059,58.6032 149.18859,60.2192 148.21459,61.1932 L108.39359,101.0152 Z M253.87859,161.9162 L230.70559,130.0022 L230.65559,129.9422 C229.25559,128.5422 227.00659,128.5152 225.64159,129.8782 L200.81459,154.7052 L189.76959,143.6602 L218.42159,115.0082 C220.74559,112.6852 218.11359,107.0582 215.49659,102.7452 C211.90859,96.8342 206.23959,89.8852 199.53259,83.1782 C192.82559,76.4712 185.87559,70.8012 179.96459,67.2142 C175.65159,64.5962 170.02559,61.9642 167.70259,64.2892 L139.06859,92.9232 L128.48359,82.3392 L148.92159,61.9002 C150.28659,60.5352 150.25659,58.2862 148.90859,56.9462 L125.73559,25.0312 L125.68459,24.9722 C124.28459,23.5722 122.03659,23.5442 120.67059,24.9082 L72.1085897,73.4712 C70.7435897,74.8362 70.7725897,77.0852 72.2315897,78.5352 L104.08659,101.6572 C104.79859,102.3692 105.72959,102.7262 106.65259,102.7262 C107.54459,102.7262 108.42959,102.3932 109.10059,101.7222 L127.77659,83.0462 L138.36059,93.6312 L112.40959,119.5822 C112.21359,119.7772 112.21359,120.0942 112.40959,120.2892 L137.00859,144.8902 L127.67859,154.2202 C115.72759,142.6262 97.9655897,140.6962 87.0045897,149.8982 C86.8975897,149.9882 86.8325897,150.1192 86.8265897,150.2602 C86.8205897,150.3992 86.8725897,150.5362 86.9725897,150.6352 L109.33559,172.9972 C109.33159,173.0002 109.32759,173.0012 109.32459,173.0052 L103.90159,178.4282 C103.70559,178.6232 103.70559,178.9392 103.90159,179.1352 C104.09659,179.3302 104.41359,179.3302 104.60859,179.1352 L110.03159,173.7122 C110.03459,173.7082 110.03559,173.7042 110.03859,173.7002 L132.07659,195.7372 C132.16959,195.8312 132.29659,195.8842 132.42959,195.8842 L132.45159,195.8842 C132.59159,195.8772 132.72259,195.8122 132.81259,195.7052 C142.03859,184.7122 140.07459,166.8772 128.38759,154.9252 L137.71559,145.5972 L162.42059,170.3022 C162.51459,170.3952 162.64159,170.4482 162.77459,170.4482 C162.90759,170.4482 163.03459,170.3952 163.12759,170.3022 L189.06259,144.3672 L200.10759,155.4122 L177.07859,178.4412 C175.71359,179.8072 175.74359,182.0562 177.20259,183.5062 L209.05659,206.6282 C209.76859,207.3402 210.69959,207.6972 211.62159,207.6972 C212.51459,207.6972 213.40059,207.3622 214.07159,206.6912 L253.89159,166.8712 C255.25659,165.5062 255.22859,163.2572 253.87859,161.9162 L253.87859,161.9162 Z" class="sapIllus_StrokeDetailColor"/>
15
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M127.05469,112.2452 L127.05469,112.2452 C126.85969,112.0502 126.85969,111.7332 127.05469,111.5382 L145.43969,93.1532 C145.63469,92.9582 145.95069,92.9582 146.14669,93.1532 C146.34169,93.3492 146.34169,93.6652 146.14669,93.8602 L127.76169,112.2452 C127.56669,112.4402 127.24969,112.4402 127.05469,112.2452" class="sapIllus_StrokeDetailColor"/>
16
+ <path fill="var(--sapIllus_AccentColor)" d="M293.08399 36.42C285.88999 33.755 282.36899 27.199 279.63599 20.512 279.50799 20.202 279.20599 20 278.87099 20 278.54699 20.03 278.25899 20.221 278.10399 20.506 274.54799 29.018 269.88699 32.697 263.18199 37.34 262.81199 37.595 262.71799 38.102 262.97399 38.473 263.07899 38.626 263.23399 38.738 263.41299 38.791 269.05499 40.511 277.52299 51.1 277.56999 56.496 277.57599 56.904 277.88199 57.247 278.28799 57.299 278.32699 57.305 278.36599 57.307 278.40599 57.307 278.77099 57.305 279.09199 57.063 279.19499 56.712 280.56899 51.937 285.00799 41.974 291.96699 38.45 292.33599 38.264 292.71199 38.096 293.09499 37.947 293.51599 37.788 293.72899 37.318 293.56899 36.898 293.48499 36.676 293.30899 36.501 293.08499 36.42L293.08399 36.42zM167.27639 208.8692C163.65439 207.5272 161.88139 204.2272 160.50639 200.8602 160.44239 200.7052 160.29039 200.6032 160.12139 200.6032 159.95839 200.6192 159.81339 200.7142 159.73439 200.8582 157.94539 205.1422 155.59839 206.9952 152.22339 209.3322 152.03739 209.4602 151.99039 209.7162 152.11839 209.9022 152.17239 209.9792 152.25039 210.0362 152.33939 210.0622 155.17939 210.9282 159.44239 216.2582 159.46639 218.9742 159.46939 219.1812 159.62339 219.3522 159.82739 219.3792 159.84739 219.3822 159.86739 219.3832 159.88639 219.3832 160.07139 219.3822 160.23239 219.2602 160.28439 219.0842 160.97639 216.6802 163.21039 211.6642 166.71439 209.8902 166.89939 209.7972 167.08939 209.7122 167.28139 209.6382 167.49339 209.5572 167.60039 209.3212 167.52039 209.1092 167.47739 208.9972 167.38839 208.9092 167.27639 208.8692" class="sapIllus_AccentColor"/>
17
+ </svg>`;
@@ -0,0 +1,18 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" id="tnt-Scene-SessionExpired">
2
+ <path fill="var(--sapIllus_BackgroundColor)" d="M270.6023,107.7142 C262.4083,100.8952 252.9523,95.0432 242.1043,92.1012 C234.4333,89.8752 229.3913,89.0242 226.1793,88.8962 C225.5743,88.8912 224.9713,88.8962 224.3673,88.8962 C223.9853,88.8972 223.6153,88.8792 223.2543,88.8482 C233.5583,81.1692 239.6513,68.8992 239.6433,55.8442 C239.6433,33.2862 221.7963,15.0002 199.7833,15.0002 L79.5073,15.0002 C57.4943,15.0002 39.6473,33.2862 39.6473,55.8442 C39.6473,78.4022 57.4943,96.6882 79.5073,96.6882 L82.3123,96.6882 C53.7933,106.4082 31.4983,127.9562 31.6019376,158.3232 C31.6723,179.0762 42.6123,199.2052 60.8923,211.6152 C80.8723,225.1782 106.5773,225.0662 130.3893,225.0332 C149.7343,225.0072 169.0783,225.1572 188.4213,225.0222 C206.7613,224.8932 213.8773,225.8272 232.0563,223.2672 C267.6903,218.2472 294.9453,190.6562 294.83265,157.3382 C294.7683,138.6872 285.6883,120.2672 270.6023,107.7142" class="sapIllus_BackgroundColor"/>
3
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M271.5281,176.3714 L246.3901,169.7674 C246.0241,169.6714 245.8051,169.2964 245.9011,168.9304 L252.5051,143.7914 C252.6011,143.4254 252.9761,143.2064 253.3421,143.3034 L278.4801,149.9064 C278.8461,150.0034 279.0651,150.3774 278.9691,150.7434 L272.3661,175.8824 C272.2691,176.2484 271.8941,176.4674 271.5281,176.3714" class="sapIllus_ObjectFillColor"/>
4
+ <path fill="var(--sapIllus_Layering1)" d="M271.655,175.887 C271.755,175.914 271.856,175.854 271.883,175.755 L278.486,150.616 C278.512,150.518 278.453,150.416 278.353,150.39 L253.216,143.786 C253.117,143.764 253.014,143.821 252.989,143.918 L246.384,169.057 C246.359,169.156 246.419,169.257 246.517,169.283 L271.655,175.887 Z M271.705,176.894 C271.603,176.894 271.502,176.88 271.401,176.854 L246.263,170.25 C245.957,170.17 245.7,169.975 245.541,169.701 C245.381,169.428 245.338,169.109 245.418,168.803 L252.022,143.664 C252.188,143.033 252.834,142.652 253.469,142.82 L278.607,149.423 C279.24,149.589 279.62,150.239 279.453,150.87 L272.849,176.009 C272.769,176.316 272.574,176.572 272.301,176.732 C272.116,176.839 271.912,176.894 271.705,176.894 L271.705,176.894 Z" class="sapIllus_Layering1"/>
5
+ <path fill="var(--sapIllus_Layering2)" d="M271.4841 171.9417L268.2261 162.6817C268.0801 162.2647 267.5571 162.1277 267.2241 162.4197L263.2521 165.8937 260.2731 155.5017C260.1331 155.0137 259.5231 154.8537 259.1631 155.2107L248.3751 165.8377C248.0051 166.2007 248.1721 166.8277 248.6731 166.9597L260.0891 169.9587 261.3451 170.2877 263.6331 170.8887 270.7341 172.7537C271.2191 172.8817 271.6501 172.4147 271.4841 171.9417M274.1658 155.0735C273.8138 156.4085 272.4478 157.2065 271.1128 156.8555 269.7778 156.5055 268.9798 155.1375 269.3308 153.8025 269.6818 152.4685 271.0478 151.6705 272.3828 152.0205 273.7188 152.3715 274.5168 153.7385 274.1658 155.0735M258.3845 82.9691C256.4265 80.5091 253.6295 78.9581 250.5055 78.6031 247.3875 78.2531 244.3075 79.1291 241.8465 81.0881 239.3875 83.0451 237.8365 85.8431 237.4815 88.9671 237.1255 92.0911 238.0085 95.1651 239.9655 97.6251 241.9235 100.0851 244.7215 101.6361 247.8455 101.9911 248.0305 102.0121 248.2155 102.0291 248.4015 102.0411 251.3305 102.2381 254.1895 101.3481 256.5035 99.5071 258.9625 97.5491 260.5135 94.7511 260.8685 91.6271 261.2245 88.5041 260.3425 85.4291 258.3845 82.9691" class="sapIllus_Layering2"/>
6
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M252.4187 88.1751C252.2257 89.8741 250.6897 91.0961 248.9907 90.9031 247.2917 90.7091 246.0697 89.1741 246.2637 87.4751 246.4567 85.7761 247.9917 84.5541 249.6907 84.7471 251.3907 84.9411 252.6117 86.4761 252.4187 88.1751M249.5359 91.3626L249.0819 91.3106C245.9969 90.9596 243.1889 92.9526 242.4269 95.8716 242.3189 96.2826 242.4179 96.7316 242.7209 97.0296 244.1949 98.4786 246.1409 99.4696 248.3539 99.7216 250.5679 99.9736 252.6869 99.4456 254.4499 98.3646 254.8109 98.1416 255.0089 97.7256 254.9959 97.3006 254.9089 94.2856 252.6209 91.7136 249.5359 91.3626M55.5398 115.6653L72.6478 145.6303C72.9598 146.1773 72.7688 146.8733 72.2238 147.1853L44.3118 163.1203C43.7668 163.4333 43.0698 163.2423 42.7578 162.6953L25.6498 132.7303C25.3378 132.1853 25.5278 131.4883 26.0738 131.1763L53.9848 115.2413C54.5308 114.9293 55.2278 115.1193 55.5398 115.6653" class="sapIllus_ObjectFillColor"/>
7
+ <path fill="var(--sapIllus_Layering1)" d="M54.5486,115.5911 C54.4396,115.5911 54.3306,115.6191 54.2336,115.6751 L26.3216,131.6111 C26.0166,131.7851 25.9086,132.1771 26.0836,132.4831 L43.1926,162.4471 C43.2776,162.5961 43.4136,162.7021 43.5786,162.7481 C43.7436,162.7911 43.9156,162.769844 44.0646,162.6871 L71.9756,146.7501 C72.2816,146.5751 72.3886,146.1841 72.2136,145.8771 L55.1056,115.9131 C55.0216,115.7651 54.8836,115.6581 54.7186,115.6131 C54.6626,115.5991 54.6056,115.5911 54.5486,115.5911 M43.7506,163.7721 C43.6056,163.7721 43.4596,163.7521 43.3156,163.7121 C42.8936,163.5971 42.5406,163.3241 42.3226,162.9441 L25.2156,132.9791 C24.7676,132.1951 25.0406,131.1921 25.8256,130.7421 L53.7366,114.8071 C54.5216,114.3611 55.5246,114.6321 55.9736,115.4171 L55.9746,115.4171 L73.0826,145.3821 C73.5296,146.1681 73.2556,147.1711 72.4716,147.6191 L44.5606,163.5551 C44.3096,163.6971 44.0316,163.7721 43.7506,163.7721" class="sapIllus_Layering1"/>
8
+ <path fill="var(--sapIllus_Layering2)" d="M42.9529 144.056L47.9339 152.781C48.1129 153.093 48.0039 153.491 47.6919 153.669L45.9429 154.667C45.6309 154.846 45.2329 154.738 45.0549 154.425L40.0729 145.7C39.8939 145.388 40.0039 144.99 40.3149 144.812L42.0639 143.813C42.3769 143.635 42.7739 143.744 42.9529 144.056M49.2019 136.6898L55.7739 148.2008C55.9769 148.5558 55.8529 149.0088 55.4969 149.2128L53.9059 150.1218C53.5509 150.3248 53.0979 150.2008 52.8939 149.8448L46.3219 138.3348C46.1189 137.9788 46.2429 137.5248 46.5979 137.3218L48.1889 136.4138C48.5459 136.2108 48.9989 136.3348 49.2019 136.6898M54.9021 127.8997L63.8001 143.4857C64.0351 143.8957 63.8921 144.4207 63.4811 144.6547L62.0891 145.4487C61.6781 145.6837 61.1551 145.5407 60.9211 145.1287L52.0221 129.5447C51.7871 129.1327 51.9301 128.6097 52.3411 128.3747L53.7321 127.5807C54.1431 127.3447 54.6671 127.4887 54.9021 127.8997" class="sapIllus_Layering2"/>
9
+ <path fill="var(--sapIllus_Layering1)" d="M43.4743,156.472 C43.3283,156.493 43.1793,156.424 43.1023,156.289 C43.0003,156.113 43.0633,155.887 43.2403,155.785 L65.9343,142.828 C66.1113,142.728 66.3373,142.788 66.4383,142.966 C66.5393,143.143 66.4783,143.368 66.3013,143.469 L43.6063,156.427 C43.5643,156.451 43.5193,156.465 43.4743,156.472" class="sapIllus_Layering1"/>
10
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M257.1111,205.3489 L234.7521,205.3489 C234.4751,205.3489 234.2521,205.1249 234.2521,204.8489 C234.2521,204.5729 234.4751,204.3489 234.7521,204.3489 L257.1111,204.3489 C257.3871,204.3489 257.6111,204.5729 257.6111,204.8489 C257.6111,205.1249 257.3871,205.3489 257.1111,205.3489" class="sapIllus_StrokeDetailColor"/>
11
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M185.1238,147.681 C180.3378,141.881 173.6558,135.565 164.3758,128.116 C164.2618,127.981 162.5428,126.584 160.4558,123.93 C159.1788,122.306 159.1778,119.779 160.4498,118.149 C162.5648,115.442 164.3168,114.015 164.4338,113.878 C173.7418,106.395 180.4248,100.079 185.1818,94.313 C189.5878,88.957 192.3598,84.083 194.1108,79.21 C197.0588,71.075 197.1168,62.871 197.1168,52.436 L111.2918,52.436 C111.1758,62.802 111.2918,71.006 114.2388,79.21 C116.0488,84.083 118.8498,88.957 123.2568,94.313 C128.0428,100.114 134.7258,106.429 144.0058,113.878 C144.1168,114.01 145.7628,115.349 147.7858,117.889 C149.1508,119.601 149.1518,122.303 147.7918,124.021 C145.7398,126.615 144.0608,127.983 143.9478,128.116 C134.6388,135.599 127.9558,141.914 123.1988,147.681 C118.7928,153.036 116.0198,157.91 114.2698,162.785 C111.3218,170.919 111.2638,179.122 111.2638,189.558 L197.0898,189.558 C197.2058,179.192 197.0898,170.989 194.1418,162.785 C192.3318,157.91 189.5308,153.036 185.1238,147.681" class="sapIllus_ObjectFillColor"/>
12
+ <path fill="var(--sapIllus_Layering1)" d="M180.5827,173.973 L154.1487,155.524 C153.9077,155.394 153.6327,155.389 153.3887,155.508 L125.3657,173.748 C123.1247,174.76 115.1027,176.156 111.9397,172.745 C111.3087,177.715 111.2657,183.002 111.2647,189.033 L196.7507,189.033 L196.7507,176.055 C196.7507,175.752 196.7507,175.471 196.7477,175.198 C196.6707,174.336 196.5747,173.485 196.4647,172.641 C192.5707,175.693 185.0957,176.133 180.5827,173.973" class="sapIllus_Layering1"/>
13
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M127.8904 152.9525C127.7764 152.9525 127.6614 152.9135 127.5684 152.8345 127.3574 152.6565 127.3294 152.3415 127.5084 152.1305 131.6194 147.2585 134.5544 144.5915 138.8564 141.0955 139.0704 140.9215 139.3844 140.9525 139.5594 141.1675 139.7344 141.3815 139.7014 141.6965 139.4874 141.8705 135.1424 145.4025 132.3564 147.9345 128.2724 152.7745 128.1734 152.8915 128.0324 152.9525 127.8904 152.9525M142.6628 138.72C142.5288 138.72 142.3938 138.666 142.2968 138.56 142.1078 138.358 142.1208 138.041 142.3228 137.854 143.5738 136.694 144.7918 135.588 145.9788 134.533 146.1838 134.35 146.5018 134.366 146.6848 134.574 146.8688 134.781 146.8498 135.097 146.6428 135.281 145.4618 136.33 144.2478 137.432 143.0028 138.586 142.9068 138.676 142.7848 138.72 142.6628 138.72" class="sapIllus_StrokeDetailColor"/>
14
+ <path fill="var(--sapIllus_PatternShadow)" d="M154.2136 108.6292C164.0726 100.4272 180.3446 81.9722 191.3256 56.8872 194.7816 77.0262 171.2706 108.0222 154.2136 108.6292M193.6706 162.9534C192.6806 160.2864 191.4216 157.7134 189.8536 155.1334 182.8866 170.2404 151.7936 185.3484 111.7646 187.4434 111.7646 187.9784 111.7636 188.5154 111.7636 189.0574L196.5956 189.0574C196.7016 178.8074 196.5216 170.8854 193.6706 162.9534" class="sapIllus_PatternShadow"/>
15
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M86.9333 51.9427L221.3333 51.9427C222.7543 51.9427 223.9063 50.7907 223.9063 49.3707L223.9063 40.2217C223.9063 38.8007 222.7543 37.6497 221.3333 37.6497L86.9333 37.6497C85.5123 37.6497 84.3613 38.8007 84.3613 40.2217L84.3613 49.3707C84.3613 50.7907 85.5123 51.9427 86.9333 51.9427M86.9255 204.3499L221.3265 204.3499C222.7465 204.3499 223.8985 203.1989 223.8985 201.7789L223.8985 192.6299C223.8985 191.2089 222.7465 190.0579 221.3265 190.0579L86.9255 190.0579C85.5055 190.0579 84.3545 191.2089 84.3545 192.6299L84.3545 201.7789C84.3545 203.1989 85.5055 204.3499 86.9255 204.3499" class="sapIllus_BrandColorSecondary"/>
16
+ <path fill="var(--sapIllus_Layering2)" d="M107.116 186.2581C104.616 184.7721 103.021 182.5111 103.021 179.9771L102.94 178.9141C102.887 178.1981 102.882 177.4691 102.929 176.7531L105.17 141.6331C105.187 141.3201 105.181 141.0001 105.159 140.6881 105.159 140.6671 105.153 140.6531 105.153 140.6321L105.083 139.9241C105.035 139.4361 104.844 138.9851 104.543 138.6511L104.444 138.5411C103.968 138.2781 103.55 137.8251 103.23 137.2561 102.789 136.4781 102.516 135.4631 102.516 134.3591 102.516 132.2871 103.458 130.5451 104.741 130.0241 104.85 129.9791 104.904 129.8281 104.844 129.7091 104.221 128.4921 103.406 127.5631 102.478 127.0431 104.11 126.0591 105.26 123.7101 105.26 120.9671 105.26 118.2501 104.134 115.9191 102.528 114.9181 103.435 114.3931 104.232 113.4731 104.844 112.2781 104.904 112.1581 104.85 112.0081 104.741 111.9631 103.458 111.4421 102.516 109.6991 102.516 107.6281 102.516 106.5241 102.789 105.5091 103.23 104.7311 103.55 104.1601 103.968 103.7091 104.444 103.4451L104.543 103.3361C104.844 103.0021 105.035 102.5511 105.083 102.0631L105.153 101.3541C105.153 101.3331 105.159 101.3201 105.159 101.2991 105.181 100.9871 105.187 100.6661 105.17 100.3541L102.929 65.2331C102.882 64.5181 102.887 63.7881 102.94 63.0721L103.021 62.0101C103.021 59.4761 104.616 57.2151 107.116 55.7291 107.429 54.7981 107.429 53.8671 107.11 52.9361L94.345 52.9361C94.049 53.8601 94.043 54.7831 94.333 55.7081 94.362 55.7151 94.386 55.7291 94.409 55.7501 96.888 57.2371 98.468 59.4871 98.468 62.0101L98.473 62.0101 98.526 63.3221C98.55 63.9611 98.544 64.6011 98.503 65.2401L96.262 100.3891C96.244 100.6951 96.25 101.0071 96.278 101.3201L96.296 101.5071 96.368 102.1541C96.42 102.6201 96.613 103.0481 96.912 103.3561L96.952 103.3971C97.464 103.6601 97.905 104.1261 98.247 104.7311 98.688 105.5091 98.962 106.5241 98.962 107.6281 98.962 109.6701 98.043 111.3931 96.785 111.9451 96.678 111.9921 96.629 112.1391 96.687 112.2541 97.301 113.4601 98.102 114.3891 99.016 114.9181 97.41 115.9181 96.284 118.2501 96.284 120.9671 96.284 123.7111 97.434 126.0611 99.067 127.0431 98.132 127.5671 97.311 128.5041 96.687 129.7331 96.629 129.8481 96.678 129.9941 96.785 130.0411 98.043 130.5941 98.962 132.3171 98.962 134.3591 98.962 135.4631 98.688 136.4781 98.247 137.2561 97.905 137.8601 97.464 138.3251 96.952 138.5901L96.912 138.6311C96.613 138.9391 96.42 139.3651 96.368 139.8321L96.296 140.4801 96.278 140.6671C96.25 140.9801 96.244 141.2921 96.262 141.5981L98.503 176.7461C98.544 177.3851 98.55 178.0251 98.526 178.6641L98.473 179.9771 98.468 179.9771C98.468 182.4991 96.888 184.7501 94.409 186.2371 94.386 186.2581 94.362 186.2721 94.333 186.2791 94.043 187.2021 94.049 188.1271 94.345 189.0511L107.11 189.0511C107.429 188.1191 107.429 187.1891 107.116 186.2581M213.2224 186.2581C210.7224 184.7721 209.1274 182.5111 209.1274 179.9771L209.0464 178.9141C208.9944 178.1981 208.9884 177.4691 209.0354 176.7531L211.2774 141.6331C211.2944 141.3201 211.2884 141.0001 211.2654 140.6881 211.2654 140.6671 211.2594 140.6531 211.2594 140.6321L211.1894 139.9241C211.1414 139.4361 210.9504 138.9851 210.6494 138.6511L210.5504 138.5411C210.0754 138.2781 209.6564 137.8251 209.3364 137.2561 208.8954 136.4781 208.6224 135.4631 208.6224 134.3591 208.6224 132.2871 209.5644 130.5451 210.8474 130.0241 210.9574 129.9791 211.0104 129.8281 210.9504 129.7091 210.3274 128.4921 209.5124 127.5631 208.5844 127.0431 210.2164 126.0591 211.3664 123.7101 211.3664 120.9671 211.3664 118.2501 210.2404 115.9191 208.6344 114.9181 209.5414 114.3931 210.3384 113.4731 210.9504 112.2781 211.0104 112.1581 210.9574 112.0081 210.8474 111.9631 209.5644 111.4421 208.6224 109.6991 208.6224 107.6281 208.6224 106.5241 208.8954 105.5091 209.3364 104.7311 209.6564 104.1601 210.0754 103.7091 210.5504 103.4451L210.6494 103.3361C210.9504 103.0021 211.1414 102.5511 211.1894 102.0631L211.2594 101.3541C211.2594 101.3331 211.2654 101.3201 211.2654 101.2991 211.2884 100.9871 211.2944 100.6661 211.2774 100.3541L209.0354 65.2331C208.9884 64.5181 208.9944 63.7881 209.0464 63.0721L209.1274 62.0101C209.1274 59.4761 210.7224 57.2151 213.2224 55.7291 213.5354 54.7981 213.5354 53.8671 213.2164 52.9361L200.4514 52.9361C200.1554 53.8601 200.1494 54.7831 200.4394 55.7081 200.4684 55.7151 200.4924 55.7291 200.5154 55.7501 202.9944 57.2371 204.5754 59.4871 204.5754 62.0101L204.5804 62.0101 204.6324 63.3221C204.6564 63.9611 204.6504 64.6011 204.6094 65.2401L202.3684 100.3891C202.3504 100.6951 202.3564 101.0071 202.3844 101.3201L202.4024 101.5071 202.4744 102.1541C202.5264 102.6201 202.7194 103.0481 203.0184 103.3561L203.0584 103.3971C203.5704 103.6601 204.0114 104.1261 204.3544 104.7311 204.7944 105.5091 205.0684 106.5241 205.0684 107.6281 205.0684 109.6701 204.1494 111.3931 202.8914 111.9451 202.7844 111.9921 202.7354 112.1391 202.7934 112.2541 203.4074 113.4601 204.2084 114.3891 205.1224 114.9181 203.5174 115.9181 202.3914 118.2501 202.3914 120.9671 202.3914 123.7111 203.5404 126.0611 205.1734 127.0431 204.2394 127.5671 203.4184 128.5041 202.7934 129.7331 202.7354 129.8481 202.7844 129.9941 202.8914 130.0411 204.1494 130.5941 205.0684 132.3171 205.0684 134.3591 205.0684 135.4631 204.7944 136.4781 204.3544 137.2561 204.0114 137.8601 203.5704 138.3251 203.0584 138.5901L203.0184 138.6311C202.7194 138.9391 202.5264 139.3651 202.4744 139.8321L202.4024 140.4801 202.3844 140.6671C202.3564 140.9801 202.3504 141.2921 202.3684 141.5981L204.6094 176.7461C204.6504 177.3851 204.6564 178.0251 204.6324 178.6641L204.5804 179.9771 204.5754 179.9771C204.5754 182.4991 202.9944 184.7501 200.5154 186.2371 200.4924 186.2581 200.4684 186.2721 200.4394 186.2791 200.1494 187.2021 200.1554 188.1271 200.4514 189.0511L213.2164 189.0511C213.5354 188.1191 213.5354 187.1891 213.2224 186.2581" class="sapIllus_Layering2"/>
17
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M196.5954 189.0579L111.7634 189.0579C111.7644 179.4019 111.8144 171.0299 114.7404 162.9539 116.5694 157.8629 119.3794 153.1109 123.5844 147.9989 128.3184 142.2609 135.0814 135.8839 144.3164 128.4539 144.3404 128.4289 144.3924 128.3819 144.4684 128.3139 144.9584 127.8699 146.4514 126.5199 148.1834 124.3309 149.6864 122.4329 149.6834 119.4669 148.1764 117.5779 146.4784 115.4459 145.0634 114.1659 144.5314 113.6849 144.4524 113.6139 144.3994 113.5669 144.3194 113.4889 135.1674 106.1429 128.4054 99.7669 123.6424 93.9949 119.4404 88.8889 116.6014 84.1349 114.7094 79.0409 111.8604 71.1099 111.6794 63.1869 111.7854 52.9359L196.617095 52.9359C196.617095 62.5919 196.5664 70.9639 193.6404 79.0409 191.8114 84.1319 189.0004 88.8839 184.7954 93.9949 180.0624 99.7329 173.2994 106.1089 164.0644 113.5409 164.0394 113.5659 163.9874 113.6129 163.9094 113.6829 163.3994 114.1449 161.8454 115.5499 160.0554 117.8409 158.6524 119.6389 158.6554 122.4499 160.0634 124.2389 161.8244 126.4799 163.3504 127.8579 163.8524 128.3109 163.9294 128.3809 163.9824 128.4279 164.0634 128.5049 173.2084 135.8469 179.9714 142.2239 184.7384 147.9979 188.9404 153.1059 191.7794 157.8589 193.6704 162.9539 196.5214 170.8849 196.7014 178.8069 196.5954 189.0579M216.6024 189.0579L197.5944 189.0579C197.7024 178.7089 197.5164 170.6989 194.6104 162.6109 192.6764 157.4039 189.7844 152.5589 185.5094 147.3639L185.5094 147.3629C180.6994 141.5339 173.8884 135.1109 164.7574 127.7919 164.7334 127.7639 164.6544 127.6879 164.5224 127.5689 164.0364 127.1299 162.5584 125.7939 160.8484 123.6199 159.7124 122.1769 159.7104 119.9089 160.8434 118.4559 162.5804 116.2339 164.0864 114.8709 164.5804 114.4239 164.6884 114.3269 164.7604 114.2579 164.7584 114.2579 173.9864 106.8389 180.7924 100.4189 185.5674 94.6299 189.7894 89.4989 192.7384 84.5099 194.5804 79.3799 197.5664 71.1419 197.6164 62.6849 197.6164 52.9359L216.6024 52.9359C216.8784 52.9359 217.1024 52.7119 217.1024 52.4359 217.1024 52.1599 216.8784 51.9359 216.6024 51.9359L197.1164 51.9359 111.2914 51.9359 91.6764 51.9359C91.4004 51.9359 91.1764 52.1599 91.1764 52.4359 91.1764 52.7119 91.4004 52.9359 91.6764 52.9359L110.7864 52.9359C110.6784 63.2859 110.8654 71.2959 113.7704 79.3839 115.7034 84.5909 118.5954 89.4359 122.8704 94.6309 127.6774 100.4559 134.4884 106.8799 143.6234 114.2009 143.6484 114.2299 143.7274 114.3059 143.8604 114.4259 144.3764 114.8929 145.7464 116.1319 147.3954 118.2009 148.6234 119.7419 148.6254 122.1619 147.3994 123.7099 145.7194 125.8339 144.2734 127.1419 143.7974 127.5729 143.6924 127.6679 143.6204 127.7359 143.6224 127.7359 134.3954 135.1539 127.5884 141.5739 122.8134 147.3639 118.5904 152.4949 115.6424 157.4839 113.7994 162.6149 110.8144 170.8519 110.7644 179.3089 110.7634 189.0579L91.6764 189.0579C91.4004 189.0579 91.1764 189.2819 91.1764 189.5579 91.1764 189.8339 91.4004 190.0579 91.6764 190.0579L111.2634 190.0579 197.0894 190.0579 216.6024 190.0579C216.8784 190.0579 217.1024 189.8339 217.1024 189.5579 217.1024 189.2819 216.8784 189.0579 216.6024 189.0579M229.9177 205.3489L72.3207 205.3489C72.0447 205.3489 71.8207 205.1249 71.8207 204.8489 71.8207 204.5729 72.0447 204.3489 72.3207 204.3489L229.9177 204.3489C230.1937 204.3489 230.4177 204.5729 230.4177 204.8489 230.4177 205.1249 230.1937 205.3489 229.9177 205.3489" class="sapIllus_StrokeDetailColor"/>
18
+ </svg>`;
@@ -0,0 +1,17 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" id="tnt-Scene-SessionExpiring">
2
+ <path fill="var(--sapIllus_BackgroundColor)" d="M270.6033,107.7138 C262.4093,100.8958 252.9533,95.0428 242.1053,92.1008 C234.4343,89.8748 229.3923,89.0248 226.1803,88.8958 C225.5753,88.8918 224.9723,88.8958 224.3683,88.8958 C223.9863,88.8968 223.6163,88.8798 223.2553,88.8488 C233.5593,81.1688 239.6523,68.8998 239.6443,55.8438 C239.6443,33.2858 221.7973,14.9998 199.7843,14.9998 L79.5083,14.9998 C57.4953,14.9998 39.6483,33.2858 39.6483,55.8438 C39.6483,78.4018 57.4953,96.6878 79.5083,96.6878 L82.3133,96.6878 C53.7943,106.4088 31.4993,127.9558 31.6029376,158.3228 C31.6733,179.0758 42.6133,199.2058 60.8933,211.6148 C80.8733,225.1778 106.5783,225.0658 130.3903,225.0328 C149.7353,225.0078 169.0793,225.1568 188.4223,225.0218 C206.7623,224.8938 213.8783,225.8268 232.0573,223.2668 C267.6913,218.2478 294.9463,190.6568 294.832656,157.3388 C294.7693,138.6878 285.6893,120.2668 270.6033,107.7138" class="sapIllus_BackgroundColor"/>
3
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M185.1248,147.6816 C180.3388,141.8806 173.6568,135.5646 164.3768,128.1156 C164.2628,127.9816 162.5438,126.5836 160.4568,123.9306 C159.1798,122.3056 159.1788,119.7786 160.4508,118.1496 C162.5658,115.4416 164.3178,114.0146 164.4348,113.8786 C173.7428,106.3956 180.4258,100.0796 185.1828,94.3126 C189.5888,88.9576 192.3608,84.0836 194.1118,79.2096 C197.0598,71.0746 197.1178,62.8706 197.1178,52.4366 L111.2928,52.4366 C111.1768,62.8026 111.2928,71.0056 114.2398,79.2096 C116.0498,84.0836 118.8508,88.9576 123.2578,94.3126 C128.0438,100.1136 134.7268,106.4296 144.0068,113.8786 C144.1178,114.0096 145.7638,115.3486 147.7868,117.8886 C149.1518,119.6016 149.1528,122.3026 147.7928,124.0216 C145.7408,126.6146 144.0618,127.9826 143.9488,128.1156 C134.6398,135.5986 127.9568,141.9136 123.1998,147.6816 C118.7938,153.0356 116.0208,157.9106 114.2708,162.7846 C111.3228,170.9196 111.2648,179.1226 111.2648,189.5576 L197.0908,189.5576 C197.2068,179.1916 197.0908,170.9886 194.1428,162.7846 C192.3328,157.9106 189.5318,153.0356 185.1248,147.6816" class="sapIllus_ObjectFillColor"/>
4
+ <path fill="var(--sapIllus_AccentColor)" d="M196.7488,175.1982 C196.6718,174.3362 196.5758,173.4842 196.4658,172.6402 C192.5718,175.6932 185.0968,176.1332 180.5838,173.9732 L154.2188,155.5712 L154.2188,120.6302 C155.1458,118.4992 156.3078,116.6592 157.5118,115.1422 C157.5708,115.0682 157.5118,114.9702 157.4098,114.9692 L150.0278,114.9082 C149.9258,114.9082 149.8648,115.0072 149.9248,115.0822 C151.1248,116.5842 152.2848,118.4092 153.2188,120.5202 L153.2188,155.6192 L125.3668,173.7482 C123.1258,174.7612 115.1028,176.1562 111.9408,172.7462 C111.3098,177.7152 111.2668,183.0032 111.2658,189.0332 L196.7518,189.0332 L196.7518,176.0542 C196.7518,175.7522 196.7518,175.4712 196.7488,175.1982" class="sapIllus_AccentColor"/>
5
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M271.5291,176.371 L246.3911,169.767 C246.0251,169.671 245.8061,169.296 245.9021,168.93 L252.5061,143.792 C252.6021,143.426 252.9771,143.207 253.3431,143.303 L278.4811,149.906 C278.8471,150.003 279.0661,150.378 278.9701,150.744 L272.3671,175.882 C272.2701,176.248 271.8951,176.467 271.5291,176.371" class="sapIllus_ObjectFillColor"/>
6
+ <path fill="var(--sapIllus_Layering1)" d="M271.6561,175.8876 C271.7561,175.9146 271.8571,175.8546 271.8841,175.7546 L278.4871,150.6166 C278.5131,150.5176 278.4541,150.4156 278.3541,150.3896 L253.2171,143.7856 C253.1181,143.7636 253.0151,143.8216 252.9901,143.9186 L246.3851,169.0566 C246.3601,169.1566 246.4201,169.2576 246.5181,169.2836 L271.6561,175.8876 Z M271.7061,176.8936 C271.6041,176.8936 271.5031,176.8806 271.4021,176.8546 L246.2641,170.2506 C245.9581,170.1706 245.7011,169.9756 245.5421,169.7016 C245.3821,169.4286 245.3391,169.1096 245.4191,168.8026 L252.0231,143.6646 C252.1891,143.0336 252.8351,142.6516 253.4701,142.8196 L278.6081,149.4226 C279.2411,149.5886 279.6211,150.2386 279.4541,150.8706 L272.8501,176.0086 C272.7701,176.3156 272.5751,176.5726 272.3021,176.7316 C272.1171,176.8386 271.9131,176.8936 271.7061,176.8936 L271.7061,176.8936 Z" class="sapIllus_Layering1"/>
7
+ <path fill="var(--sapIllus_Layering2)" d="M271.4852 171.9413L268.2272 162.6823C268.0812 162.2643 267.5582 162.1283 267.2252 162.4193L263.2532 165.8933 260.2742 155.5023C260.1342 155.0143 259.5242 154.8543 259.1642 155.2103L248.3762 165.8373C248.0062 166.2003 248.1732 166.8273 248.6742 166.9593L260.0902 169.9583 261.3462 170.2883 263.6342 170.8883 270.7352 172.7533C271.2202 172.8813 271.6512 172.4153 271.4852 171.9413M274.1668 155.0732C273.8148 156.4082 272.4488 157.2062 271.1138 156.8552 269.7788 156.5052 268.9808 155.1382 269.3318 153.8022 269.6828 152.4682 271.0488 151.6702 272.3838 152.0202 273.7198 152.3712 274.5178 153.7382 274.1668 155.0732M258.3855 82.9687C256.4275 80.5097 253.6305 78.9587 250.5065 78.6037 247.3885 78.2527 244.3085 79.1297 241.8475 81.0877 239.3885 83.0457 237.8375 85.8427 237.4825 88.9667 237.1265 92.0907 238.0095 95.1657 239.9665 97.6257 241.9245 100.0847 244.7225 101.6357 247.8465 101.9907 248.0315 102.0127 248.2165 102.0297 248.4025 102.0407 251.3315 102.2387 254.1905 101.3477 256.5045 99.5067 258.9635 97.5487 260.5145 94.7507 260.8695 91.6267 261.2255 88.5037 260.3435 85.4287 258.3855 82.9687" class="sapIllus_Layering2"/>
8
+ <path fill="var(--sapIllus_ObjectFillColor)" d="M252.4197 88.1747C252.2267 89.8747 250.6907 91.0957 248.9917 90.9027 247.2927 90.7087 246.0707 89.1747 246.2647 87.4747 246.4577 85.7757 247.9927 84.5547 249.6917 84.7477 251.3917 84.9417 252.6127 86.4757 252.4197 88.1747M249.5369 91.3622L249.0829 91.3102C245.9979 90.9602 243.1899 92.9522 242.4279 95.8712 242.3199 96.2822 242.4189 96.7322 242.7219 97.0302 244.1959 98.4792 246.1419 99.4692 248.3549 99.7212 250.5689 99.9732 252.6879 99.4452 254.4509 98.3642 254.8119 98.1412 255.0099 97.7262 254.9969 97.3012 254.9099 94.2852 252.6219 91.7142 249.5369 91.3622M55.5408 115.666L72.6488 145.63C72.9608 146.177 72.7698 146.873 72.2248 147.185L44.3128 163.12C43.7678 163.433 43.0708 163.242 42.7588 162.696L25.6508 132.731C25.3388 132.185 25.5288 131.488 26.0748 131.177L53.9858 115.241C54.5318 114.929 55.2288 115.119 55.5408 115.666" class="sapIllus_ObjectFillColor"/>
9
+ <path fill="var(--sapIllus_Layering1)" d="M54.5496,115.5908 C54.4406,115.5908 54.3316,115.6188 54.2346,115.6748 L26.3226,131.6118 C26.1746,131.6948 26.0686,131.8328 26.0236,131.9968 C25.9786,132.1618 26.0007783,132.3348 26.0856,132.4838 L43.1936,162.4478 C43.2776,162.5968 43.4146,162.7028 43.5796,162.7478 C43.7446,162.7888 43.9166,162.7708 44.0656,162.6868 L71.9766,146.7498 C72.2826,146.5748 72.3896,146.1838 72.2146,145.8768 L55.1066,115.9138 C55.0216,115.7658 54.8846,115.6588 54.7196,115.6128 C54.6626,115.5988 54.6066,115.5908 54.5496,115.5908 M43.7506,163.7708 C43.1816,163.7708 42.6276,163.4738 42.3246,162.9448 L25.2166,132.9798 C24.9996,132.5998 24.9436,132.1568 25.0586,131.7348 C25.1746,131.3118 25.4466,130.9588 25.8266,130.7418 L53.7376,114.8068 C54.1176,114.5898 54.5596,114.5298 54.9836,114.6498 C55.4046,114.7648 55.7576,115.0368 55.9756,115.4178 L73.0836,145.3818 C73.5306,146.1678 73.2566,147.1708 72.4726,147.6188 L44.5616,163.5548 C44.3056,163.6998 44.0266,163.7708 43.7506,163.7708" class="sapIllus_Layering1"/>
10
+ <path fill="var(--sapIllus_Layering2)" d="M42.9539 144.0556L47.9349 152.7816C48.1139 153.0926 48.0049 153.4916 47.6929 153.6686L45.9439 154.6676C45.6319 154.8456 45.2339 154.7376 45.0559 154.4246L40.0739 145.7006C39.8949 145.3876 40.0049 144.9906 40.3159 144.8116L42.0649 143.8136C42.3779 143.6346 42.7749 143.7436 42.9539 144.0556M49.2029 136.6904L55.7749 148.2004C55.9779 148.5564 55.8539 149.0094 55.4979 149.2124L53.9069 150.1214C53.5519 150.3244 53.0989 150.2004 52.8949 149.8444L46.3229 138.3344C46.1199 137.9784 46.2439 137.5254 46.5989 137.3224L48.1899 136.4144C48.5469 136.2104 48.9999 136.3344 49.2029 136.6904M54.9031 127.8994L63.8011 143.4854C64.0361 143.8964 63.8931 144.4204 63.4821 144.6544L62.0901 145.4494C61.6791 145.6834 61.1561 145.5414 60.9221 145.1294L52.0231 129.5444C51.7881 129.1324 51.9311 128.6094 52.3421 128.3754L53.7331 127.5804C54.1441 127.3454 54.6681 127.4884 54.9031 127.8994" class="sapIllus_Layering2"/>
11
+ <path fill="var(--sapIllus_Layering1)" d="M43.4754,156.4716 C43.3294,156.4926 43.1804,156.4246 43.1034,156.2896 C43.0014,156.1126 43.0644,155.8866 43.2414,155.7856 L65.9354,142.8276 C66.1124,142.7276 66.3384,142.7886 66.4394,142.9656 C66.5404,143.1436 66.4794,143.3676 66.3024,143.4696 L43.6074,156.4266 C43.5654,156.4506 43.5204,156.4656 43.4754,156.4716" class="sapIllus_Layering1"/>
12
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M257.1121 205.3486L234.7531 205.3486C234.4761 205.3486 234.2531 205.1246 234.2531 204.8486 234.2531 204.5726 234.4761 204.3486 234.7531 204.3486L257.1121 204.3486C257.3881 204.3486 257.6121 204.5726 257.6121 204.8486 257.6121 205.1246 257.3881 205.3486 257.1121 205.3486M127.8914 152.9521C127.7774 152.9521 127.6624 152.9131 127.5694 152.8341 127.3584 152.6561 127.3304 152.3411 127.5094 152.1301 131.6204 147.2581 134.5554 144.5911 138.8574 141.0951 139.0714 140.9211 139.3854 140.9521 139.5604 141.1671 139.7354 141.3811 139.7024 141.6961 139.4884 141.8701 135.1434 145.4021 132.3574 147.9341 128.2734 152.7741 128.1744 152.8911 128.0334 152.9521 127.8914 152.9521M142.6639 138.7197C142.5299 138.7197 142.3949 138.6657 142.2979 138.5597 142.1089 138.3577 142.1219 138.0407 142.3239 137.8537 143.5749 136.6937 144.7929 135.5877 145.9799 134.5327 146.1849 134.3497 146.5029 134.3657 146.6859 134.5737 146.8699 134.7807 146.8509 135.0967 146.6439 135.2807 145.4629 136.3297 144.2489 137.4317 143.0039 138.5857 142.9079 138.6757 142.7859 138.7197 142.6639 138.7197" class="sapIllus_StrokeDetailColor"/>
13
+ <path fill="var(--sapIllus_PatternShadow)" d="M154.2146 108.6288C164.0736 100.4268 180.3456 81.9718 191.3266 56.8878 194.7826 77.0258 171.2716 108.0228 154.2146 108.6288M193.6717 162.9531C192.6817 160.2861 191.4227 157.7131 189.8547 155.1331 182.8877 170.2411 151.7947 185.3481 111.7657 187.4441 111.7657 187.9781 111.7647 188.5151 111.7647 189.0571L196.5967 189.0571C196.7027 178.8071 196.5227 170.8851 193.6717 162.9531" class="sapIllus_PatternShadow"/>
14
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M86.9344 51.9423L221.3344 51.9423C222.7554 51.9423 223.9074 50.7913 223.9074 49.3703L223.9074 40.2213C223.9074 38.8013 222.7554 37.6503 221.3344 37.6503L86.9344 37.6503C85.5134 37.6503 84.3624 38.8013 84.3624 40.2213L84.3624 49.3703C84.3624 50.7913 85.5134 51.9423 86.9344 51.9423M86.9266 204.3505L221.3276 204.3505C222.7476 204.3505 223.8996 203.1995 223.8996 201.7785L223.8996 192.6295C223.8996 191.2085 222.7476 190.0575 221.3276 190.0575L86.9266 190.0575C85.5066 190.0575 84.3556 191.2085 84.3556 192.6295L84.3556 201.7785C84.3556 203.1995 85.5066 204.3505 86.9266 204.3505" class="sapIllus_BrandColorSecondary"/>
15
+ <path fill="var(--sapIllus_Layering2)" d="M107.117 186.2578C104.617 184.7718 103.022 182.5108 103.022 179.9778L102.941 178.9138C102.888 178.1978 102.883 177.4688 102.93 176.7528L105.171 141.6328C105.188 141.3198 105.182 141.0008 105.16 140.6878 105.16 140.6668 105.154 140.6538 105.154 140.6318L105.084 139.9238C105.036 139.4358 104.845 138.9848 104.544 138.6508L104.445 138.5408C103.969 138.2778 103.551 137.8248 103.231 137.2558 102.79 136.4778 102.517 135.4628 102.517 134.3588 102.517 132.2868 103.459 130.5448 104.742 130.0238 104.851 129.9788 104.905 129.8278 104.845 129.7088 104.222 128.4918 103.407 127.5628 102.479 127.0428 104.111 126.0598 105.261 123.7098 105.261 120.9668 105.261 118.2498 104.135 115.9188 102.529 114.9178 103.436 114.3928 104.233 113.4728 104.845 112.2778 104.905 112.1588 104.851 112.0078 104.742 111.9628 103.459 111.4418 102.517 109.6988 102.517 107.6278 102.517 106.5238 102.79 105.5088 103.231 104.7308 103.551 104.1608 103.969 103.7088 104.445 103.4448L104.544 103.3358C104.845 103.0018 105.036 102.5508 105.084 102.0628L105.154 101.3548C105.154 101.3328 105.16 101.3198 105.16 101.2988 105.182 100.9868 105.188 100.6658 105.171 100.3538L102.93 65.2338C102.883 64.5178 102.888 63.7878 102.941 63.0718L103.022 62.0098C103.022 59.4758 104.617 57.2158 107.117 55.7288 107.43 54.7978 107.43 53.8668 107.111 52.9358L94.346 52.9358C94.05 53.8598 94.044 54.7838 94.334 55.7078 94.363 55.7148 94.387 55.7288 94.41 55.7498 96.889 57.2368 98.469 59.4868 98.469 62.0098L98.474 62.0098 98.527 63.3218C98.551 63.9618 98.545 64.6008 98.504 65.2398L96.263 100.3888C96.245 100.6948 96.251 101.0068 96.279 101.3198L96.297 101.5068 96.369 102.1538C96.421 102.6198 96.614 103.0478 96.913 103.3558L96.953 103.3968C97.465 103.6608 97.906 104.1258 98.248 104.7308 98.689 105.5088 98.963 106.5238 98.963 107.6278 98.963 109.6698 98.044 111.3938 96.786 111.9448 96.679 111.9918 96.63 112.1398 96.688 112.2548 97.302 113.4598 98.103 114.3888 99.017 114.9178 97.411 115.9188 96.285 118.2498 96.285 120.9668 96.285 123.7108 97.435 126.0608 99.068 127.0438 98.133 127.5678 97.312 128.5048 96.688 129.7328 96.63 129.8478 96.679 129.9938 96.786 130.0408 98.044 130.5938 98.963 132.3168 98.963 134.3588 98.963 135.4628 98.689 136.4778 98.248 137.2558 97.906 137.8608 97.465 138.3248 96.953 138.5898L96.913 138.6318C96.614 138.9388 96.421 139.3658 96.369 139.8328L96.297 140.4798 96.279 140.6668C96.251 140.9798 96.245 141.2918 96.263 141.5978L98.504 176.7458C98.545 177.3858 98.551 178.0248 98.527 178.6638L98.474 179.9778 98.469 179.9778C98.469 182.4988 96.889 184.7498 94.41 186.2368 94.387 186.2578 94.363 186.2718 94.334 186.2788 94.044 187.2018 94.05 188.1268 94.346 189.0508L107.111 189.0508C107.43 188.1198 107.43 187.1888 107.117 186.2578M213.2234 186.2578C210.7234 184.7718 209.1284 182.5108 209.1284 179.9778L209.0474 178.9138C208.9954 178.1978 208.9894 177.4688 209.0364 176.7528L211.2784 141.6328C211.2954 141.3198 211.2894 141.0008 211.2664 140.6878 211.2664 140.6668 211.2604 140.6538 211.2604 140.6318L211.1904 139.9238C211.1424 139.4358 210.9514 138.9848 210.6504 138.6508L210.5514 138.5408C210.0764 138.2778 209.6574 137.8248 209.3374 137.2558 208.8964 136.4778 208.6234 135.4628 208.6234 134.3588 208.6234 132.2868 209.5654 130.5448 210.8484 130.0238 210.9584 129.9788 211.0114 129.8278 210.9514 129.7088 210.3284 128.4918 209.5134 127.5628 208.5854 127.0428 210.2174 126.0598 211.3674 123.7098 211.3674 120.9668 211.3674 118.2498 210.2414 115.9188 208.6354 114.9178 209.5424 114.3928 210.3394 113.4728 210.9514 112.2778 211.0114 112.1588 210.9584 112.0078 210.8484 111.9628 209.5654 111.4418 208.6234 109.6988 208.6234 107.6278 208.6234 106.5238 208.8964 105.5088 209.3374 104.7308 209.6574 104.1608 210.0764 103.7088 210.5514 103.4448L210.6504 103.3358C210.9514 103.0018 211.1424 102.5508 211.1904 102.0628L211.2604 101.3548C211.2604 101.3328 211.2664 101.3198 211.2664 101.2988 211.2894 100.9868 211.2954 100.6658 211.2784 100.3538L209.0364 65.2338C208.9894 64.5178 208.9954 63.7878 209.0474 63.0718L209.1284 62.0098C209.1284 59.4758 210.7234 57.2158 213.2234 55.7288 213.5364 54.7978 213.5364 53.8668 213.2174 52.9358L200.4524 52.9358C200.1564 53.8598 200.1504 54.7838 200.4404 55.7078 200.4694 55.7148 200.4934 55.7288 200.5164 55.7498 202.9954 57.2368 204.5764 59.4868 204.5764 62.0098L204.5814 62.0098 204.6334 63.3218C204.6574 63.9618 204.6514 64.6008 204.6104 65.2398L202.3694 100.3888C202.3514 100.6948 202.3574 101.0068 202.3854 101.3198L202.4034 101.5068 202.4754 102.1538C202.5274 102.6198 202.7204 103.0478 203.0194 103.3558L203.0594 103.3968C203.5714 103.6608 204.0124 104.1258 204.3554 104.7308 204.7954 105.5088 205.0694 106.5238 205.0694 107.6278 205.0694 109.6698 204.1504 111.3938 202.8924 111.9448 202.7854 111.9918 202.7364 112.1398 202.7944 112.2548 203.4084 113.4598 204.2094 114.3888 205.1234 114.9178 203.5184 115.9188 202.3924 118.2498 202.3924 120.9668 202.3924 123.7108 203.5414 126.0608 205.1744 127.0438 204.2404 127.5678 203.4194 128.5048 202.7944 129.7328 202.7364 129.8478 202.7854 129.9938 202.8924 130.0408 204.1504 130.5938 205.0694 132.3168 205.0694 134.3588 205.0694 135.4628 204.7954 136.4778 204.3554 137.2558 204.0124 137.8608 203.5714 138.3248 203.0594 138.5898L203.0194 138.6318C202.7204 138.9388 202.5274 139.3658 202.4754 139.8328L202.4034 140.4798 202.3854 140.6668C202.3574 140.9798 202.3514 141.2918 202.3694 141.5978L204.6104 176.7458C204.6514 177.3858 204.6574 178.0248 204.6334 178.6638L204.5814 179.9778 204.5764 179.9778C204.5764 182.4988 202.9954 184.7498 200.5164 186.2368 200.4934 186.2578 200.4694 186.2718 200.4404 186.2788 200.1504 187.2018 200.1564 188.1268 200.4524 189.0508L213.2174 189.0508C213.5364 188.1198 213.5364 187.1888 213.2234 186.2578" class="sapIllus_Layering2"/>
16
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M196.5965 189.0576L111.7645 189.0576C111.7655 179.4016 111.8155 171.0296 114.7415 162.9536 116.5705 157.8626 119.3805 153.1106 123.5855 147.9986 128.3195 142.2606 135.0825 135.8836 144.3175 128.4536 144.3415 128.4286 144.3935 128.3816 144.4695 128.3136 144.9595 127.8696 146.4525 126.5196 148.1845 124.3306 149.6875 122.4326 149.6845 119.4666 148.1775 117.5776 146.4795 115.4456 145.0645 114.1656 144.5325 113.6846 144.4535 113.6136 144.4005 113.5666 144.3205 113.4886 135.1685 106.1426 128.4065 99.7666 123.6435 93.9946 119.4415 88.8886 116.6025 84.1346 114.7105 79.0406 111.8615 71.1096 111.6805 63.1866 111.7865 52.9356L196.618195 52.9356C196.618195 62.5916 196.5675 70.9636 193.6415 79.0406 191.8125 84.1316 189.0015 88.8836 184.7965 93.9946 180.0635 99.7326 173.3005 106.1086 164.0655 113.5406 164.0405 113.5656 163.9885 113.6126 163.9105 113.6826 163.4005 114.1446 161.8465 115.5496 160.0565 117.8406 158.6535 119.6386 158.6565 122.4496 160.0645 124.2386 161.8255 126.4796 163.3515 127.8576 163.8535 128.3106 163.9305 128.3806 163.9835 128.4276 164.0645 128.5046 173.2095 135.8466 179.9725 142.2236 184.7395 147.9976 188.9415 153.1056 191.7805 157.8586 193.6715 162.9536 196.5225 170.8846 196.7025 178.8066 196.5965 189.0576M216.6035 189.0576L197.5955 189.0576C197.7035 178.7096 197.5175 170.6986 194.6115 162.6106 192.6775 157.4036 189.7855 152.5586 185.5105 147.3636L185.5105 147.3626C180.7005 141.5336 173.8895 135.1106 164.7585 127.7916 164.7345 127.7636 164.6555 127.6876 164.5235 127.5686 164.0375 127.1296 162.5595 125.7936 160.8495 123.6196 159.7135 122.1766 159.7115 119.9086 160.8445 118.4556 162.5815 116.2336 164.0875 114.8706 164.5815 114.4236 164.6895 114.3266 164.7615 114.2576 164.7595 114.2576 173.9875 106.8386 180.7935 100.4186 185.5685 94.6296 189.7905 89.4986 192.7395 84.5096 194.5815 79.3796 197.5675 71.1416 197.6175 62.6846 197.6175 52.9356L216.6035 52.9356C216.8795 52.9356 217.1035 52.7116 217.1035 52.4356 217.1035 52.1596 216.8795 51.9356 216.6035 51.9356L197.1175 51.9356 111.2925 51.9356 91.6775 51.9356C91.4015 51.9356 91.1775 52.1596 91.1775 52.4356 91.1775 52.7116 91.4015 52.9356 91.6775 52.9356L110.7875 52.9356C110.6795 63.2856 110.8665 71.2956 113.7715 79.3836 115.7045 84.5906 118.5965 89.4356 122.8715 94.6306 127.6785 100.4556 134.4895 106.8796 143.6245 114.2006 143.6495 114.2296 143.7285 114.3056 143.8615 114.4256 144.3775 114.8926 145.7475 116.1316 147.3965 118.2006 148.6245 119.7416 148.6265 122.1616 147.4005 123.7096 145.7205 125.8336 144.2745 127.1416 143.7985 127.5726 143.6935 127.6676 143.6215 127.7356 143.6235 127.7356 134.3965 135.1536 127.5895 141.5736 122.8145 147.3636 118.5915 152.4946 115.6435 157.4836 113.8005 162.6146 110.8155 170.8516 110.7655 179.3086 110.7645 189.0576L91.6775 189.0576C91.4015 189.0576 91.1775 189.2816 91.1775 189.5576 91.1775 189.8336 91.4015 190.0576 91.6775 190.0576L111.2645 190.0576 197.0905 190.0576 216.6035 190.0576C216.8795 190.0576 217.1035 189.8336 217.1035 189.5576 217.1035 189.2816 216.8795 189.0576 216.6035 189.0576M229.9187 205.3486L72.3217 205.3486C72.0457 205.3486 71.8217 205.1246 71.8217 204.8486 71.8217 204.5726 72.0457 204.3486 72.3217 204.3486L229.9187 204.3486C230.1947 204.3486 230.4187 204.5726 230.4187 204.8486 230.4187 205.1246 230.1947 205.3486 229.9187 205.3486" class="sapIllus_StrokeDetailColor"/>
17
+ </svg>`;
@@ -0,0 +1,39 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" fill="none" xmlns="http://www.w3.org/2000/svg" id="tnt-Scene-Settings">
2
+ <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)"/>
3
+ <path d="M38.5019 181.691C38.5019 180.333 34.5592 179.246 29.2911 178.999C28.9899 173.737 27.8303 169.825 26.4718 169.828C25.1134 169.831 23.9839 173.773 23.6948 179.062C18.4117 179.423 14.4839 180.604 14.502 181.965C14.5201 183.326 18.4448 184.414 23.7128 184.658C24.0291 189.919 25.1737 193.831 26.5291 193.828C27.8845 193.825 29.02 189.883 29.3092 184.594C34.5923 184.233 38.517 183.052 38.5019 181.691Z" fill="var(--sapContent_Illustrative_Color18)"/>
4
+ <path d="M293.434 192.616C293.434 191.711 290.805 190.986 287.293 190.821C287.092 187.314 286.319 184.706 285.414 184.708C284.508 184.71 283.755 187.338 283.562 190.863C280.04 191.104 277.422 191.891 277.434 192.799C277.446 193.706 280.062 194.431 283.574 194.594C283.785 198.101 284.548 200.71 285.452 200.708C286.355 200.706 287.112 198.077 287.305 194.552C290.827 194.311 293.444 193.524 293.434 192.616Z" fill="var(--sapContent_Illustrative_Color18)"/>
5
+ <path d="M214.57 43.4846C214.57 42.1263 210.628 41.0391 205.359 40.7921C205.058 35.5307 203.899 31.6186 202.54 31.6216C201.182 31.6246 200.052 35.5669 199.763 40.8554C194.48 41.2168 190.552 42.3973 190.57 43.7586C190.588 45.1199 194.513 46.2071 199.781 46.451C200.097 51.7124 201.242 55.6246 202.597 55.6216C203.953 55.6186 205.088 51.6763 205.378 46.3878C210.661 46.0264 214.585 44.8458 214.57 43.4846Z" fill="var(--sapContent_Illustrative_Color18)"/>
6
+ <rect x="60.8906" y="55.0828" width="5.7116" height="7.67057" fill="var(--sapContent_Illustrative_Color18)"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M52.8344 18.5845L52.0741 19.0568L52.0849 19.0612L49.8582 20.4774C48.9094 21.0809 48.3777 22.2092 48.3659 23.6686C48.3567 24.8139 48.6669 26.0501 49.264 27.2508L51.566 31.9194L42.4786 37.5641C41.2125 37.9875 40.402 39.2464 40.3873 41.0562L40.3244 48.8333C40.3028 51.5119 42.0309 54.5845 44.4288 56.1285L50.13 59.817C50.701 62.1553 51.4572 64.5229 52.3821 66.8751L49.0159 70.4312C48.4039 71.0777 48.0758 72.0399 48.0666 73.1852C48.0548 74.6445 48.5642 76.2686 49.4964 77.7157L54.4562 85.5328C56.1539 88.2021 58.8556 89.6999 60.8498 89.0565L65.5987 87.5247C67.3538 89.3489 69.1777 91.0007 71.0703 92.4986L71.9612 99.0626C72.3429 101.889 74.3929 104.757 76.828 105.873L83.8981 109.113C85.4461 109.823 86.8511 109.688 87.7783 108.864L98.9887 101.924L88.5872 96.9202L88.3989 98.5695C86.0176 97.4149 84.0293 94.5957 83.654 91.8167L82.7632 85.2526C81.0504 83.8971 79.3938 82.4155 77.7936 80.794C77.5597 80.6477 77.3273 80.4968 77.0967 80.3417L72.5427 81.8105C70.5485 82.454 67.8468 80.9562 66.1491 78.2868L61.1893 70.4697C60.257 69.0227 59.7476 67.3986 59.7594 65.9393C59.7687 64.7939 60.0967 63.8318 60.7088 63.1852L63.7265 59.9974C63.5872 59.2752 63.4791 58.5539 63.4037 57.8362C62.7782 56.0772 62.249 54.316 61.8228 52.571L56.1217 48.8826C53.7948 47.3843 52.0986 44.4466 52.0199 41.8263L55.7101 43.3334L54.078 30.3591L53.1348 30.9449C53.8861 30.2224 54.9877 29.9664 56.2718 30.3174L61.8557 31.8383C62.461 29.9464 63.2671 28.2207 64.2405 26.6644L62.6114 23.3604L65.6605 24.6057L64.0284 11.6313L55.2873 17.0609C55.1561 17.119 55.0292 17.1873 54.9072 17.2662L52.8344 18.5845Z" fill="var(--sapContent_Illustrative_Color18)"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M61.4723 62.3733L49.6076 69.8007L49.012 70.4299C48.4 71.0764 48.072 72.0386 48.0627 73.1839C48.0509 74.6432 48.5603 76.2673 49.4925 77.7144L54.4523 85.5315C56.1501 88.2008 58.8517 89.6986 60.8459 89.0552L65.5948 87.5234C67.3499 89.3476 69.1739 90.9994 71.0665 92.4973L71.9573 99.0613C72.324 101.777 74.231 104.531 76.5399 105.733L88.1686 98.4528C85.8887 97.234 84.0135 94.5059 83.6502 91.8154L82.7593 85.2513C81.0465 83.8958 79.3899 82.4142 77.7897 80.7927C77.5558 80.6464 77.3235 80.4955 77.0928 80.3404L72.5388 81.8092C70.5446 82.4527 67.8429 80.9549 66.1452 78.2855L61.1854 70.4684C60.2532 69.0214 59.7438 67.3973 59.7556 65.938C59.7648 64.7926 60.0929 63.8305 60.7049 63.184L61.4723 62.3733ZM88.4268 98.2912L89.7334 97.4732L88.5834 96.9199L88.4268 98.2912Z" fill="var(--sapContent_Illustrative_Color19)"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M55.6663 48.563L44.0273 55.8491C44.1599 55.947 44.2948 56.0403 44.4319 56.1286L50.1331 59.817C50.1663 59.9531 50.2002 60.0893 50.2346 60.2256L61.9114 52.9158C61.8825 52.8008 61.854 52.6859 61.8259 52.5711L56.1248 48.8827C55.969 48.7824 55.8161 48.6756 55.6663 48.563ZM67.0925 79.5372L55.4419 86.8306C57.088 88.6639 59.2104 89.5865 60.8529 89.0565L65.6018 87.5248C67.3569 89.349 69.1808 91.0008 71.0734 92.4986L71.1257 92.8841L82.8094 85.5701L82.7663 85.2527C81.0535 83.8971 79.3969 82.4155 77.7967 80.7941C77.5628 80.6477 77.3304 80.4969 77.0997 80.3417L72.5457 81.8106C70.8892 82.3451 68.7444 81.402 67.0925 79.5372ZM84.9212 95.2595L73.2612 102.559C74.1625 104.015 75.4334 105.232 76.8311 105.873L83.9012 109.113C85.4481 109.822 86.8521 109.688 87.7794 108.865L98.9918 101.925L88.5903 96.9207L88.4021 98.5696C87.0355 97.907 85.7984 96.6963 84.9212 95.2595Z" fill="var(--sapContent_Illustrative_Color20)"/>
10
+ <path d="M119.459 88.3755L131.266 81.0665L120.865 76.0625L119.459 88.3755Z" fill="var(--sapContent_Illustrative_Color20)"/>
11
+ <path d="M85.3683 10.323L73.4141 17.7484L87.0004 23.2974L85.3683 10.323Z" fill="var(--sapContent_Illustrative_Color18)"/>
12
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M108.965 96.1127L107.037 93.6887C105.282 93.9227 103.445 93.9335 101.559 93.718L100.534 99.5523C100.151 101.767 98.4221 102.778 96.3008 102.137L99.9165 106.683C101.886 109.143 104.591 110.142 106.32 109.024L110.582 106.314L119.397 100.857L108.995 95.853L108.965 96.1127Z" fill="var(--sapContent_Illustrative_Color20)"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M83.1193 18.1664L84.1268 12.3983C84.5512 9.94139 86.6323 8.96694 89.0671 10.12L96.1372 13.3604C98.5723 14.4765 100.622 17.3444 101.004 20.1707L101.894 26.8087C103.77 28.2988 105.594 29.9875 107.349 31.8117L112.047 30.2939C114.041 29.6504 116.743 31.1482 118.441 33.8176L123.401 41.6162C124.333 43.0817 124.842 44.6873 124.83 46.1467C124.821 47.292 124.493 48.2541 123.881 48.9007L120.515 52.4937C121.423 54.8382 122.162 57.1981 122.733 59.5549L128.367 63.1941C130.765 64.7381 132.493 67.8107 132.472 70.4893L132.408 78.2849C132.387 80.9634 130.622 82.4351 128.217 81.7778L122.566 80.2261C121.979 81.9779 121.241 83.6051 120.335 85.0629L123.652 91.7932C124.249 92.9939 124.56 94.2301 124.55 95.3754C124.538 96.8347 124.007 97.9631 123.058 98.5666L118.009 101.778C116.281 102.895 113.575 101.896 111.606 99.4363L107.034 93.6882C105.279 93.9222 103.442 93.933 101.555 93.7175L100.531 99.5518C100.106 102.009 98.025 102.983 95.5899 101.867L88.5198 98.6266C86.0847 97.5106 84.0347 94.6427 83.653 91.8163L82.7621 85.2523C80.8695 83.7544 79.0456 82.1026 77.2905 80.2785L72.5416 81.8102C70.5474 82.4536 67.8457 80.9558 66.148 78.2865L61.1882 70.4694C60.256 69.0223 59.7466 67.3982 59.7584 65.9389C59.7676 64.7936 60.0957 63.8314 60.7077 63.1849L64.074 59.6289C63.1491 57.2766 62.3928 54.909 61.8218 52.5707L56.1206 48.8823C53.7227 47.3382 51.9946 44.2656 52.0162 41.587L52.0791 33.8099C52.1008 31.1314 53.8657 29.6597 56.2708 30.317L61.8546 31.8379C62.4599 29.946 63.2661 28.2203 64.2395 26.664L60.9559 20.0045C60.3588 18.8038 60.0485 17.5676 60.0578 16.4223C60.0696 14.963 60.6012 13.8346 61.55 13.2311L66.599 10.0199C68.3274 8.9023 71.0331 9.90139 73.0022 12.3614L77.6244 18.1511C79.3792 17.9355 81.2164 17.9432 83.1193 18.1664ZM109.52 63.8728C109.605 53.3777 101.939 41.3247 92.3977 36.9518C82.8567 32.5788 75.0533 37.5418 74.9684 48.0369C74.8835 58.5321 82.5493 70.585 92.0903 74.958C101.631 79.3309 109.435 74.3679 109.52 63.8728Z" fill="var(--sapContent_Illustrative_Color19)"/>
14
+ <path d="M97.0022 76.4289C97.5246 74.8714 97.8137 73.0929 97.8297 71.1186C97.9146 60.6235 90.2488 48.5706 80.7078 44.1976C79.0048 43.4171 77.3571 42.934 75.7988 42.7267C78.0536 36.0049 84.6544 33.4014 92.4007 36.9517C93.2618 37.3464 94.1077 37.8037 94.934 38.3168C95.3457 38.5724 95.3856 38.5938 95.9314 38.9694C102.513 43.4995 107.684 51.533 109.123 59.4207C109.232 60.0227 109.323 60.6389 109.39 61.2658C109.484 62.1419 109.53 63.0125 109.523 63.8728C109.453 72.4946 104.174 77.3829 97.0022 76.4289Z" fill="var(--sapContent_Illustrative_Color20)"/>
15
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M97.8245 71.4347C97.7818 73.2832 97.4964 74.9551 97.002 76.4291C104.174 77.3831 109.453 72.4948 109.522 63.873C109.528 63.1198 109.495 62.3586 109.423 61.5928C106.101 68.1625 101.62 70.9105 97.8245 71.4347Z" fill="var(--sapContent_Illustrative_Color18)"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M265.507 113.628L274.343 115.098C278.107 115.716 279.623 118.888 277.889 122.627L273.02 133.482C271.343 137.22 266.981 140.392 262.662 141.011L252.519 142.455C250.263 145.343 247.702 148.153 244.934 150.86L247.314 158.028C248.323 161.071 246.065 165.222 242.003 167.852L230.135 175.536C227.904 176.98 225.454 177.779 223.222 177.779C221.47 177.779 219.994 177.289 218.997 176.361L213.46 171.256C209.884 172.674 206.284 173.834 202.686 174.737L197.188 183.4C194.856 187.087 190.177 189.769 186.08 189.769H174.154C170.056 189.769 167.783 187.087 168.759 183.4L171.063 174.737C168.376 173.86 165.878 172.751 163.636 171.385L153.382 176.542C151.553 177.47 149.666 177.96 147.914 177.96C145.681 177.96 143.949 177.16 143.014 175.716L138.039 168.033C136.308 165.403 137.803 161.251 141.541 158.209L150.278 151.144C149.898 148.462 149.859 145.652 150.165 142.764L141.228 141.269C137.464 140.65 135.948 137.478 137.625 133.74L142.494 122.884C144.172 119.146 148.533 115.974 152.852 115.355L162.882 113.911C165.15 110.998 167.654 108.187 170.423 105.48L168.021 98.2346C167.012 95.192 169.27 91.0407 173.332 88.4107L185.228 80.727C187.43 79.2831 189.908 78.4838 192.141 78.4838C193.893 78.4838 195.369 78.9737 196.365 79.9019L201.847 85.0072C205.433 83.5633 209.046 82.3772 212.616 81.4748L218.187 72.7081C220.519 69.0209 225.198 66.3394 229.296 66.3394H241.193C245.291 66.3394 247.564 69.0209 246.588 72.7081L244.331 81.2685C247.232 82.1709 249.882 83.3828 252.275 84.8525L262.421 79.7472C264.251 78.819 266.138 78.3291 267.89 78.3291C270.122 78.3291 271.855 79.1284 272.79 80.5723L277.764 88.256C279.495 90.886 278.001 95.0373 274.262 98.0799L265.463 105.222C265.814 107.904 265.825 110.714 265.507 113.628ZM195.917 154.579C211.973 154.579 230.315 142.703 236.886 128.054C243.458 113.405 235.769 101.53 219.714 101.53C203.659 101.53 185.316 113.405 178.745 128.054C172.174 142.703 179.862 154.579 195.917 154.579Z" fill="var(--sapContent_Illustrative_Color2)"/>
17
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M213.895 102.021C217.212 100.724 220.547 99.6475 223.845 98.8136L229.417 90.047C231.749 86.3598 236.428 83.6782 240.526 83.6782H249.074L257.227 85.741C258.026 86.8504 258.269 88.3411 257.818 90.047L255.561 98.6074C258.462 99.5098 261.112 100.722 263.505 102.191L273.651 97.0861C273.81 97.0055 273.969 96.9282 274.129 96.8543L289.738 107.1L278.411 89.9119C278.309 89.3166 278.096 88.7586 277.765 88.256L272.791 80.5723C271.856 79.1284 270.123 78.3291 267.891 78.3291C266.139 78.3291 264.252 78.819 262.422 79.7472L255.59 83.185L246.412 68.9879L246.386 69.0615C245.596 67.3822 243.75 66.3394 241.194 66.3394H229.297C225.199 66.3394 220.52 69.0209 218.188 72.7081L212.617 81.4748C209.047 82.3772 205.434 83.5633 201.848 85.0072L196.366 79.9019C195.37 78.9737 193.894 78.4838 192.142 78.4838C189.909 78.4838 187.431 79.2831 185.229 80.727L173.333 88.4107C169.271 91.0407 167.013 95.192 168.022 98.2346L170.424 105.48C167.655 108.187 165.151 110.998 162.883 113.911L152.853 115.355C148.534 115.974 144.173 119.146 142.495 122.884L137.626 133.74C136.427 136.413 136.861 138.797 138.582 140.165L147.376 153.492L141.543 158.209C137.804 161.251 136.309 165.403 138.04 168.033L139.293 169.968L139.107 169.962L150.255 186.856L156.905 172.205L161.508 168.483C161.128 165.801 161.089 162.991 161.395 160.103L152.458 158.607C150.049 158.211 148.56 156.77 148.241 154.803L149.219 156.285L156.574 140.08L153.839 139.978C155.593 136.347 159.858 133.299 164.082 132.694L174.112 131.25C176.38 128.337 178.884 125.526 181.652 122.819L179.251 115.573C178.242 112.531 180.499 108.38 184.562 105.75L196.458 98.0659C198.66 96.622 201.138 95.8227 203.371 95.8227C205.123 95.8227 206.599 96.3126 207.595 97.2408L212.915 102.196C213.242 102.133 213.568 102.075 213.895 102.021Z" fill="var(--sapContent_Illustrative_Color2)"/>
18
+ <path d="M289.738 135.281L278.905 118.523L274.369 131.392L289.738 135.281Z" fill="var(--sapContent_Illustrative_Color2)"/>
19
+ <path d="M180.269 204.785L169.121 187.89L187.624 188.58L180.269 204.785Z" fill="var(--sapContent_Illustrative_Color4)"/>
20
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M276.736 130.967L285.572 132.437C289.335 133.056 290.851 136.227 289.118 139.966L284.248 150.821C282.571 154.56 278.21 157.731 273.891 158.35L263.748 159.794C261.492 162.682 258.931 165.492 256.162 168.2L258.542 175.368C259.551 178.41 257.293 182.562 253.231 185.192L241.363 192.875C239.133 194.319 236.683 195.119 234.45 195.119C232.698 195.119 231.223 194.629 230.226 193.7L224.688 188.595C221.113 190.013 217.512 191.174 213.914 192.076L208.417 200.74C206.085 204.427 201.406 207.108 197.308 207.108H185.383C181.285 207.108 179.012 204.427 179.988 200.74L182.291 192.076C179.604 191.199 177.106 190.091 174.865 188.724L164.611 193.881C162.781 194.809 160.894 195.299 159.142 195.299C156.91 195.299 155.177 194.5 154.242 193.056L149.268 185.372C147.537 182.742 149.031 178.591 152.77 175.548L161.506 168.483C161.127 165.802 161.087 162.991 161.394 160.103L152.456 158.608C148.693 157.989 147.176 154.818 148.854 151.079L153.723 140.224C155.4 136.485 159.762 133.314 164.08 132.695L174.11 131.251C176.378 128.337 178.882 125.527 181.651 122.819L179.249 115.574C178.24 112.531 180.498 108.38 184.56 105.75L196.457 98.0664C198.659 96.6224 201.137 95.8231 203.369 95.8231C205.121 95.8231 206.597 96.313 207.594 97.2413L213.075 102.347C216.662 100.903 220.274 99.7166 223.844 98.8141L229.416 90.0474C231.748 86.3603 236.427 83.6787 240.524 83.6787H252.422C256.519 83.6787 258.793 86.3603 257.817 90.0474L255.559 98.6078C258.461 99.5103 261.111 100.722 263.503 102.192L273.65 97.0866C275.479 96.1583 277.366 95.6684 279.118 95.6684C281.351 95.6684 283.083 96.4677 284.018 97.9117L288.993 105.595C290.724 108.225 289.229 112.377 285.49 115.419L276.691 122.561C277.043 125.243 277.054 128.054 276.736 130.967ZM207.146 171.918C223.201 171.918 241.544 160.043 248.115 145.394C254.686 130.745 246.998 118.869 230.942 118.869C214.887 118.869 196.545 130.745 189.973 145.394C183.402 160.043 191.091 171.918 207.146 171.918Z" fill="var(--sapContent_Illustrative_Color13)"/>
21
+ <path d="M212.84 103.676V101.842H214.306L212.84 103.676Z" fill="var(--sapContent_Illustrative_Color13)"/>
22
+ <path d="M213.536 171.327L213.458 171.255C213.33 171.307 213.201 171.357 213.072 171.408C211.079 171.742 209.095 171.917 207.145 171.917C194.132 171.917 186.616 164.117 187.732 153.362C190.133 154.152 192.874 154.578 195.916 154.578C211.971 154.578 230.314 142.703 236.885 128.054C238.13 125.277 238.864 122.6 239.125 120.085C249.398 123.467 253.44 133.519 248.114 145.393C247.323 147.155 246.363 148.876 245.256 150.542C245.149 150.648 245.041 150.754 244.932 150.86L244.969 150.969C238.022 161.138 225.657 169.146 213.536 171.327Z" fill="var(--sapContent_Illustrative_Color4)"/>
23
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M179.121 112.887L167.821 95.9971C167.727 96.78 167.786 97.5364 168.018 98.2344L170.42 105.48C168.424 107.431 166.565 109.436 164.834 111.495L176.27 128.589C177.942 126.616 179.732 124.693 181.648 122.819L179.246 115.573C178.971 114.743 178.939 113.83 179.121 112.887Z" fill="var(--sapContent_Illustrative_Color4)"/>
24
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M223.846 98.8144C220.547 99.6483 217.212 100.724 213.895 102.022C213.568 102.076 213.242 102.134 212.915 102.196L212.904 102.186L200.692 83.9312L201.848 85.008C205.434 83.5641 209.047 82.378 212.617 81.4755L214.275 78.8667L225.684 95.9214L223.846 98.8144ZM151.719 115.576C152.096 115.484 152.475 115.41 152.853 115.356L162.883 113.912C163.712 112.847 164.573 111.796 165.467 110.758L176.904 127.855C175.936 128.971 175.005 130.103 174.112 131.251L164.082 132.695C163.811 132.734 163.54 132.783 163.269 132.841L151.719 115.576Z" fill="var(--sapContent_Illustrative_Color13)"/>
25
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M149.234 156.24L149.179 156.235L149.213 156.286L149.234 156.24ZM148.289 155.083L146.618 152.155L146.473 152.133L147.37 153.492L145.129 155.305L156.712 172.618L156.899 172.206L161.502 168.484C161.122 165.802 161.083 162.992 161.389 160.104L152.452 158.608C150.159 158.231 148.7 156.907 148.289 155.083Z" fill="var(--sapContent_Illustrative_Color4)"/>
26
+ <path d="M99.541 97.9714L131.903 118.812L87.4952 187.773C81.7403 196.709 69.8305 199.289 60.8939 193.534C51.9572 187.779 49.3779 175.869 55.1327 166.932L99.541 97.9714Z" fill="var(--sapContent_Illustrative_Color3)"/>
27
+ <ellipse cx="115.364" cy="108.947" rx="19.2459" ry="9.71286" transform="rotate(32.78 115.364 108.947)" fill="var(--sapContent_Illustrative_Color15)"/>
28
+ <path d="M113.969 92.0911C109.674 96.4495 105.155 95.8441 103.211 96.0011L132.169 114.648C130.743 110.804 130.17 104.966 131.162 103.163L113.969 92.0911Z" fill="var(--sapContent_Illustrative_Color15)"/>
29
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M120.553 100.888C127.003 105.041 133.931 105.77 136.027 102.515C136.052 102.476 136.076 102.437 136.099 102.398L139.157 97.6489L134.077 94.3777C132.619 92.5195 130.592 90.6765 128.144 89.1002C125.696 87.524 123.179 86.441 120.884 85.8818L115.8 82.6077L112.601 87.5754L112.605 87.578C110.649 90.8558 114.172 96.7785 120.553 100.888Z" fill="var(--sapContent_Illustrative_Color3)"/>
30
+ <ellipse cx="127.479" cy="90.1295" rx="13.8906" ry="7.01018" transform="rotate(32.78 127.479 90.1295)" fill="var(--sapContent_Illustrative_Color15)"/>
31
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M181.162 6.76309L172.727 11.0315L123.469 87.5243L123.569 87.5891C123.391 88.7538 124.557 90.4609 126.472 91.6938C128.386 92.9266 130.423 93.2825 131.41 92.638L131.508 92.7013L131.79 92.2638C131.792 92.2604 131.794 92.2569 131.796 92.2535C131.799 92.2501 131.801 92.2467 131.803 92.2432L180.766 16.2086L181.162 6.76309Z" fill="var(--sapContent_Illustrative_Color6)"/>
32
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M175.081 9.83861L172.639 19.9949L180.876 13.5695L181.161 6.76184L175.081 9.83861Z" fill="var(--sapContent_Illustrative_Color5)"/>
33
+ <rect width="5.1865" height="67.9541" rx="2.59325" transform="matrix(0.703914 0.710286 -0.541415 0.840756 96.0723 112.696)" fill="var(--sapContent_Illustrative_Color15)"/>
34
+ <rect width="5.1865" height="67.9541" rx="2.59325" transform="matrix(-0.937878 -0.346966 -0.541415 0.840756 120.17 128.213)" fill="var(--sapContent_Illustrative_Color15)"/>
35
+ <rect x="104.432" y="121.325" width="5.26153" height="67.9541" rx="2.63076" transform="rotate(32.78 104.432 121.325)" fill="var(--sapContent_Illustrative_Color15)"/>
36
+ <rect x="144.57" y="58.9934" width="2.92578" height="34.2068" rx="1.46289" transform="rotate(32.78 144.57 58.9934)" fill="var(--sapContent_Illustrative_Color8)"/>
37
+ <rect x="149.783" y="50.8977" width="2.92578" height="6.46777" rx="1.46289" transform="rotate(32.78 149.783 50.8977)" fill="var(--sapContent_Illustrative_Color8)"/>
38
+ </svg>
39
+ `;
@@ -0,0 +1,18 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" id="tnt-Scene-Success">
2
+ <path fill="var(--sapIllus_BackgroundColor)" d="M235.470472,138.04625 C235.573472,129.48925 242.834472,123.43625 252.605472,123.23225 C282.933472,122.59825 307.430472,97.90625 304.397472,68.13025 C301.758472,42.21525 278.055472,23.00425 251.012472,23.00225 C207.079472,23 135.201472,23 91.268472,23.00225 C64.226472,23.00325 40.523472,42.21525 37.883472,68.12925 C34.850472,97.90625 59.340472,123.23225 89.675472,123.23225 L89.835472,123.23225 C95.990472,123.23225 101.009472,128.07925 100.991472,134.00525 L100.990472,134.12625 L100.991472,134.24625 C101.009472,140.17225 95.990472,145.02125 89.835472,145.02125 L45.402472,145.02025 C31.523472,145.02025 18.796472,153.85025 15.753472,166.88825 C11.469472,185.24025 26.047472,201.67225 44.417472,201.67225 L73.981472,201.67225 L206.231472,201.67225 L224.417472,201.67225 C238.725472,201.67225 251.712472,192.27025 254.344472,178.72825 C256.816472,166.01225 248.756472,156.45025 239.870472,148.71525 C237.332472,146.50625 235.415472,142.54125 235.470472,138.04625" class="sapIllus_BackgroundColor"/>
3
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M158.346472,64.54335 L188.627472,80.07435 C188.752472,80.13935 188.746472,80.31935 188.617472,80.37535 L158.335472,93.40235 C158.226472,93.44935 158.104472,93.36935 158.104472,93.25035 L158.104472,64.69135 C158.104472,64.56635 158.236472,64.48635 158.346472,64.54335" class="sapIllus_BrandColorSecondary"/>
4
+ <path fill="var(--sapIllus_StrokeDetailColor)" d="M157.284872,117.98475 L157.284872,117.98475 C156.497872,117.98475 155.853872,117.33975 155.853872,116.55275 L155.853872,63.26375 C155.853872,62.47675 156.497872,61.83375 157.284872,61.83375 C158.071872,61.83375 158.715872,62.47675 158.715872,63.26375 L158.715872,116.55275 C158.715872,117.33975 158.071872,117.98475 157.284872,117.98475" class="sapIllus_StrokeDetailColor"/>
5
+ <path fill="var(--sapIllus_Layering1)" d="M214.748772,163.05305 C214.748772,193.38505 190.158772,217.97505 159.825772,217.97505 C129.492772,217.97505 104.902772,193.38505 104.902772,163.05305 C104.902772,132.72005 129.492772,108.13005 159.825772,108.13005 C190.158772,108.13005 214.748772,132.72005 214.748772,163.05305" class="sapIllus_Layering1"/>
6
+ <path fill="var(--sapIllus_Layering2)" d="M189.909872 157.45835C189.909872 162.62935 185.718872 166.82035 180.548872 166.82035 175.377872 166.82035 171.185872 162.62935 171.185872 157.45835 171.185872 152.28835 175.377872 148.09735 180.548872 148.09735 185.718872 148.09735 189.909872 152.28835 189.909872 157.45835M206.651072 147.28065C206.651072 150.18465 204.297072 152.53865 201.393072 152.53865 198.489072 152.53865 196.135072 150.18465 196.135072 147.28065 196.135072 144.37765 198.489072 142.02365 201.393072 142.02365 204.297072 142.02365 206.651072 144.37765 206.651072 147.28065M162.162872 137.67125C162.162872 140.79225 159.632872 143.32225 156.511872 143.32225 153.391872 143.32225 150.860872 140.79225 150.860872 137.67125 150.860872 134.55125 153.391872 132.02125 156.511872 132.02125 159.632872 132.02125 162.162872 134.55125 162.162872 137.67125M192.533972 191.04035C192.533972 193.52235 190.521972 195.53535 188.039972 195.53535 185.556972 195.53535 183.544972 193.52235 183.544972 191.04035 183.544972 188.55835 185.556972 186.54635 188.039972 186.54635 190.521972 186.54635 192.533972 188.55835 192.533972 191.04035M139.116972 145.56875C139.116972 151.76475 134.093972 156.78875 127.896972 156.78875 121.700972 156.78875 116.677972 151.76475 116.677972 145.56875 116.677972 139.37175 121.700972 134.34775 127.896972 134.34775 134.093972 134.34775 139.116972 139.37175 139.116972 145.56875" class="sapIllus_Layering2"/>
7
+ <path fill="var(--sapIllus_BrandColorSecondary)" d="M277.058372,127.55795 C280.312372,127.55795 283.389372,126.93895 286.289372,125.70195 C289.190372,124.46295 291.718372,122.76595 293.875372,120.60795 C296.034372,118.45095 297.731372,115.92195 298.969372,113.02195 C300.206372,110.12095 300.826372,107.04395 300.826372,103.78995 C300.826372,100.53695 300.206372,97.45995 298.969372,94.55995 C297.731372,91.65995 296.034372,89.12995 293.875372,86.97295 C291.718372,84.81595 289.190372,83.11895 286.289372,81.87995 C283.389372,80.64195 280.312372,80.02395 277.058372,80.02395 C273.734372,80.02395 270.639372,80.64195 267.774372,81.87995 C264.910372,83.11895 262.398372,84.81595 260.241372,86.97295 C258.083372,89.12995 256.385372,91.65995 255.148372,94.55995 C253.910372,97.45995 253.291372,100.53695 253.291372,103.78995 C253.291372,107.04395 253.910372,110.12095 255.148372,113.02195 C256.385372,115.92195 258.083372,118.45095 260.241372,120.60795 C262.398372,122.76595 264.910372,124.46295 267.774372,125.70195 C270.639372,126.93895 273.734372,127.55795 277.058372,127.55795" class="sapIllus_BrandColorSecondary"/>
8
+ <path fill="var(--sapIllus_Layering2)" d="M277.501672 106.23175L279.531672 107.94175 279.531672 111.78875 274.510672 116.70475 274.296672 117.34475 273.976672 118.84075 273.548672 120.44375 273.440672 121.72675C273.440672 121.79675 273.459672 121.86875 273.494672 121.93975 273.530672 122.01075 273.548672 122.08275 273.548672 122.15375L273.120672 122.58175C272.835672 122.58175 272.657672 122.61675 272.586672 122.68775L271.624672 120.55075 270.449672 117.87875C270.235672 117.09575 270.075672 116.16975 269.968672 115.10075 269.861672 114.03275 269.701672 112.85775 269.487672 111.57575L266.495672 108.90375 269.167672 105.59075 267.991672 104.09475C266.210672 104.09475 264.679672 103.45375 263.396672 102.17075L262.648672 101.63675 261.900672 100.78275 263.076672 102.91875 262.328672 103.24075 260.725672 100.03475 261.046672 97.25575 260.404672 95.11975 258.480672 93.94375 258.054672 92.76775C258.054672 92.34075 258.356672 91.75275 258.962672 91.00475 259.567672 90.25675 260.279672 89.52675 261.099672 88.81475 261.918672 88.10175 262.720672 87.49675 263.503672 86.99875 264.287672 86.49975 264.893672 86.25075 265.319672 86.25075 265.961672 86.25075 266.655672 86.48175 267.403672 86.94475 268.151672 87.40775 268.811672 87.63875 269.380672 87.63875 269.310672 87.71075 269.273672 87.81775 269.273672 87.95975 269.273672 88.24475 269.380672 88.42275 269.594672 88.49475L267.885672 92.34075 270.021672 92.76775 271.731672 91.05875 274.724672 91.27175 275.364672 92.87575 273.654672 94.69175 273.654672 95.86775 274.616672 95.97375 275.150672 95.11975 277.074672 93.83675 277.074672 94.69175 277.929672 96.08075 276.967672 97.04275 277.608672 97.57675 276.219672 97.68375 276.754672 98.75275 273.976672 100.14075 274.402672 101.95875 273.548672 101.95875 273.120672 100.14075 270.876672 100.14075 270.556672 100.78275 269.594672 100.35475 268.205672 101.85075 269.380672 103.13275 269.273672 104.62875 270.556672 105.48375 277.501672 106.23175zM278.997772 87.53255C279.781772 86.74855 280.601772 86.07155 281.455772 85.50255 282.310772 84.93155 283.236772 84.36255 284.233772 83.79255 285.230772 84.71855 286.050772 85.32355 286.691772 85.60855 286.335772 85.75155 285.978772 85.94755 285.622772 86.19655 285.267772 86.44555 284.875772 86.89055 284.447772 87.53255L283.379772 89.24155 282.523772 90.63155 281.561772 91.27155C281.135772 91.27155 280.796772 90.95155 280.547772 90.31055 280.298772 89.66955 280.173772 89.38455 280.173772 89.45555 279.674772 89.45555 279.282772 89.56255 278.997772 89.77655 278.784772 89.56255 278.428772 89.45555 277.929772 89.45555 277.786772 89.45555 277.680772 89.47355 277.608772 89.50955 277.537772 89.54455 277.431772 89.56255 277.288772 89.56255 277.786772 88.84955 278.356772 88.17355 278.997772 87.53255M296.415772 99.50035C297.269772 99.85635 297.769772 100.62235 297.911772 101.79735 298.054772 102.97335 298.125772 103.95235 298.125772 104.73635 298.125772 107.37235 297.591772 109.81235 296.521772 112.05635 295.453772 114.30035 294.421772 116.45435 293.423772 118.52135 293.209772 118.52135 293.102772 118.27135 293.102772 117.77235 293.102772 117.13135 293.209772 116.20535 293.423772 114.99435 293.637772 113.78335 293.743772 112.57235 293.743772 111.36135L293.743772 110.50635 293.530772 109.54435 292.034772 107.08735 287.974772 106.12535 286.905772 103.88135 287.652772 100.35435C288.223772 100.21235 288.846772 100.08835 289.522772 99.98035 290.199772 99.87435 291.072772 99.57135 292.141772 99.07235 292.283772 99.21535 292.461772 99.28635 292.675772 99.28635 292.889772 99.28635 293.120772 99.26935 293.370772 99.23235 293.619772 99.19735 293.886772 99.18035 294.171772 99.18035 294.527772 99.18035 294.901772 99.21535 295.293772 99.28635 295.685772 99.35735 296.059772 99.42935 296.415772 99.50035" class="sapIllus_Layering2"/>
9
+ <polygon fill="var(--sapIllus_Layering2)" points="290.218 89.455 289.042 89.669 289.47 87.959 290.752 87.959 290.966 88.814" class="sapIllus_Layering2"/>
10
+ <path fill="var(--sapIllus_Layering2)" d="M295.239972,93.51595 C295.382972,93.87195 295.524972,94.21095 295.667972,94.53195 C295.809972,94.85195 295.952972,95.22595 296.094972,95.65395 L295.133972,96.50795 L293.530972,96.18795 L292.996972,97.89795 L290.966972,97.04195 L292.140972,95.22595 L294.705972,95.22595 L294.705972,93.94395 L295.239972,93.51595 Z" class="sapIllus_Layering2"/>
11
+ <polygon fill="var(--sapIllus_Layering2)" points="292.141 92.875 291.821 92.02 292.248 91.271 292.783 92.127" class="sapIllus_Layering2"/>
12
+ <path fill="var(--sapIllus_Layering2)" d="M62.866972,143.90175 C62.866972,151.03575 57.084972,156.81775 49.951972,156.81775 C42.818972,156.81775 37.035972,151.03575 37.035972,143.90175 C37.035972,136.76875 42.818972,130.98675 49.951972,130.98675 C57.084972,130.98675 62.866972,136.76875 62.866972,143.90175" class="sapIllus_Layering2"/>
13
+ <path fill="var(--sapIllus_Layering1)" d="M60.366972 138.51595C60.366972 139.67595 59.427972 140.61595 58.267972 140.61595 57.107972 140.61595 56.168972 139.67595 56.168972 138.51595 56.168972 137.35695 57.107972 136.41595 58.267972 136.41595 59.427972 136.41595 60.366972 137.35695 60.366972 138.51595M61.138472 145.91345C61.138472 146.70645 60.495472 147.34945 59.702472 147.34945 58.909472 147.34945 58.268472 146.70645 58.268472 145.91345 58.268472 145.12145 58.909472 144.47845 59.702472 144.47845 60.495472 144.47845 61.138472 145.12145 61.138472 145.91345M56.237072 151.72495C56.237072 152.32895 55.748072 152.81795 55.144072 152.81795 54.541072 152.81795 54.051072 152.32895 54.051072 151.72495 54.051072 151.12095 54.541072 150.63195 55.144072 150.63195 55.748072 150.63195 56.237072 151.12095 56.237072 151.72495M49.385472 140.61555C49.385472 141.40855 48.742472 142.05155 47.950472 142.05155 47.157472 142.05155 46.515472 141.40855 46.515472 140.61555 46.515472 139.82355 47.157472 139.18055 47.950472 139.18055 48.742472 139.18055 49.385472 139.82355 49.385472 140.61555" class="sapIllus_Layering1"/>
14
+ <path fill="var(--sapIllus_Layering1)" d="M45.143272,151.40175 C40.011272,148.70575 35.491272,145.57675 32.414272,142.59075 C28.959272,139.23875 27.804272,136.61075 28.881272,134.55875 C30.562272,131.36075 36.897272,132.58475 41.613272,134.03875 L40.070272,135.58575 C32.592272,133.27975 30.427272,134.60475 30.112272,135.20575 C30.103272,135.22175 29.317272,136.85975 33.571272,140.98875 C36.580272,143.90975 41.020272,146.97975 46.072272,149.63375 C51.123272,152.28775 56.171272,154.20175 60.284272,155.02275 C66.098272,156.18275 67.000272,154.60575 67.009272,154.58975 C67.328272,153.98375 68.560272,152.42975 62.346272,147.54675 L62.777272,145.43475 C66.692272,148.51175 69.929272,152.01975 68.239272,155.23675 C67.161272,157.28875 64.342272,157.82775 59.621272,156.88475 C55.417272,156.04575 50.276272,154.09775 45.143272,151.40175" class="sapIllus_Layering1"/>
15
+ <path fill="var(--sapIllus_AccentColor)" d="M97.254672 84.29915C92.241672 82.44315 89.788672 77.87515 87.884672 73.21515 87.795672 73.00015 87.584672 72.85915 87.352672 72.85915 87.125672 72.88015 86.925672 73.01215 86.816672 73.21115 84.339672 79.14215 81.092672 81.70615 76.420672 84.94115 76.161672 85.11815 76.097672 85.47115 76.275672 85.72915 76.348672 85.83615 76.456672 85.91415 76.581672 85.95115 80.512672 87.15015 86.412672 94.52715 86.445672 98.28715 86.449672 98.57115 86.662672 98.81115 86.944672 98.84715 86.972672 98.85015 86.999672 98.85215 87.027672 98.85215 87.281672 98.85015 87.505672 98.68215 87.576672 98.43815 88.534672 95.11115 91.627672 88.16815 96.476672 85.71415 96.733672 85.58315 96.994672 85.46715 97.262672 85.36315 97.555672 85.25315 97.702672 84.92515 97.592672 84.63215 97.533672 84.47715 97.410672 84.35615 97.254672 84.29915M253.341013 36.6545199C249.483821 35.2264431 247.59639 31.7116506 246.13138 28.1260699 246.0629 27.9606407 245.900549 27.85215 245.722039 27.85215 245.547377 27.8683082 245.393489 27.969874 245.30962 28.1229921 243.403723 32.6865285 240.905358 34.6593673 237.310544 37.148499 237.111259 37.2846895 237.062015 37.5563011 237.198975 37.7548161 237.255144 37.837146 237.338243 37.8971621 237.434423 37.9256313 240.459084 38.8481874 244.998767 44.524331 245.024159 47.4174176 245.027237 47.6359379 245.191127 47.820603 245.408108 47.8483028 245.429653 47.8506111 245.450428 47.85215 245.471972 47.85215 245.667409 47.8506111 245.839763 47.7213456 245.894393 47.5336027 246.631515 44.9736827 249.011386 39.6314752 252.742391 37.7432745 252.940136 37.6424782 253.14096 37.5532234 253.347169 37.4732018 253.572614 37.3885636 253.685722 37.136188 253.601083 36.9107427 253.555687 36.7914798 253.461046 36.6983778 253.341013 36.6545199" class="sapIllus_AccentColor"/>
16
+ <path fill="var(--sapIllus_BrandColorPrimary)" d="M226.801472 54.24835L223.979472 52.01935C223.579472 51.70335 223.511472 51.12435 223.826472 50.72535L226.056472 47.90235C226.371472 47.50435 226.950472 47.43635 227.350472 47.75135L230.172472 49.98035C230.572472 50.29635 230.640472 50.87535 230.324472 51.27435L228.095472 54.09735C227.780472 54.49635 227.200472 54.56335 226.801472 54.24835M82.884572 177.58235L80.062572 175.35335C79.662572 175.03735 79.595572 174.45835 79.910572 174.05935L82.140572 171.23635C82.455572 170.83735 83.034572 170.76935 83.434572 171.08435L86.256572 173.31335C86.655572 173.62935 86.723572 174.20835 86.407572 174.60735L84.178572 177.43035C83.863572 177.82935 83.283572 177.89735 82.884572 177.58235M128.322072 62.34215L127.056072 59.72715C126.835072 59.26915 127.026072 58.71815 127.484072 58.49615L130.098072 57.23115C130.556072 57.00915 131.108072 57.20015 131.330072 57.65815L132.595072 60.27315C132.817072 60.73115 132.626072 61.28115 132.168072 61.50315L129.553072 62.77015C129.095072 62.99115 128.544072 62.80015 128.322072 62.34215z" class="sapIllus_BrandColorPrimary"/>
17
+ <path fill="var(--sapIllus_Layering1)" d="M43.493872 59.60195C42.840872 59.61795 42.297872 59.09995 42.281872 58.44595L42.227872 51.16295C42.246872 50.49795 42.800872 49.97295 43.465872 49.99195 44.097872 50.00895 44.608872 50.51295 44.635872 51.14495L44.688872 58.42695C44.682872 59.08095 44.148872 59.60695 43.494872 59.60195L43.493872 59.60195zM43.300572 33.16635C42.646572 33.18235 42.104572 32.66435 42.088572 32.01035L42.088572 32.00935 42.034572 24.71535C42.048572 24.05035 42.599572 23.52235 43.263572 23.53735 43.902572 23.55035 44.418572 24.06035 44.441572 24.69735L44.494572 31.99135C44.489572 32.64535 43.954572 33.17235 43.300572 33.16635M33.795672 42.83825L26.509672 42.89225C25.845672 42.89725 25.303672 42.36225 25.2986372 41.69825 25.293672 41.03425 25.827672 40.49225 26.491672 40.48725L33.777672 40.43425C34.441672 40.42925 34.983672 40.96325 34.9887068 41.62725 34.993672 42.29125 34.459672 42.83325 33.795672 42.83825M60.241972 42.64685L52.964972 42.70085C52.301972 42.68385 51.776972 42.13385 51.793972 41.47085 51.808972 40.83685 52.313972 40.32585 52.946972 40.29985L60.223972 40.24785C60.887972 40.26285 61.410972 40.81385 61.394972 41.47685 61.379972 42.10985 60.874972 42.62285 60.241972 42.64685M265.547572 188.01595C265.111572 188.02395 264.753572 187.67595 264.745572 187.24095L264.745572 182.39095C264.761572 181.94895 265.132572 181.60195 265.575572 181.61795 265.996572 181.63095 266.334572 181.96995 266.349572 182.39095L266.349572 187.24095C266.342572 187.67595 265.984572 188.02395 265.548572 188.01595L265.547572 188.01595zM265.547572 170.41245C265.111572 170.42045 264.753572 170.07245 264.746572 169.63745L264.746572 169.63645 264.746572 164.77845C264.758572 164.33645 265.127572 163.98745 265.569572 164.00045 265.994572 164.01245 266.336572 164.35345 266.349572 164.77845L266.349572 169.63645C266.342572 170.07145 265.984572 170.41945 265.548572 170.41245L265.547572 170.41245zM259.171572 176.80695L254.318572 176.80695C253.876572 176.80695 253.519572 176.44895 253.519572 176.00595 253.519572 175.56395 253.876572 175.20495 254.318572 175.20495L259.171572 175.20495C259.612572 175.20495 259.971572 175.56395 259.971572 176.00595 259.971572 176.44895 259.612572 176.80695 259.171572 176.80695M276.782972 176.80895L271.935972 176.80895C271.494972 176.79395 271.148972 176.42495 271.162972 175.98395 271.176972 175.56295 271.513972 175.22395 271.935972 175.20995L276.782972 175.20995C277.223972 175.22395 277.569972 175.59295 277.555972 176.03495 277.542972 176.45595 277.203972 176.79495 276.782972 176.80895" class="sapIllus_Layering1"/>
18
+ </svg>`;