@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,118 @@
1
+ export default `<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Dot-UnableToLoad">
2
+ <g clip-path="url(#clip0_6813_13685)">
3
+ <path d="M22.7531 36.9026L24.0865 36.9967L41.9545 29.3067L24.8303 21.9463L0.707043 26.1479C0.114011 26.2656 -0.465618 26.4742 0.562973 26.962L21.7781 36.6503C22.1701 36.8285 22.3276 36.8689 22.7531 36.9026Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M9.37469 29.7002L9.39479 30.3966C9.39479 30.4268 9.41489 30.4571 9.44505 30.4706L23.0278 36.7713C23.0278 36.7713 24.11 37.2793 25.1721 36.7713C26.6698 36.0548 44.7388 28.3277 44.7388 28.3277C44.7388 28.3277 44.9867 28.2503 44.9934 27.9779C45.0001 27.7054 44.9934 27.4194 44.9934 27.4194L9.37134 29.7002H9.37469Z" fill="var(--sapContent_Illustrative_Color29)"/>
5
+ <path d="M12.2292 28.6908L12.1656 28.711L11.9914 28.7614L11.73 28.8388L11.4084 28.933L11.0465 29.0406L10.6746 29.1483L10.3128 29.2559C10.2056 29.2862 9.44501 29.5385 9.44501 29.5385C9.36794 29.5755 9.36794 29.7605 9.3914 29.8278C9.40815 29.8715 9.4383 29.9085 9.48186 29.9287C9.66278 30.0229 23.6342 36.1151 23.6342 36.1151C23.6342 36.1151 24.3914 36.4717 25.5004 35.9166C26.395 35.4692 34.7008 31.974 34.7008 31.974L44.7186 27.7556C44.7186 27.7556 45.6132 27.3116 44.1256 27.0996L31.2062 23.7928C31.2062 23.7928 30.6098 23.5843 29.7354 23.7726C28.8643 23.961 12.2326 28.6908 12.2326 28.6908H12.2259H12.2292Z" fill="var(--sapContent_Illustrative_Color17)"/>
6
+ <path d="M17.4257 28.3983C17.5698 28.0552 17.8077 27.5338 18.1126 27.0225C14.876 27.9408 12.2258 28.691 12.2258 28.691C12.2057 28.6977 12.1823 28.7045 12.1622 28.7112C12.1052 28.728 12.0449 28.7448 11.9879 28.7616C11.9008 28.7886 11.8137 28.8121 11.7266 28.839C11.6194 28.8693 11.5088 28.9029 11.405 28.9332L11.0431 29.0408C10.9191 29.0779 10.7952 29.1115 10.6712 29.1485C10.5506 29.1821 10.43 29.2191 10.3094 29.2561C10.2021 29.2864 9.44159 29.5387 9.44159 29.5387C9.36453 29.5757 9.36453 29.7607 9.38798 29.828C9.40473 29.8718 9.43489 29.9088 9.47844 29.9289C9.57226 29.9794 13.5392 31.7152 17.2515 33.3333C16.8495 31.695 16.7757 29.9592 17.4324 28.3983H17.4257Z" fill="var(--sapContent_Illustrative_Color17)"/>
7
+ <path d="M9.40477 29.7809L30.0503 23.793C30.0503 23.793 30.258 23.8099 30.2011 23.0967C30.1441 22.3835 28.3516 7.72329 28.3516 7.72329C28.3516 7.72329 28.2746 7.01012 27.4537 7.00003C26.6328 6.9933 7.0293 8.04959 7.0293 8.04959C7.0293 8.04959 5.9605 8.14379 6.08447 9.338C6.20509 10.5322 8.75813 28.7751 8.75813 28.7751C8.75813 28.7751 8.97591 29.7675 9.40477 29.7776V29.7809Z" fill="var(--sapContent_Illustrative_Color17)"/>
8
+ <path d="M20.8535 25.2665C18.1195 25.0983 15.3252 24.5567 12.9162 23.1842C10.5173 21.8217 9.7467 19.504 8.86218 16.8868C8.11837 14.7002 7.48179 11.8273 7.61581 10.3472C7.80008 9.53984 8.04801 8.75267 8.32275 7.97559C7.50524 8.01932 7.02612 8.04623 7.02612 8.04623C7.02612 8.04623 5.95733 8.14042 6.0813 9.33464C6.20191 10.5288 8.75496 28.7717 8.75496 28.7717C8.75496 28.7717 8.84542 29.7708 9.4016 29.7742L25.0583 25.2328C23.6578 25.327 22.2506 25.3438 20.8468 25.2597V25.2665H20.8535Z" fill="var(--sapContent_Illustrative_Color17)"/>
9
+ <path d="M7.01929 9.37831L9.60249 27.4227L29.4808 22.3364L27.8323 8.00244L7.01929 9.37831Z" fill="var(--sapContent_Illustrative_Color8)"/>
10
+ <path d="M32.0172 31.9338L37.8637 29.5084C38.0312 29.4377 37.9944 29.135 37.8101 29.0946L34.1548 28.3074C34.0107 28.2772 33.87 28.2873 33.7393 28.331L26.6598 30.8136C26.6062 30.8338 26.6196 30.9313 26.6832 30.9448L29.8561 31.9809C30.5999 32.2231 31.3538 32.2063 32.0172 31.9305V31.9372V31.9338Z" fill="var(--sapContent_Illustrative_Color27)"/>
11
+ <path d="M26.6597 30.8976C26.596 30.8775 26.5793 30.7765 26.6329 30.753L33.6588 28.3343C33.8364 28.2737 34.024 28.2636 34.215 28.304L37.7966 29.0878C37.8435 29.0979 37.8971 29.1248 37.934 29.182C37.9608 29.2224 37.9742 29.2695 37.9742 29.3166V29.33L34.1714 28.4419C34.0106 28.4117 33.8464 28.4251 33.6957 28.4756L26.6597 30.8943V30.8875V30.8976Z" fill="var(--sapContent_Illustrative_Color17)"/>
12
+ <path d="M32.007 27.5977L33.0289 27.86C33.0758 27.8735 33.0892 27.9542 33.0457 27.9677L32.0941 28.2637H32.074L31.0119 27.9912C30.965 27.9778 30.9483 27.8971 30.9952 27.8836L31.9869 27.601H32.007V27.5977Z" fill="var(--sapContent_Illustrative_Color17)"/>
13
+ <path d="M33.7794 27.0933L34.7578 27.3254C34.808 27.3388 34.8181 27.4196 34.7745 27.433L33.5884 27.8031H33.5683L32.5733 27.5508C32.5264 27.5373 32.5129 27.4566 32.5565 27.4431L33.766 27.0966H33.7861L33.7794 27.0933Z" fill="var(--sapContent_Illustrative_Color17)"/>
14
+ <path d="M22.4548 30.3359L23.8218 30.7564C23.8587 30.7665 23.8687 30.8237 23.8386 30.8304L22.6425 31.2005H22.6224L21.2587 30.7531C21.2252 30.743 21.2118 30.6824 21.2386 30.6791L22.4347 30.3359H22.4548Z" fill="var(--sapContent_Illustrative_Color17)"/>
15
+ <path d="M31.5447 28.3241L30.4558 28.0449H30.4357L29.4071 28.341L22.9005 30.2046C22.8603 30.2147 22.8771 30.2853 22.9206 30.2988L24.234 30.7025H24.2541L30.7708 28.6774L31.5581 28.4318C31.6017 28.4183 31.5883 28.3376 31.5414 28.3241H31.5447Z" fill="var(--sapContent_Illustrative_Color17)"/>
16
+ <path d="M16.1593 30.289L15.3519 30.5211H15.3251L14.5947 30.2856C14.5344 30.2654 14.5109 30.178 14.5578 30.1612L15.3854 29.9189H15.4122L16.1225 30.1612C16.1795 30.1813 16.2063 30.2688 16.156 30.2856L16.1593 30.289Z" fill="var(--sapContent_Illustrative_Color17)"/>
17
+ <path d="M18.7994 31.1835L18.069 31.3954H18.0422L17.1878 31.123C17.1275 31.1028 17.1074 31.0153 17.1543 31.0019L17.9115 30.7832H17.9417L18.7726 31.0658C18.8296 31.086 18.853 31.1734 18.8028 31.1869H18.7961V31.1802L18.7994 31.1835Z" fill="var(--sapContent_Illustrative_Color17)"/>
18
+ <path d="M17.4359 30.7195L16.6653 30.9416H16.6384L15.8712 30.696C15.8109 30.6758 15.7874 30.5883 15.8377 30.5715L16.6317 30.3428H16.6586L17.4024 30.5984C17.4593 30.6186 17.4828 30.7061 17.4359 30.7229V30.7195Z" fill="var(--sapContent_Illustrative_Color17)"/>
19
+ <path d="M20.85 30.7968L22.1735 31.2308C22.2271 31.251 22.2405 31.325 22.1969 31.3384L21.1181 31.6715H21.0913L19.7511 31.214C19.6975 31.1938 19.6807 31.1198 19.7243 31.1063L20.8199 30.7935H20.8467L20.85 30.7968Z" fill="var(--sapContent_Illustrative_Color17)"/>
20
+ <path d="M35.5685 26.5752L36.7379 26.8208L35.324 27.2614L34.1479 26.9822L35.5685 26.5752Z" fill="var(--sapContent_Illustrative_Color17)"/>
21
+ <path d="M19.8014 28.4285L19.1547 28.2468C19.1045 28.23 19.0844 28.1526 19.1279 28.1425L20.1197 27.8667H20.1398L20.7763 28.0383C20.8266 28.0517 20.8467 28.1325 20.7998 28.1425L19.8181 28.4251H19.798H19.8047L19.8014 28.4285Z" fill="var(--sapContent_Illustrative_Color17)"/>
22
+ <path d="M18.2869 28.8661L17.6671 28.6744C17.6101 28.6542 17.5867 28.5634 17.6369 28.5533L18.6052 28.2842H18.6287L19.2485 28.4625C19.3055 28.4793 19.3323 28.5735 19.2787 28.5836L18.307 28.8661H18.2802H18.2869Z" fill="var(--sapContent_Illustrative_Color17)"/>
23
+ <path d="M18.1093 29.7137L17.3722 29.4681C17.3152 29.4479 17.2918 29.3605 17.342 29.347L18.3137 29.0645H18.3405L19.1111 29.2999C19.168 29.3201 19.1915 29.4076 19.1412 29.421L18.1394 29.7103H18.1093V29.7137Z" fill="var(--sapContent_Illustrative_Color17)"/>
24
+ <path d="M21.3058 27.9878L20.6859 27.8196C20.6357 27.8061 20.6156 27.7254 20.6625 27.7119L21.6442 27.4395H21.6643L22.2606 27.6009C22.3109 27.6144 22.3277 27.6951 22.2841 27.7086L21.3259 27.9844H21.3058V27.9878Z" fill="var(--sapContent_Illustrative_Color17)"/>
25
+ <path d="M14.0352 30.1071L13.3282 29.8784C13.2713 29.8582 13.2445 29.7707 13.2914 29.7607L14.1826 29.5117H14.2127L14.8828 29.7405C14.9398 29.7607 14.9632 29.8481 14.9163 29.8616L14.0653 30.1105H14.0385L14.0352 30.1071Z" fill="var(--sapContent_Illustrative_Color17)"/>
26
+ <path d="M22.7933 27.5572L22.15 27.3823C22.1165 27.3722 22.0997 27.315 22.1333 27.3049L23.1786 27.0156H23.192L23.8219 27.1805C23.8554 27.1906 23.8721 27.2477 23.8386 27.2578L22.8067 27.5572H22.7933Z" fill="var(--sapContent_Illustrative_Color17)"/>
27
+ <path d="M15.3551 29.7205L14.6984 29.4985C14.6415 29.4783 14.618 29.3909 14.6649 29.3774L15.66 29.1016H15.6902L16.3368 29.3135C16.3938 29.3337 16.4172 29.4211 16.3703 29.4346L15.3886 29.7205H15.3585H15.3551Z" fill="var(--sapContent_Illustrative_Color17)"/>
28
+ <path d="M16.8261 29.2932L16.1928 29.0847C16.1359 29.0645 16.1124 28.977 16.1593 28.9636L17.1108 28.7012H17.1376L17.7709 28.8963C17.8278 28.9165 17.8513 29.0039 17.801 29.0174L16.8529 29.2966H16.8227V29.2899L16.8261 29.2932Z" fill="var(--sapContent_Illustrative_Color17)"/>
29
+ <path d="M34.9353 26.4438L33.766 26.1982H33.7459L32.0673 26.2453C32.0237 26.2588 32.0673 26.4539 32.1142 26.464L33.7559 26.8845H33.776L34.9453 26.5481C34.9922 26.5346 34.9788 26.4472 34.9286 26.4371V26.4438H34.9353Z" fill="var(--sapContent_Illustrative_Color17)"/>
30
+ <path d="M29.5646 25.791L30.5061 25.5186H30.5262L31.5213 25.7271C31.5749 25.7372 31.5883 25.8247 31.5414 25.8381L30.5497 26.1274H30.5296L29.5881 25.9054C29.5345 25.892 29.5211 25.8079 29.568 25.7944H29.5613L29.5646 25.791Z" fill="var(--sapContent_Illustrative_Color17)"/>
31
+ <path d="M28.499 25.5389L29.407 25.2866H29.4238L29.8627 25.3808C29.9163 25.3909 29.9297 25.4817 29.8828 25.4952L28.9815 25.7576H28.9614L28.5158 25.6533C28.4622 25.6398 28.4454 25.5557 28.4957 25.5423L28.499 25.5389Z" fill="var(--sapContent_Illustrative_Color17)"/>
32
+ <path d="M25.8354 26.6661L25.3261 26.5349C25.2725 26.5214 25.2557 26.4373 25.306 26.4239L26.291 26.1514H26.3111L26.7969 26.2758C26.8505 26.2893 26.8639 26.3734 26.817 26.3868L25.8555 26.6661H25.8354Z" fill="var(--sapContent_Illustrative_Color17)"/>
33
+ <path d="M24.3178 27.1131L23.7047 26.9516C23.6712 26.9415 23.6544 26.8844 23.6879 26.8743L24.7333 26.585H24.7467L25.3397 26.7397C25.3732 26.7498 25.3866 26.807 25.3565 26.8171L24.3312 27.1131H24.3145H24.3178Z" fill="var(--sapContent_Illustrative_Color17)"/>
34
+ <path d="M27.3667 26.2218L26.8977 26.1041C26.844 26.0906 26.8306 26.0065 26.8776 25.9931L27.8894 25.7139H27.9095L28.3685 25.8215C28.4221 25.835 28.4389 25.9191 28.3886 25.9325L27.3868 26.2252H27.3667V26.2218Z" fill="var(--sapContent_Illustrative_Color17)"/>
35
+ <path d="M20.6657 31.8159L20.0091 32.0177H19.9822L18.5751 31.567C18.5181 31.5468 18.4946 31.4627 18.5449 31.4459L19.2686 31.2373H19.2954L20.6356 31.6948C20.6925 31.715 20.7093 31.7991 20.6657 31.8125V31.8159Z" fill="var(--sapContent_Illustrative_Color17)"/>
36
+ <path d="M28.8208 27.6245L29.9365 27.907C29.97 27.9171 29.98 27.9743 29.9465 27.9844L28.871 28.2939H28.8576L27.7587 28.008C27.7252 27.9979 27.7151 27.9407 27.7453 27.9306L28.8074 27.6211H28.8208V27.6245Z" fill="var(--sapContent_Illustrative_Color17)"/>
37
+ <path d="M27.2696 28.0752L28.3719 28.3611C28.4054 28.3712 28.4154 28.4284 28.3853 28.4385L27.2662 28.7581H27.2528L26.1773 28.4688C26.1438 28.4587 26.1304 28.4015 26.1639 28.3914L27.2629 28.0752H27.2763H27.2696Z" fill="var(--sapContent_Illustrative_Color17)"/>
38
+ <path d="M30.362 27.1841L31.4208 27.4532C31.4677 27.4667 31.4811 27.5474 31.4375 27.5608L30.4491 27.8434H30.429L29.377 27.5743C29.3267 27.5608 29.3133 27.4801 29.3602 27.4667L30.3419 27.1841H30.362Z" fill="var(--sapContent_Illustrative_Color17)"/>
39
+ <path d="M33.1228 26.0638L32.1747 25.8687H32.1545L31.3739 26.094L29.4474 26.6491C29.4038 26.6626 29.4172 26.7467 29.4675 26.7601L30.342 26.9821H30.3621L32.4092 26.3901L33.1429 26.1781C33.1898 26.1647 33.1764 26.0772 33.1228 26.0671V26.0638Z" fill="var(--sapContent_Illustrative_Color17)"/>
40
+ <path d="M25.6948 28.5327L26.7133 28.8051C26.7602 28.8186 26.777 28.896 26.7334 28.9094L25.7651 29.1853H25.745L24.7365 28.9128C24.6863 28.8993 24.6729 28.822 24.7164 28.8085L25.6814 28.5293H25.7015L25.6948 28.5327Z" fill="var(--sapContent_Illustrative_Color17)"/>
41
+ <path d="M32.0674 26.6894L33.1731 26.9484C33.2233 26.9619 33.2367 27.0426 33.1898 27.0561L32.0071 27.3958H31.987L30.9282 27.1267C30.878 27.1133 30.8646 27.0325 30.9115 27.0191L32.0507 26.686H32.0708L32.0674 26.6894Z" fill="var(--sapContent_Illustrative_Color17)"/>
42
+ <path d="M18.9504 30.2855L17.9151 30.5849H17.8883L17.1378 30.3258C17.0808 30.3056 17.0574 30.2215 17.1076 30.2047L18.1329 29.9087H18.1597L18.9202 30.161C18.9772 30.1812 18.9973 30.2653 18.9504 30.2787V30.2855Z" fill="var(--sapContent_Illustrative_Color17)"/>
43
+ <path d="M22.6358 29.4174L23.5806 29.6832C23.6376 29.7 23.6577 29.7908 23.6074 29.8009L22.4448 30.134H22.418L21.5201 29.8581C21.4631 29.8379 21.443 29.7505 21.4933 29.737L22.6123 29.4141H22.6391L22.6358 29.4174Z" fill="var(--sapContent_Illustrative_Color17)"/>
44
+ <path d="M26.2944 27.5538L27.3397 27.2544H27.3531L28.2913 27.4966C28.3281 27.5067 28.3382 27.5672 28.3047 27.5773L27.256 27.8835H27.2426L26.3112 27.6413C26.2743 27.6312 26.2642 27.574 26.2978 27.5605V27.5538H26.2944Z" fill="var(--sapContent_Illustrative_Color17)"/>
45
+ <path d="M27.9463 26.2623L28.9716 25.9663H28.9917L29.9332 26.1883C29.9868 26.2018 30.0002 26.2859 29.9533 26.2993L28.8912 26.6055H28.8711L27.9631 26.3734C27.9095 26.3599 27.8961 26.2758 27.943 26.2623H27.9497H27.9463Z" fill="var(--sapContent_Illustrative_Color17)"/>
46
+ <path d="M17.6503 29.8585L16.6385 30.1511H16.6117L15.8913 29.9056C15.8343 29.8854 15.8109 29.7979 15.8578 29.7878L16.8529 29.4985H16.883L17.6201 29.7441C17.6771 29.7643 17.7006 29.8518 17.6503 29.8618V29.8585Z" fill="var(--sapContent_Illustrative_Color17)"/>
47
+ <path d="M21.0074 29.8887L21.9053 30.1645C21.9623 30.1847 21.9824 30.2688 21.9321 30.2856L20.8298 30.6052H20.803L19.9386 30.3226C19.8816 30.3024 19.8615 30.2183 19.9084 30.2049L20.9772 29.8954H21.004L21.0074 29.8887Z" fill="var(--sapContent_Illustrative_Color17)"/>
48
+ <path d="M20.3441 30.7397L19.2753 31.0492H19.2485L18.4042 30.7632C18.3472 30.743 18.3271 30.6589 18.374 30.6455L19.4227 30.3394H19.4495L20.3139 30.6219C20.3709 30.6421 20.391 30.7262 20.3441 30.7397Z" fill="var(--sapContent_Illustrative_Color17)"/>
49
+ <path d="M24.2104 28.9634L25.2223 29.2359C25.2692 29.2493 25.2859 29.3267 25.2424 29.3368L24.1367 29.653H24.1166L23.1349 29.3738C23.0847 29.357 23.0679 29.283 23.1148 29.2729L24.1903 28.9634H24.2104Z" fill="var(--sapContent_Illustrative_Color17)"/>
50
+ <path d="M21.7177 28.8761L22.7597 28.5767H22.7798L23.6509 28.8121C23.7011 28.8256 23.7179 28.903 23.671 28.9164L22.6122 29.2225H22.5921L21.7411 28.9803C21.6909 28.9635 21.6741 28.8895 21.7177 28.8761Z" fill="var(--sapContent_Illustrative_Color17)"/>
51
+ <path d="M20.153 29.33L21.2117 29.0205H21.2385L22.0527 29.2526C22.1097 29.2694 22.1331 29.3603 22.0795 29.3737L20.9873 29.6899H20.9604L20.1798 29.4477C20.1228 29.4276 20.0994 29.3401 20.1496 29.3266L20.153 29.33Z" fill="var(--sapContent_Illustrative_Color17)"/>
52
+ <path d="M23.2825 28.4252L24.2474 28.146H24.2675L25.1387 28.3815C25.1889 28.3949 25.2023 28.4723 25.1588 28.4858L24.2005 28.765H24.1804L23.3127 28.5295C23.2624 28.516 23.2457 28.4387 23.2926 28.4252H23.2859H23.2825Z" fill="var(--sapContent_Illustrative_Color17)"/>
53
+ <path d="M24.7265 28.0082L25.802 27.6987H25.8154L26.7535 27.9443C26.787 27.9544 26.8004 28.0116 26.7669 28.0217L25.6814 28.3345H25.668L24.7433 28.0856C24.7098 28.0755 24.6964 28.0183 24.7265 28.0082Z" fill="var(--sapContent_Illustrative_Color17)"/>
54
+ <path d="M27.3298 27.0496L26.4352 26.8208C26.385 26.8074 26.3682 26.7233 26.4151 26.7098L27.3834 26.4272H27.4035L28.3115 26.6594C28.3651 26.6728 28.3785 26.7569 28.3316 26.7704L27.36 27.0529H27.3365L27.3298 27.0496Z" fill="var(--sapContent_Illustrative_Color17)"/>
55
+ <path d="M18.6153 29.7706L19.6372 29.4746H19.664L20.4513 29.7202C20.5083 29.7404 20.5317 29.8278 20.4815 29.8379L19.4361 30.1407H19.4093L18.6488 29.8884C18.5918 29.8682 18.5717 29.7807 18.6186 29.7673L18.6153 29.7706Z" fill="var(--sapContent_Illustrative_Color17)"/>
56
+ <path d="M29.7923 27.1436L28.8173 27.4262H28.7972L27.9194 27.2008C27.8691 27.1873 27.8523 27.1066 27.8993 27.0931L28.8742 26.8105H28.8943L29.7722 27.0326C29.8224 27.046 29.8358 27.1268 29.7889 27.1402H29.7956L29.7923 27.1436Z" fill="var(--sapContent_Illustrative_Color17)"/>
57
+ <path d="M24.234 27.9474L23.3026 27.6951C23.2691 27.685 23.2523 27.6278 23.2858 27.6177L24.3312 27.3149H24.3446L25.2961 27.5639C25.3296 27.574 25.343 27.6312 25.3129 27.6412L24.2508 27.9474H24.2374H24.234Z" fill="var(--sapContent_Illustrative_Color17)"/>
58
+ <path d="M22.7429 28.3783L21.8752 28.1462C21.8249 28.1327 21.8081 28.052 21.8517 28.0419L22.8099 27.7627H22.83L23.7011 27.9982C23.7514 28.0116 23.7682 28.0924 23.7213 28.1025L22.763 28.3817H22.7396L22.7429 28.3783Z" fill="var(--sapContent_Illustrative_Color17)"/>
59
+ <path d="M25.7919 27.4968L24.7801 27.2311C24.7566 27.2244 24.7499 27.1907 24.7734 27.1874L25.8522 26.8745H25.8757L26.8942 27.1369C26.9143 27.1436 26.9244 27.1773 26.9009 27.1806L25.8053 27.4968H25.7953H25.7919Z" fill="var(--sapContent_Illustrative_Color17)"/>
60
+ <path d="M21.195 28.8224L20.3507 28.5835C20.3005 28.5667 20.2804 28.4927 20.3273 28.4792L21.3257 28.1899H21.3458L22.2136 28.4221C22.2638 28.4355 22.2806 28.5129 22.237 28.5263L21.2151 28.8224H21.195Z" fill="var(--sapContent_Illustrative_Color17)"/>
61
+ <path d="M19.6204 29.2797L18.8531 29.0442C18.7962 29.024 18.7727 28.9365 18.823 28.9231L19.8248 28.6338H19.8516L20.6557 28.8625C20.7126 28.8794 20.7361 28.9702 20.6858 28.9836L19.6539 29.283H19.6271L19.6204 29.2797Z" fill="var(--sapContent_Illustrative_Color17)"/>
62
+ <path d="M31.9935 27.5034L33.0154 27.7658C33.0623 27.7793 33.0757 27.86 33.0322 27.8735L32.0773 28.1695H32.0572L30.9951 27.897C30.9482 27.8835 30.9314 27.8028 30.9783 27.7894L31.9734 27.5068H31.9935V27.5034Z" fill="var(--sapContent_Illustrative_Color27)"/>
63
+ <path d="M33.7659 26.9922L34.7443 27.2243C34.7945 27.2378 34.8046 27.3185 34.761 27.3319L33.5716 27.702H33.5515L32.5564 27.4463C32.5095 27.4329 32.4961 27.3521 32.5397 27.3387L33.7458 26.9922H33.7659Z" fill="var(--sapContent_Illustrative_Color27)"/>
64
+ <path d="M22.4348 30.2382L23.8017 30.6587C23.8386 30.6688 23.8486 30.726 23.8185 30.7327L22.6224 31.1028H22.6023L21.2353 30.652C21.2018 30.6419 21.1884 30.5814 21.2152 30.578L22.4113 30.2349H22.4348V30.2382Z" fill="var(--sapContent_Illustrative_Color27)"/>
65
+ <path d="M31.5313 28.227L30.4424 27.9478H30.4223L29.9633 28.0789L29.7153 28.1496L29.3937 28.2438L28.0937 28.6172L26.3682 29.1117L25.1386 29.4649C25.1386 29.4649 24.8873 29.5086 24.1201 29.7576L22.8871 30.1108C22.8469 30.1209 22.8636 30.1915 22.9072 30.205L24.2206 30.6087H24.2407L26.4989 29.9056L27.5543 29.5793L28.9849 29.1319L30.9349 28.523L31.5514 28.3346C31.5949 28.3212 31.5815 28.2404 31.5346 28.227H31.5313Z" fill="var(--sapContent_Illustrative_Color27)"/>
66
+ <path d="M16.1325 30.1947L15.325 30.4269H15.2982L14.5678 30.1914C14.5075 30.1712 14.4841 30.0837 14.531 30.0669L15.3585 29.8247H15.3887L16.099 30.0669C16.1559 30.0871 16.1828 30.1746 16.1325 30.1914V30.1947Z" fill="var(--sapContent_Illustrative_Color27)"/>
67
+ <path d="M18.776 31.0897L18.0456 31.3016H18.0188L17.1644 31.0258C17.1041 31.0056 17.084 30.9181 17.1309 30.9047L17.8881 30.686H17.9183L18.7525 30.9686C18.8095 30.9888 18.8329 31.0763 18.7827 31.0897H18.776Z" fill="var(--sapContent_Illustrative_Color27)"/>
68
+ <path d="M17.4124 30.6287L16.6418 30.8507H16.615L15.8478 30.6052C15.7874 30.585 15.764 30.4975 15.8143 30.4807L16.6083 30.252H16.6351L17.3789 30.5076C17.4359 30.5278 17.4593 30.6153 17.4124 30.6321V30.6287Z" fill="var(--sapContent_Illustrative_Color27)"/>
69
+ <path d="M20.8265 30.7025L22.15 31.1365C22.2036 31.1567 22.217 31.2307 22.1734 31.2441L21.0946 31.5772H21.0678L19.7242 31.1197C19.6706 31.0995 19.6539 31.0255 19.6974 31.012L20.793 30.6958H20.8232V30.7025H20.8265Z" fill="var(--sapContent_Illustrative_Color27)"/>
70
+ <path d="M35.5585 26.4741L36.7311 26.7197L35.3139 27.1604L34.1345 26.8812L35.5551 26.4741H35.5585Z" fill="var(--sapContent_Illustrative_Color27)"/>
71
+ <path d="M19.7779 28.3279L19.1313 28.1462C19.081 28.1294 19.0609 28.0521 19.1045 28.042L20.0962 27.7661H20.1163L20.7563 27.9377C20.8065 27.9511 20.8266 28.0319 20.7797 28.042L19.798 28.3279H19.7779Z" fill="var(--sapContent_Illustrative_Color27)"/>
72
+ <path d="M18.2635 28.7685L17.6437 28.5767C17.5867 28.5566 17.5632 28.4657 17.6135 28.4556L18.5851 28.1865H18.6086L19.2284 28.3648C19.2854 28.3816 19.3122 28.4758 19.2586 28.4859L18.2836 28.7685H18.2568H18.2635Z" fill="var(--sapContent_Illustrative_Color27)"/>
73
+ <path d="M18.0824 29.6229L17.3453 29.3773C17.2884 29.3571 17.2649 29.2697 17.3152 29.2562L18.2868 28.9736H18.3136L19.0842 29.2091C19.1412 29.2293 19.1646 29.3168 19.1144 29.3302L18.1126 29.6229H18.0824Z" fill="var(--sapContent_Illustrative_Color27)"/>
74
+ <path d="M21.2823 27.8901L20.6591 27.7219C20.6088 27.7085 20.5887 27.6277 20.6356 27.6143L21.6173 27.3418H21.6374L22.2338 27.5033C22.284 27.5167 22.3008 27.5975 22.2572 27.6109L21.299 27.8901H21.2789H21.2823Z" fill="var(--sapContent_Illustrative_Color27)"/>
75
+ <path d="M14.0083 30.0095L13.3014 29.7807C13.2444 29.7606 13.2176 29.6731 13.2645 29.663L14.1591 29.4141H14.1892L14.8593 29.6428C14.9163 29.663 14.9397 29.7505 14.8928 29.7606L14.0418 30.0095H14.0117H14.0083Z" fill="var(--sapContent_Illustrative_Color27)"/>
76
+ <path d="M22.7699 27.46L22.1266 27.2851C22.0931 27.275 22.0763 27.2178 22.1098 27.2077L23.1585 26.915H23.1719L23.8018 27.0799C23.8353 27.09 23.8521 27.1472 23.8185 27.1572L22.7866 27.4566H22.7699V27.46Z" fill="var(--sapContent_Illustrative_Color27)"/>
77
+ <path d="M15.3285 29.6229L14.6718 29.4009C14.6149 29.3807 14.5914 29.2932 14.6383 29.2798L15.6334 29.0039H15.6636L16.3102 29.2192C16.3672 29.2394 16.3906 29.3268 16.3437 29.3403L15.362 29.6296H15.3319V29.6229H15.3285Z" fill="var(--sapContent_Illustrative_Color27)"/>
78
+ <path d="M16.7992 29.1956L16.166 28.987C16.109 28.9668 16.0856 28.8794 16.1325 28.8659L17.084 28.6035H17.1108L17.744 28.7986C17.801 28.8188 17.8244 28.9063 17.7742 28.9197L16.8227 29.1989H16.7925L16.7992 29.1922V29.1956Z" fill="var(--sapContent_Illustrative_Color27)"/>
79
+ <path d="M29.5478 25.6905L30.4893 25.418H30.5094L31.5045 25.6265C31.5581 25.6366 31.5715 25.7241 31.5246 25.7375L30.5328 26.0269H30.5127L29.5712 25.8048C29.5176 25.7914 29.5042 25.7073 29.5511 25.6938H29.5444L29.5478 25.6905Z" fill="var(--sapContent_Illustrative_Color27)"/>
80
+ <path d="M28.4858 25.4378L29.3938 25.1855H29.4105L29.8494 25.2797C29.903 25.2898 29.9164 25.3807 29.8695 25.3941L28.9649 25.6565H28.9448L28.4992 25.5522C28.4456 25.5388 28.4288 25.4547 28.4791 25.4378H28.4858Z" fill="var(--sapContent_Illustrative_Color27)"/>
81
+ <path d="M25.8187 26.5683L25.3061 26.4372C25.2525 26.4237 25.2391 26.3396 25.286 26.3261L26.2744 26.0503H26.2945L26.7803 26.1748C26.8339 26.1882 26.8473 26.2723 26.8004 26.2858L25.8388 26.5683H25.8187Z" fill="var(--sapContent_Illustrative_Color27)"/>
82
+ <path d="M24.2943 27.0125L23.6778 26.851C23.6443 26.8409 23.6276 26.7837 23.6611 26.7736L24.7064 26.481H24.7198L25.3129 26.6357C25.3464 26.6458 25.3598 26.7063 25.3296 26.7164L24.3044 27.0125H24.291H24.2943Z" fill="var(--sapContent_Illustrative_Color27)"/>
83
+ <path d="M27.3465 26.1173L26.8774 25.9996C26.8238 25.9861 26.8104 25.902 26.8573 25.8886L27.8691 25.6094H27.8892L28.3482 25.717C28.4019 25.7305 28.4186 25.8146 28.3683 25.828L27.3666 26.1241H27.3465V26.1173Z" fill="var(--sapContent_Illustrative_Color27)"/>
84
+ <path d="M20.6423 31.7252L19.9856 31.9304H19.9588L18.5516 31.4796C18.4947 31.4594 18.4712 31.3753 18.5215 31.3619L19.2452 31.1533H19.272L20.6122 31.6108C20.6691 31.631 20.6859 31.7151 20.6423 31.7286V31.7252Z" fill="var(--sapContent_Illustrative_Color27)"/>
85
+ <path d="M28.8041 27.5303L29.9198 27.8162C29.9533 27.8263 29.9633 27.8835 29.9298 27.8936L28.8543 28.2031H28.8409L27.7386 27.9171C27.7051 27.907 27.6917 27.8499 27.7252 27.8398L28.7873 27.5303H28.8041Z" fill="var(--sapContent_Illustrative_Color27)"/>
86
+ <path d="M27.2493 27.978L28.3516 28.2639C28.3851 28.274 28.3951 28.3312 28.365 28.3413L27.2426 28.6642H27.2292L26.1537 28.3749C26.1202 28.3648 26.1068 28.3076 26.1403 28.2976L27.2392 27.9813H27.2526V27.9746L27.2493 27.978Z" fill="var(--sapContent_Illustrative_Color27)"/>
87
+ <path d="M30.3486 27.083L31.4073 27.3521C31.4576 27.3656 31.471 27.4463 31.4241 27.4598L30.4357 27.7423H30.4156L29.3636 27.4732C29.3133 27.4598 29.2999 27.379 29.3468 27.3656L30.3285 27.083H30.3486Z" fill="var(--sapContent_Illustrative_Color27)"/>
88
+ <path d="M34.9286 26.3431L33.7593 26.0976C33.7593 26.0976 32.9082 25.9159 32.9015 25.9159L32.1577 25.7578H32.1376L31.3469 25.9866L29.4271 26.545C29.3836 26.5584 29.397 26.6425 29.4472 26.656L30.3217 26.878H30.3418L32.0907 26.3701L33.7459 26.7906H33.766L34.9386 26.4542C34.9855 26.4407 34.9721 26.3532 34.9219 26.3431H34.9286Z" fill="var(--sapContent_Illustrative_Color27)"/>
89
+ <path d="M25.6781 28.4354L26.6966 28.7079C26.7435 28.7214 26.7603 28.7987 26.7167 28.8122L25.7484 29.0881H25.7283L24.7165 28.8122C24.6662 28.7987 24.6528 28.7214 24.6964 28.7079L25.6613 28.4287H25.6814V28.4354H25.6781Z" fill="var(--sapContent_Illustrative_Color27)"/>
90
+ <path d="M32.0539 26.5883L33.1596 26.8474C33.2098 26.8608 33.2232 26.9449 33.1763 26.955L31.9936 27.2948H31.9735L30.9147 27.0256C30.8645 27.0122 30.8511 26.9315 30.8946 26.918L32.0372 26.585H32.0573L32.0539 26.5883Z" fill="var(--sapContent_Illustrative_Color27)"/>
91
+ <path d="M18.9267 30.1878L17.8914 30.4872H17.8646L17.1141 30.2282C17.0572 30.208 17.0337 30.1239 17.084 30.1071L18.1092 29.811H18.1394L18.9033 30.0633C18.9602 30.0835 18.9803 30.1676 18.9334 30.1844H18.9267V30.1878Z" fill="var(--sapContent_Illustrative_Color27)"/>
92
+ <path d="M22.6158 29.3232L23.5606 29.5924C23.6176 29.6092 23.6377 29.7 23.5874 29.7135L22.4248 30.0465H22.398L21.5001 29.7673C21.4431 29.7471 21.423 29.6596 21.4733 29.6495L22.5923 29.3266H22.6191L22.6158 29.3232Z" fill="var(--sapContent_Illustrative_Color27)"/>
93
+ <path d="M26.2778 27.4566L27.3231 27.1538H27.3365L28.278 27.396C28.3149 27.4061 28.3249 27.4667 28.2914 27.4768L27.2394 27.7829H27.226L26.2946 27.5407C26.2577 27.5306 26.2476 27.47 26.2811 27.4599L26.2778 27.4566Z" fill="var(--sapContent_Illustrative_Color27)"/>
94
+ <path d="M27.9295 26.1647L28.9547 25.8687H28.9748L29.9163 26.0907C29.9699 26.1041 29.9833 26.1882 29.9364 26.2017L28.8743 26.5112H28.8542L27.9462 26.2791C27.8926 26.2656 27.8792 26.1815 27.9261 26.168H27.9328L27.9295 26.1647Z" fill="var(--sapContent_Illustrative_Color27)"/>
95
+ <path d="M17.6234 29.7608L16.6116 30.0535H16.5848L15.8644 29.8079C15.8075 29.7877 15.784 29.7003 15.8309 29.6902L16.826 29.4009H16.8562L17.5966 29.6465C17.6536 29.6666 17.677 29.7541 17.6268 29.7642L17.6234 29.7608Z" fill="var(--sapContent_Illustrative_Color27)"/>
96
+ <path d="M20.9874 29.7944L21.8886 30.0703C21.9456 30.0905 21.9657 30.1746 21.9154 30.188L20.8098 30.5076H20.783L19.9186 30.225C19.8616 30.2048 19.8415 30.1207 19.8884 30.1073L20.9572 29.7978H20.984L20.9874 29.7944Z" fill="var(--sapContent_Illustrative_Color27)"/>
97
+ <path d="M20.3241 30.6488L19.2553 30.9583H19.2285L18.3841 30.6723C18.3272 30.6522 18.3071 30.5681 18.354 30.5512L19.4027 30.2451H19.4295L20.2972 30.5277C20.3542 30.5479 20.3743 30.632 20.3274 30.6454L20.3241 30.6488Z" fill="var(--sapContent_Illustrative_Color27)"/>
98
+ <path d="M24.1904 28.8657L25.2022 29.1382C25.2492 29.1517 25.2659 29.229 25.2224 29.2425L24.1167 29.5587H24.0966L23.1149 29.2795C23.0647 29.2627 23.0479 29.1887 23.0948 29.1752L24.1703 28.8657H24.1938H24.1904Z" fill="var(--sapContent_Illustrative_Color27)"/>
99
+ <path d="M21.6976 28.7784L22.7396 28.479H22.7597L23.6309 28.7145C23.6811 28.7279 23.6979 28.8053 23.651 28.8188L22.5922 29.1283H22.5721L21.7211 28.886C21.6708 28.8692 21.6541 28.7952 21.6976 28.7818V28.7784Z" fill="var(--sapContent_Illustrative_Color27)"/>
100
+ <path d="M20.1263 29.2328L21.1884 28.9233H21.2152L22.0294 29.1555C22.0863 29.1723 22.1098 29.2631 22.0562 29.2766L20.9606 29.5928H20.9338L20.1498 29.3506C20.0928 29.3304 20.0694 29.2429 20.1196 29.2295H20.1263V29.2328Z" fill="var(--sapContent_Illustrative_Color27)"/>
101
+ <path d="M23.2624 28.3276L24.2273 28.0483H24.2474L25.1185 28.2838C25.1688 28.2973 25.1822 28.3746 25.1386 28.3881L24.177 28.6673H24.1569L23.2858 28.4318C23.2356 28.4184 23.2188 28.341 23.2657 28.3276H23.2624Z" fill="var(--sapContent_Illustrative_Color27)"/>
102
+ <path d="M24.7065 27.9106L25.782 27.6011H25.7954L26.7369 27.8466C26.7704 27.8567 26.7838 27.9139 26.7503 27.924L25.6614 28.2402H25.648L24.7232 27.9879C24.6897 27.9778 24.6763 27.9207 24.7065 27.9106Z" fill="var(--sapContent_Illustrative_Color27)"/>
103
+ <path d="M27.3097 26.9485L26.4118 26.7163C26.3615 26.7029 26.3448 26.6188 26.3917 26.6053L27.36 26.3228H27.3801L28.288 26.5549C28.3417 26.5683 28.3551 26.6524 28.3081 26.6659L27.3332 26.9485H27.3131H27.3097Z" fill="var(--sapContent_Illustrative_Color27)"/>
104
+ <path d="M18.5918 29.6764L19.6171 29.3804H19.6439L20.4312 29.6259C20.4882 29.6461 20.5117 29.7336 20.4614 29.7437L19.4127 30.0464H19.3859L18.6253 29.7941C18.5684 29.774 18.5483 29.6865 18.5952 29.673L18.5918 29.6764Z" fill="var(--sapContent_Illustrative_Color27)"/>
105
+ <path d="M29.7757 27.0425L28.8007 27.3251H28.7806L27.9028 27.0997C27.8525 27.0862 27.8357 27.0055 27.8827 26.992L28.861 26.7095H28.8811L29.7589 26.9349C29.8092 26.9483 29.8226 27.0291 29.7757 27.0425Z" fill="var(--sapContent_Illustrative_Color27)"/>
106
+ <path d="M24.2138 27.8468L23.2823 27.5945C23.2488 27.5844 23.2321 27.5272 23.2656 27.5171L24.3109 27.2144H24.3243L25.2759 27.4633C25.3094 27.4734 25.3228 27.5306 25.2926 27.5407L24.2305 27.8501H24.2171V27.8434L24.2138 27.8468Z" fill="var(--sapContent_Illustrative_Color27)"/>
107
+ <path d="M22.7229 28.2772L21.8551 28.0451C21.8049 28.0316 21.7881 27.9509 21.8317 27.9408L22.7899 27.6582H22.81L23.6811 27.8937C23.7314 27.9071 23.7481 27.9879 23.7012 27.998L22.7397 28.2772H22.7195H22.7229Z" fill="var(--sapContent_Illustrative_Color27)"/>
108
+ <path d="M25.7719 27.3958L24.7601 27.13C24.7366 27.1233 24.7299 27.0897 24.7534 27.0863L25.8356 26.7734H25.859L26.8776 27.0358C26.8977 27.0426 26.9077 27.0762 26.8843 27.0796L25.7887 27.3991H25.7753L25.7719 27.3958Z" fill="var(--sapContent_Illustrative_Color27)"/>
109
+ <path d="M21.1716 28.7281L20.3273 28.4859C20.277 28.4691 20.2569 28.395 20.3038 28.3816L21.3023 28.0923H21.3224L22.1901 28.3278C22.2404 28.3412 22.2572 28.4186 22.2136 28.432L21.1917 28.7281H21.1716Z" fill="var(--sapContent_Illustrative_Color27)"/>
110
+ <path d="M19.5969 29.182L18.8297 28.9465C18.7727 28.9264 18.7493 28.8389 18.7995 28.8254L19.8013 28.5361H19.8281L20.6322 28.7649C20.6892 28.7817 20.7127 28.8725 20.6624 28.886L19.6271 29.182H19.6003H19.5969Z" fill="var(--sapContent_Illustrative_Color27)"/>
111
+ <path d="M21.8577 12.7139C22.1639 12.6774 22.4429 12.8957 22.4846 13.1982L22.4856 13.207L22.7532 15.3203L22.7571 15.4336C22.7391 15.6921 22.5371 15.9117 22.2737 15.9521L22.2747 15.9531L22.1077 15.9795L22.0735 15.9844L20.0627 16.2949L20.0637 16.2959C19.749 16.346 19.4474 16.1393 19.4045 15.8193L19.4016 15.7031C19.4223 15.437 19.6361 15.2134 19.9055 15.1738L21.0042 15.0127C20.9131 14.9255 20.8169 14.8426 20.7131 14.7686L20.5032 14.6328C20.0327 14.3555 19.4668 14.2091 18.8704 14.2363L18.6135 14.2578C17.0014 14.4673 15.8201 15.8599 15.9397 17.3682L15.9553 17.5146V17.5176L15.9875 17.7002C16.0013 17.7609 16.0184 17.8226 16.0364 17.8867L16.1194 18.1299C16.5949 19.3152 17.9133 20.0201 19.3127 19.7441L19.3323 19.7402H19.3362C20.2646 19.5497 21.0426 18.9476 21.4612 18.1729C21.6344 17.8501 21.7485 17.5025 21.7825 17.1426L21.7834 17.1377L21.8069 17.0293C21.8971 16.7465 22.1078 16.6038 22.3909 16.6182C22.7046 16.6342 22.9332 16.9086 22.9016 17.2158C22.8908 17.3339 22.8724 17.4471 22.8518 17.5576V17.5596C22.5634 19.0564 21.3667 20.3371 19.8118 20.7842L19.4963 20.8623C19.1784 20.9282 18.8617 20.9589 18.551 20.9551L18.2424 20.9404C16.8521 20.8212 15.6261 20.018 15.0422 18.7959L14.9338 18.5459C14.8319 18.2845 14.7534 18.0036 14.7141 17.707L14.6917 17.4961C14.516 15.3277 16.223 13.3868 18.467 13.1211L18.6672 13.1016C19.598 13.0341 20.4853 13.2692 21.2053 13.7305L21.3577 13.833L21.4329 13.8896L21.4153 13.749L21.3645 13.3408C21.3282 13.0325 21.5511 12.7506 21.8577 12.7139ZM21.4915 18.5068C21.494 18.5042 21.4977 18.5026 21.5002 18.5C21.5034 18.494 21.5058 18.4876 21.509 18.4814C21.5034 18.4901 21.4971 18.4982 21.4915 18.5068ZM21.9973 17.0889C21.9898 17.112 21.9847 17.1363 21.9817 17.1611L21.9778 17.1875C21.9788 17.1786 21.9818 17.1698 21.9827 17.1611C21.9856 17.1365 21.9909 17.1113 21.9983 17.0859L21.9973 17.0889ZM20.6047 14.46C20.6512 14.4873 20.6956 14.5182 20.7405 14.5479C20.6996 14.519 20.6548 14.4894 20.6047 14.46C20.5627 14.4352 20.5194 14.413 20.4758 14.3916C20.519 14.4143 20.5629 14.4353 20.6047 14.46Z" fill="var(--sapContent_Illustrative_Color23)"/>
112
+ </g>
113
+ <defs>
114
+ <clipPath id="clip0_6813_13685">
115
+ <rect width="45" height="45" fill="var(--sapContent_Illustrative_Color8)"/>
116
+ </clipPath>
117
+ </defs>
118
+ </svg>`;
@@ -0,0 +1,24 @@
1
+ export default `<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Dot-UnableToLoadImage">
2
+ <path d="M44.4756 38.537L18.1831 32.873L2.65432 36.7949L0.524475 38.537L25.9092 44.9999L35.6154 41.2543L35.4744 39.9941L37.1607 40.8049H38.1595L44.4756 38.537Z" fill="var(--sapContent_Illustrative_Color21)"/>
3
+ <path d="M19.8839 6.10809C18.9292 6.10809 18.1507 5.3296 18.1507 4.37484C18.1507 3.42009 18.9292 2.64453 19.8839 2.64453C20.8387 2.64453 21.6172 3.42302 21.6172 4.37778C21.6172 5.33254 20.8387 6.11103 19.8839 6.11103V6.10809ZM19.8839 3.23207C19.2523 3.23207 18.7382 3.74617 18.7382 4.37778C18.7382 5.00939 19.2523 5.52349 19.8839 5.52349C20.5156 5.52349 21.0297 5.00939 21.0297 4.37778C21.0297 3.74617 20.5156 3.23207 19.8839 3.23207Z" fill="var(--sapContent_Illustrative_Color15)"/>
4
+ <path d="M23.6149 21.3655V21.3596L23.5444 21.5594L23.3388 21.3596L17.8394 21.4125L19.3141 29.406L22.2988 31.4007L20.1543 30.8396V30.8337L19.9281 30.775L19.4345 30.6486L19.1848 31.9912L19.0468 30.916L18.2007 27.6698L17.713 26.9207L17.6837 26.762L17.5691 26.1657L17.0697 23.51L16.3352 25.9777L13.7794 21.1921L11.6349 22.0588L11.2736 22.1939L12.8511 20.2051C12.8511 20.2051 5.39815 21.5682 5.2777 21.6769L5.06619 27.2233L4.76654 35.1169L21.9404 39.027L21.9492 38.9477L22.6983 31.4154L23.6971 21.3655H23.6149Z" fill="var(--sapContent_Illustrative_Color2)"/>
5
+ <path d="M25.7564 23.1371L23.8028 41.8121L2.71596 36.7974L3.1243 23.9244L3.20656 20.8633L2.38988 21.6477L1.30586 22.0384L1.00328 22.6171L0.586121 38.5365L25.9709 44.9995L26.4967 44.2475L29.0026 22.3762L27.6336 21.7064L25.7564 23.1371Z" fill="var(--sapContent_Illustrative_Color16)"/>
6
+ <path d="M1.85814 20.9578L1.30585 22.0389L2.38986 21.6482L3.20655 20.8638L3.83522 20.3027L2.56906 20.7228L1.85814 20.9578Z" fill="var(--sapContent_Illustrative_Color3)"/>
7
+ <path opacity="0.5" d="M1.72889 21.8857L1.41749 37.8992L0.586121 38.5367L1.00328 22.6172L1.30586 22.0385L1.72889 21.8857Z" fill="var(--sapContent_Illustrative_Color3)"/>
8
+ <path d="M25.6713 23.9661L25.7565 23.1377L24.5638 22.9585L23.4709 23.7135L21.9462 39.0219L4.77239 35.1118L5.43338 20.5643C4.84584 20.4664 4.30726 20.3684 3.81764 20.2705L3.20659 20.8639L2.71893 36.7922L23.8058 41.8098L25.6713 23.9661Z" fill="var(--sapContent_Illustrative_Color15)"/>
9
+ <path d="M25.7565 23.1374L26.0649 21.1633L26.0121 20.8049L26.0561 20.3818L25.78 20.5287C25.448 20.8489 25.1102 21.1427 24.7165 21.2749C24.4257 21.3337 24.2436 21.3748 24.1231 21.4071L23.6766 21.6451L23.4709 23.7132L24.4815 23.9042L25.7565 23.1345V23.1374Z" fill="var(--sapContent_Illustrative_Color16)"/>
10
+ <path d="M29.1437 20.9987L28.2741 20.5286L27.3987 20.0557L26.0649 21.1632L25.7565 23.1373L27.4574 22.2472L28.9498 22.8201L29.1554 21.0369L29.1583 21.0075L29.1437 20.9987Z" fill="var(--sapContent_Illustrative_Color29)"/>
11
+ <path d="M1.72888 21.8856L2.38986 21.6477L3.20655 20.8633L2.71595 36.7974L1.41748 37.8991L1.72888 21.8856Z" fill="var(--sapContent_Illustrative_Color16)"/>
12
+ <path d="M1.41748 37.8995L2.71595 36.7979L23.8028 41.8125L25.5096 43.9629L1.41748 37.8995Z" fill="var(--sapContent_Illustrative_Color3)"/>
13
+ <path d="M3.53268 17.0328L7.37227 3.21679L29.8693 10.5464L26.0649 21.1574L27.3164 20.5082L28.4738 20.8519L29.6871 20.4641L34.0643 8.60162L5.9181 0L1.15314 17.5176L2.41342 17.0182L2.86876 17.3384L3.53268 17.0328Z" fill="var(--sapContent_Illustrative_Color3)"/>
14
+ <path d="M33.0772 8.83658L28.4738 20.8518L29.6871 20.464L34.0643 8.60156L33.0772 8.83658Z" fill="var(--sapContent_Illustrative_Color29)"/>
15
+ <path d="M5.91809 0L6.47038 0.922441L33.0772 8.83663L34.0643 8.60162L5.91809 0Z" fill="var(--sapContent_Illustrative_Color15)"/>
16
+ <path d="M5.9181 0L6.54677 0.649234L1.89638 17.2238L1.15314 17.5176L5.9181 0Z" fill="var(--sapContent_Illustrative_Color28)"/>
17
+ <path d="M1.8963 17.224L2.41334 17.0183L2.86868 17.3386L3.53261 17.033L4.04671 15.1764L7.37219 3.21697L6.5467 0.649414" fill="var(--sapContent_Illustrative_Color3)"/>
18
+ <path d="M5.34161 20.7923L5.49505 20.5752L5.53114 21.6046L5.38838 21.6415L5.34161 20.7923Z" fill="var(--sapContent_Illustrative_Color3)"/>
19
+ <path d="M3.20655 20.8639L4.25825 20.8522L5.349 20.8047L5.49209 20.576L3.81466 20.2705L3.20361 20.8639H3.20655Z" fill="var(--sapContent_Illustrative_Color3)"/>
20
+ <path d="M7.37219 3.21697L6.54669 0.649414L33.0772 8.83681L29.8692 10.5466L7.37219 3.21697Z" fill="var(--sapContent_Illustrative_Color16)"/>
21
+ <path d="M25.9709 44.9998L25.5096 43.9628L28.1888 20.7666L28.4738 20.8518L29.1583 21.0075L26.4967 44.2477L25.9709 44.9998Z" fill="var(--sapContent_Illustrative_Color29)"/>
22
+ <path d="M8.80292 6.125L5.76239 16.8124L8.77061 17.3353L11.065 17.444L12.0315 18.4663L14.1407 18.6396L14.4668 15.5316L15.401 18.6455L16.0796 18.1579L16.7289 17.6908L17.2312 17.4499L17.7512 17.491L20.0925 17.0474L21.0796 16.8653L21.4233 16.8006L22.4545 16.6097L21.4439 17.0033L21.156 17.112L18.1713 18.2666V18.8805L18.1742 18.8835V18.8864L18.941 19.4945H20.6448H21.4145L23.5502 21.5627L24.4727 18.9481L26.8552 12.1855L8.80292 6.125Z" fill="var(--sapContent_Illustrative_Color2)"/>
23
+ <path d="M29.8692 10.5464L7.37224 3.2168L3.53265 17.0329C3.79705 16.9947 4.06438 16.9623 4.32877 16.933C4.42572 16.9212 4.52266 16.9124 4.62254 16.9036C4.81937 16.886 5.01326 16.8683 5.21009 16.8537C5.39222 16.8419 5.5773 16.8301 5.75944 16.8213C5.82701 16.8184 5.89457 16.8125 5.96214 16.8096C5.89457 16.8096 5.82994 16.8096 5.76238 16.8155L8.80584 6.12807L26.8522 12.1827L23.4327 21.8889C23.6031 21.8683 23.7764 21.8536 23.9497 21.8448H23.9762C24.1495 21.836 24.3258 21.8331 24.5079 21.8419C24.5725 21.836 24.6372 21.8272 24.7018 21.8125C24.7253 21.8066 24.7459 21.8008 24.7694 21.7949C24.8105 21.7861 24.8516 21.7743 24.8927 21.7626C24.9192 21.7538 24.9486 21.742 24.975 21.7332C25.0103 21.7214 25.0455 21.7067 25.0837 21.695C25.1131 21.6832 25.1454 21.6686 25.1748 21.6568C25.2071 21.6421 25.2423 21.6274 25.2747 21.6127C25.307 21.5981 25.3393 21.5804 25.3716 21.5657C25.401 21.5511 25.4333 21.5334 25.4627 21.5187C25.4979 21.5011 25.5332 21.4805 25.5655 21.46C25.5919 21.4453 25.6213 21.4306 25.6477 21.413C25.6889 21.3895 25.7271 21.366 25.7682 21.3425C25.7888 21.3307 25.8093 21.319 25.8299 21.3043C25.9063 21.2573 25.9856 21.2103 26.062 21.1633L29.8634 10.5523V10.5464H29.8692Z" fill="var(--sapContent_Illustrative_Color15)"/>
24
+ </svg>`;
@@ -0,0 +1,10 @@
1
+ export default `<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Dot-UnableToUpload">
2
+ <path d="M14.1824 7.39318C13.1867 7.89101 0.523198 18.1795 0.523198 18.1795C-0.078345 18.7603 -0.223545 19.673 0.419484 20.2226L22.7907 38.8082C22.8529 38.8601 22.9255 38.9223 22.9877 38.9638C23.4648 39.3164 23.9315 39.5031 24.4708 39.555C24.8235 39.5861 25.1761 39.5031 25.5183 39.3994L28.7489 38.141L16.4537 7.25835C16.4537 7.25835 15.1884 6.89535 14.1927 7.38281L14.1824 7.39318Z" fill="var(--sapContent_Illustrative_Color21)"/>
3
+ <path d="M25.0854 34.2037L2.50684 15.6284V17.1115C2.50684 17.6716 2.73501 18.2005 3.16024 18.5532L24.2661 36.7135C25.7492 37.927 27.0249 38.2589 27.9583 38.2485V34.6496L25.0854 34.214V34.2037Z" fill="var(--sapContent_Illustrative_Color17)"/>
4
+ <path d="M44.1483 26.1559C44.8432 25.5958 44.9884 24.9113 44.9884 24.3512V23.3452L29.7216 34.9094L27.9585 34.6397V38.2386C28.7778 38.2386 29.3379 37.9586 29.5557 37.7719L44.1587 26.1455L44.1483 26.1559Z" fill="var(--sapContent_Illustrative_Color2)"/>
5
+ <path d="M30.4789 36.1748C29.1202 37.3364 26.8903 37.3364 25.5109 36.1748L3.25385 17.3403C2.11299 16.3757 2.29968 14.8304 3.63759 13.8866L17.276 4.64562C18.5102 3.78479 20.4289 3.78479 21.5802 4.64562L43.8891 21.4681C45.2581 22.5052 45.3826 24.1958 44.1484 25.2537L30.4892 36.1748H30.4789Z" fill="var(--sapContent_Illustrative_Color9)"/>
6
+ <path d="M18.0228 5.53745L4.77853 14.5502C3.78287 15.2451 3.64804 16.3963 4.4985 17.1016L25.957 35.1686C26.9734 36.0191 28.6224 36.0191 29.6181 35.1686L42.8935 24.6105C43.8062 23.8223 43.7232 22.5777 42.7068 21.8102L21.2172 5.53745C20.3668 4.89442 18.9459 4.89442 18.0228 5.53745Z" fill="var(--sapContent_Illustrative_Color8)"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.693 24.6275C10.4955 24.7642 9.62975 24.9009 9.40191 24.7034L7.42736 23.0934C7.29066 22.8656 7.19952 22.5466 7.89821 22.3643C8.33869 22.2428 8.58171 22.3643 8.80955 22.5466L10.6322 24.0351C10.86 24.2174 10.8904 24.4908 10.693 24.6275Z" fill="var(--sapContent_Illustrative_Color22)"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0854 24.7334C9.88792 24.8701 9.53857 24.8398 9.31074 24.6423L7.48807 23.1538C7.26024 22.9715 7.22986 22.6981 7.42732 22.5614C7.62477 22.4247 7.97412 22.4551 8.20195 22.6526L10.0246 24.1411C10.2524 24.3233 10.2828 24.5967 10.0854 24.7334Z" fill="var(--sapContent_Illustrative_Color9)"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.7589 15.8046C16.0934 17.713 15.886 20.98 18.4166 23.0646C20.9888 25.1804 25.3448 25.2012 27.9687 23.1269C30.5927 21.0526 30.4475 17.8789 27.9169 15.9291C25.4277 14.0208 21.3518 13.9585 18.7589 15.815V15.8046ZM26.776 18.7916C27.222 18.7916 27.5954 19.082 27.5954 19.4346C27.5954 19.611 27.502 19.7665 27.3568 19.8806C27.2116 19.9947 27.0042 20.0673 26.776 20.0673L24.1002 20.0466L24.0691 22.152C24.0691 22.515 23.6853 22.8054 23.2186 22.8054C22.7519 22.8054 22.3889 22.5046 22.3889 22.1416L22.4408 20.0258L19.7442 20.0051C19.2878 20.0051 18.9248 19.7147 18.9352 19.3517C18.956 18.999 19.3293 18.719 19.7857 18.719L22.4615 18.7501L22.5134 16.7173C22.5134 16.3751 22.8867 16.1054 23.3327 16.1158C23.7787 16.1158 24.1313 16.3958 24.1313 16.7381L24.1002 18.7605L26.7553 18.7916H26.776Z" fill="var(--sapContent_Illustrative_Color23)"/>
10
+ </svg>`;
@@ -0,0 +1,7 @@
1
+ export default `<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Dot-UploadCollection">
2
+ <path d="M0 8.91489C0 7.85733 0.857327 7 1.91489 7H43.0851C44.1427 7 45 7.85733 45 8.91489V37.1596C45 38.2171 44.1427 39.0745 43.0851 39.0745H1.91489C0.857324 39.0745 0 38.2171 0 37.1596V8.91489Z" fill="var(--sapContent_Illustrative_Color8)"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.20712 38.9394C1.01804 38.8642 0.843784 38.7597 0.689938 38.6315C0.600329 38.5568 0.517651 38.4741 0.442994 38.3845C0.31482 38.2307 0.210307 38.0564 0.135054 37.8673C0.0989841 37.7767 0.0696356 37.6827 0.0476241 37.5859C0.0164572 37.4488 0 37.3061 0 37.1596V33.3602C0.984124 33.3602 1.78191 34.158 1.78191 35.1421V37.1596C1.78191 37.1723 1.7833 37.1825 1.7852 37.1908C1.7914 37.2181 1.79694 37.2454 1.80183 37.2726C1.82908 37.2775 1.85635 37.2831 1.88362 37.2893C1.89199 37.2912 1.90219 37.2926 1.91489 37.2926H3.87538C4.8595 37.2926 5.65729 38.0903 5.65729 39.0745H1.91489C1.76837 39.0745 1.62568 39.058 1.48859 39.0268C1.39177 39.0048 1.29774 38.9755 1.20712 38.9394ZM19.3807 39.0745C19.3807 38.0903 18.5829 37.2926 17.5988 37.2926H13.6778C12.6937 37.2926 11.8959 38.0903 11.8959 39.0745H19.3807ZM33.1041 39.0745C33.1041 38.0903 32.3063 37.2926 31.3222 37.2926H27.4012C26.4171 37.2926 25.6193 38.0903 25.6193 39.0745H33.1041ZM45 19.2378C44.0159 19.2378 43.2181 20.0356 43.2181 21.0198V25.0547C43.2181 26.0388 44.0159 26.8366 45 26.8366V19.2378ZM25.6193 7C25.6193 7.98412 26.4171 8.78191 27.4012 8.78191H31.3222C32.3063 8.78191 33.1041 7.98412 33.1041 7H25.6193ZM11.8959 7C11.8959 7.98412 12.6937 8.78191 13.6778 8.78191H17.5988C18.5829 8.78191 19.3807 7.98412 19.3807 7H11.8959ZM0 12.7143C0.984124 12.7143 1.78191 11.9165 1.78191 10.9324V8.91489C1.78191 8.90219 1.7833 8.89199 1.7852 8.88363C1.7914 8.85635 1.79694 8.82908 1.80183 8.80183C1.82908 8.79694 1.85635 8.7914 1.88363 8.7852C1.89199 8.7833 1.90219 8.78191 1.91489 8.78191H3.87538C4.8595 8.78191 5.6573 7.98412 5.6573 7H1.91489C1.76837 7 1.62569 7.01646 1.4886 7.04762C1.39178 7.06964 1.29775 7.09898 1.20712 7.13506C1.01804 7.21031 0.843786 7.31482 0.689939 7.44299C0.600332 7.51765 0.517649 7.60033 0.442994 7.68994C0.314818 7.84379 0.210308 8.01804 0.135055 8.20712C0.0989848 8.29775 0.069636 8.39178 0.0476243 8.4886C0.0164573 8.62569 0 8.76837 0 8.91489V12.7143ZM0 19.2378C0.984124 19.2378 1.78191 20.0356 1.78191 21.0198V25.0547C1.78191 26.0388 0.984124 26.8366 0 26.8366V19.2378ZM39.3427 7C39.3427 7.98412 40.1405 8.78191 41.1246 8.78191H43.0851C43.0978 8.78191 43.108 8.7833 43.1164 8.7852C43.1437 8.7914 43.1709 8.79694 43.1982 8.80183C43.2031 8.82908 43.2086 8.85635 43.2148 8.88363C43.2167 8.89199 43.2181 8.90219 43.2181 8.91489V10.9324C43.2181 11.9165 44.0159 12.7143 45 12.7143V8.91489C45 8.76837 44.9835 8.62569 44.9524 8.4886C44.9304 8.39178 44.901 8.29775 44.8649 8.20712C44.7897 8.01805 44.6852 7.84379 44.557 7.68994C44.4824 7.60033 44.3997 7.51765 44.3101 7.44299C44.1562 7.31482 43.982 7.21031 43.7929 7.13505C43.7023 7.09898 43.6082 7.06964 43.5114 7.04762C43.3743 7.01646 43.2316 7 43.0851 7H39.3427ZM45 33.3602C44.0159 33.3602 43.2181 34.158 43.2181 35.1421V37.1596C43.2181 37.1723 43.2167 37.1825 43.2148 37.1908C43.2086 37.2181 43.2031 37.2454 43.1982 37.2726C43.1709 37.2775 43.1437 37.2831 43.1164 37.2893C43.108 37.2912 43.0978 37.2926 43.0851 37.2926H41.1246C40.1405 37.2926 39.3427 38.0903 39.3427 39.0745H43.0851C43.2316 39.0745 43.3743 39.058 43.5114 39.0268C43.6082 39.0048 43.7023 38.9755 43.7929 38.9394C43.982 38.8642 44.1562 38.7597 44.3101 38.6315C44.3997 38.5568 44.4824 38.4741 44.557 38.3845C44.6852 38.2307 44.7897 38.0564 44.8649 37.8674C44.901 37.7767 44.9304 37.6827 44.9524 37.5859C44.9835 37.4488 45 37.3061 45 37.1596V33.3602Z" fill="var(--sapContent_Illustrative_Color2)"/>
4
+ <path d="M27.2981 28.4417C27.4851 28.4417 27.6331 28.4962 27.7422 28.6053C27.8668 28.7144 27.9292 28.8702 27.9292 29.0728C27.9292 29.2598 27.8668 29.4078 27.7422 29.5169C27.6331 29.626 27.4851 29.6805 27.2981 29.6805H17.2467C17.0597 29.6805 16.9039 29.626 16.7792 29.5169C16.6701 29.4078 16.6156 29.2598 16.6156 29.0728C16.6156 28.8702 16.6701 28.7144 16.7792 28.6053C16.9039 28.4962 17.0597 28.4417 17.2467 28.4417H27.2981ZM20.192 21.3356C20.0673 21.4603 19.9193 21.5226 19.7479 21.5226C19.5765 21.5226 19.4284 21.4603 19.3037 21.3356C19.1791 21.2109 19.1167 21.0629 19.1167 20.8915C19.1167 20.7201 19.1791 20.572 19.3037 20.4474L21.7581 17.993C21.8361 17.9306 21.9062 17.8761 21.9685 17.8293C22.0464 17.767 22.1477 17.7358 22.2724 17.7358C22.3971 17.7358 22.4906 17.767 22.5529 17.8293C22.6152 17.8761 22.6854 17.9306 22.7633 17.993L25.2177 20.4474C25.3423 20.572 25.4047 20.7201 25.4047 20.8915C25.4047 21.0629 25.3423 21.2109 25.2177 21.3356C25.093 21.4603 24.945 21.5226 24.7735 21.5226C24.6177 21.5226 24.4774 21.4603 24.3528 21.3356L22.9035 19.8864V25.9171C22.9035 26.1041 22.8412 26.26 22.7165 26.3847C22.6074 26.4937 22.4594 26.5483 22.2724 26.5483C22.0854 26.5483 21.9296 26.4937 21.8049 26.3847C21.6958 26.26 21.6413 26.1041 21.6413 25.9171V19.8864L20.192 21.3356Z" fill="var(--sapContent_Illustrative_Color2)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.6155 29.6919L16.6098 29.6863C16.4466 29.5231 16.3761 29.309 16.3761 29.0729C16.3761 28.8275 16.4431 28.6029 16.6098 28.4361L16.6155 28.4305L16.6215 28.4253C16.7954 28.273 17.0096 28.2024 17.2466 28.2024H27.2979C27.5313 28.2024 27.7432 28.2713 27.9056 28.4305C28.0894 28.5946 28.1684 28.8207 28.1684 29.0729C28.1684 29.3163 28.0851 29.5318 27.9056 29.6919C27.7431 29.8511 27.5313 29.92 27.2979 29.92H17.2466C17.0096 29.92 16.7954 29.8494 16.6215 29.6972L16.6155 29.6919ZM27.742 29.517C27.8667 29.4079 27.929 29.2599 27.929 29.0729C27.929 28.8703 27.8667 28.7145 27.742 28.6054C27.633 28.4963 27.4849 28.4418 27.2979 28.4418H17.2466C17.0596 28.4418 16.9038 28.4963 16.7791 28.6054C16.67 28.7145 16.6155 28.8703 16.6155 29.0729C16.6155 29.2599 16.67 29.4079 16.7791 29.517C16.9038 29.6261 17.0596 29.6807 17.2466 29.6807H27.2979C27.4849 29.6807 27.633 29.6261 27.742 29.517ZM21.5981 17.8144L21.6085 17.8062C21.6867 17.7435 21.758 17.6881 21.8221 17.64C21.9515 17.5378 22.1085 17.4966 22.2723 17.4966C22.4278 17.4966 22.5866 17.5341 22.708 17.6467C22.7697 17.6932 22.838 17.7464 22.9127 17.8062L22.923 17.8144L25.3868 20.2782C25.5549 20.4463 25.6439 20.6547 25.6439 20.8916C25.6439 21.1285 25.5549 21.3368 25.3868 21.505C25.2187 21.6731 25.0103 21.7621 24.7734 21.7621C24.5455 21.7621 24.3465 21.6681 24.1834 21.505L23.1427 20.4643V25.9173C23.1427 26.1635 23.0581 26.3815 22.8856 26.554C22.7224 26.7172 22.5084 26.7877 22.2723 26.7877C22.0353 26.7877 21.8211 26.7171 21.6471 26.5649L21.6351 26.5544L21.6246 26.5424C21.4724 26.3684 21.4018 26.1542 21.4018 25.9173V20.4643L20.3611 21.505C20.193 21.6731 19.9846 21.7621 19.7477 21.7621C19.5108 21.7621 19.3025 21.6731 19.1344 21.505C18.9662 21.3368 18.8772 21.1285 18.8772 20.8916C18.8772 20.6547 18.9662 20.4463 19.1344 20.2782L21.5981 17.8144ZM21.6411 19.8865V25.9173C21.6411 26.1043 21.6957 26.2601 21.8047 26.3848C21.9294 26.4938 22.0853 26.5484 22.2723 26.5484C22.4593 26.5484 22.6073 26.4938 22.7164 26.3848C22.841 26.2601 22.9034 26.1043 22.9034 25.9173V19.8865L24.3526 21.3357C24.4773 21.4604 24.6176 21.5227 24.7734 21.5227C24.9448 21.5227 25.0929 21.4604 25.2175 21.3357C25.3422 21.2111 25.4045 21.063 25.4045 20.8916C25.4045 20.7202 25.3422 20.5721 25.2175 20.4475L22.7631 17.9931C22.6852 17.9307 22.6151 17.8762 22.5528 17.8294C22.4904 17.7671 22.3969 17.7359 22.2723 17.7359C22.1476 17.7359 22.0463 17.7671 21.9684 17.8294C21.906 17.8762 21.8359 17.9307 21.758 17.9931L19.3036 20.4475C19.1789 20.5721 19.1166 20.7202 19.1166 20.8916C19.1166 21.063 19.1789 21.2111 19.3036 21.3357C19.4283 21.4604 19.5763 21.5227 19.7477 21.5227C19.9192 21.5227 20.0672 21.4604 20.1919 21.3357L21.6411 19.8865Z" fill="var(--sapContent_Illustrative_Color2)"/>
6
+ </svg>
7
+ `;
@@ -0,0 +1,9 @@
1
+ export default `<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Dot-UploadToCloud">
2
+ <path d="M15.4362 5.42179C14.3425 5.95381 0.568116 17.014 0.568116 17.014C-0.0863286 17.6398 -0.24139 18.6179 0.454722 19.2147L24.8066 39.1874C24.8759 39.2464 24.9483 39.3055 25.0208 39.3584C25.5557 39.7512 26.0938 39.9583 26.7107 39.9943C27.0499 40.0141 27.3856 39.9389 27.7117 39.8434L29.9524 39.1874L17.9017 5.28362C17.9017 5.28362 16.5298 4.88977 15.4362 5.42179Z" fill="var(--sapContent_Illustrative_Color21)"/>
3
+ <path d="M29.5584 35.8643L26.8276 34.6179L2.25261 14.65L2.24316 16.2415C2.24316 16.8383 2.5046 17.4071 2.96447 17.7957L26.8244 37.9065L27.4796 38.4598C28.182 39.0535 29.0828 39.2928 29.949 39.184V36.8963L29.5553 35.8643H29.5584Z" fill="var(--sapContent_Illustrative_Color22)"/>
4
+ <path d="M31.8711 35.3734L29.9561 36.8996V39.1873C30.5577 39.1127 31.1435 38.8703 31.6318 38.4538L31.8743 38.2486L44.2752 27.6958C44.735 27.3042 44.9996 26.7354 44.9965 26.1386V24.9232L31.8711 35.3765V35.3734Z" fill="var(--sapContent_Illustrative_Color9)"/>
5
+ <path d="M32.7023 36.4703C31.2281 37.7168 28.7933 37.7168 27.3003 36.4703L3.06555 16.2289C1.82767 15.1939 2.02611 13.5309 3.48763 12.5207L14.8239 4.69704C16.1688 3.76765 18.2603 3.76765 19.5108 4.69704L43.7896 22.7751C45.2795 23.8847 45.4181 25.7093 44.0731 26.847L32.7054 36.4703H32.7023Z" fill="var(--sapContent_Illustrative_Color17)"/>
6
+ <path d="M15.6428 5.66005L13.1393 7.39692L14.4351 8.39712C14.7446 8.63669 14.7203 9.023 14.3774 9.26556L9.86498 12.4339C9.50993 12.6824 8.97281 12.6824 8.66328 12.4339L7.37054 11.3947L4.72135 13.2304C3.638 13.9821 3.49537 15.2099 4.41485 15.9735L27.766 35.3935C28.8706 36.3129 30.6641 36.3129 31.7565 35.3935L42.7114 26.1611C43.7098 25.3197 43.6127 23.9721 42.5111 23.1486L19.1174 5.66005C18.1919 4.9683 16.6412 4.9683 15.6428 5.66005Z" fill="var(--sapContent_Illustrative_Color8)"/>
7
+ <path d="M27.0234 18.1347C27.3289 18.371 27.8329 18.371 28.1416 18.1347L28.1479 18.1409C28.4566 17.9047 28.4566 17.5193 28.151 17.2862L25.0705 14.9207H26.4942C26.9226 14.9207 27.2785 14.6534 27.2817 14.327C27.2817 14.0038 26.9352 13.7365 26.5068 13.7365H23.1995C23.0011 13.7333 22.7995 13.7893 22.6451 13.9043C22.4908 14.0193 22.4183 14.1561 22.4089 14.2959L22.3459 16.8479C22.3364 17.1774 22.6861 17.4509 23.1207 17.4509C23.5523 17.4509 23.9145 17.1774 23.9208 16.8479L23.9429 15.7569L27.0234 18.1347Z" fill="var(--sapContent_Illustrative_Color17)"/>
8
+ <path d="M24.2483 25.4889L30.3369 20.7674C31.937 19.5271 31.8929 17.5782 30.2644 16.3411C29.9589 16.108 29.4581 16.108 29.1525 16.3411C28.847 16.5742 28.8439 16.9566 29.1525 17.1928C30.1573 17.9605 30.1888 19.1448 29.2124 19.897L23.1269 24.5906C22.3993 25.1532 21.2055 25.1346 20.4779 24.5533C19.7503 23.972 19.7629 23.0427 20.4905 22.4894L20.963 22.1319C21.2811 21.8895 21.2937 21.4947 20.9882 21.2523C19.8795 20.3726 19.6968 19.0733 20.5378 18.1564C20.7992 17.8766 20.711 17.5036 20.3614 17.3171C20.0054 17.1244 19.5141 17.199 19.2621 17.4725C18.1187 18.7128 18.166 20.3913 19.3282 21.6657C18.0148 22.7007 17.9644 24.3699 19.3062 25.4547C20.648 26.5395 22.8844 26.5551 24.2577 25.492L24.2483 25.4889Z" fill="var(--sapContent_Illustrative_Color17)"/>
9
+ </svg>`;
@@ -0,0 +1,8 @@
1
+ export default `<svg width="45" height="45" viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Dot-UserHasSignedUp">
2
+ <path d="M15.4362 5.42155C14.3425 5.95356 0.568116 17.0137 0.568116 17.0137C-0.0863286 17.6395 -0.24139 18.6176 0.454722 19.2144L24.8066 39.1871C24.8759 39.2462 24.9483 39.3053 25.0208 39.3581C25.5557 39.7509 26.0938 39.9581 26.7107 39.9941C27.0499 40.0139 27.3856 39.9386 27.7117 39.8432L29.9524 39.1871L17.9017 5.28337C17.9017 5.28337 16.5298 4.88953 15.4362 5.42155Z" fill="var(--sapContent_Illustrative_Color21)"/>
3
+ <path d="M29.5585 35.8642L26.8276 34.6178L2.25261 14.6499L2.24316 16.2414C2.24316 16.8382 2.5046 17.407 2.96447 17.7955L26.8244 37.9064L27.4796 38.4597C28.182 39.0534 29.0828 39.2927 29.949 39.1839V36.8962L29.5553 35.8642H29.5585Z" fill="var(--sapContent_Illustrative_Color1)"/>
4
+ <path d="M31.8711 35.3735L29.9561 36.8997V39.1874C30.5577 39.1128 31.1435 38.8704 31.6318 38.4539L31.8743 38.2487L44.2752 27.696C44.735 27.3043 44.9996 26.7355 44.9965 26.1387V24.9233L31.8711 35.3766V35.3735Z" fill="var(--sapContent_Illustrative_Color24)"/>
5
+ <path d="M32.7023 36.4703C31.2281 37.7168 28.7933 37.7168 27.3003 36.4703L3.06555 16.2289C1.82767 15.1939 2.02611 13.5309 3.48763 12.5207L14.8239 4.69704C16.1688 3.76765 18.2603 3.76765 19.5108 4.69704L43.7896 22.7751C45.2795 23.8847 45.4181 25.7093 44.0731 26.847L32.7054 36.4703H32.7023Z" fill="var(--sapContent_Illustrative_Color11)"/>
6
+ <path d="M15.6428 5.65993L13.1393 7.3968L14.4351 8.397C14.7446 8.63657 14.7203 9.02287 14.3774 9.26544L9.86498 12.4337C9.50993 12.6823 8.97281 12.6823 8.66328 12.4337L7.37054 11.3946L4.72135 13.2303C3.638 13.9819 3.49537 15.2097 4.41485 15.9734L27.766 35.3934C28.8706 36.3127 30.6641 36.3127 31.7565 35.3934L42.7114 26.161C43.7098 25.3195 43.6127 23.972 42.5111 23.1484L19.1174 5.65993C18.1919 4.96817 16.6412 4.96817 15.6428 5.65993Z" fill="var(--sapContent_Illustrative_Color8)"/>
7
+ <path d="M23.1441 12.9533C23.0919 12.4232 23.4823 11.9347 24.0315 11.8898C24.5663 11.8386 25.0589 12.2252 25.1044 12.7685L26.2425 24.17C26.2688 24.4419 26.1767 24.7169 25.9884 24.9205L25.9741 24.9354C25.7677 25.1537 25.4725 25.248 25.1817 25.2238L25.1803 25.224L20.0868 24.7603C19.5475 24.7092 19.1472 24.2403 19.1988 23.7031C19.2502 23.169 19.7241 22.7727 20.2667 22.8236L24.1646 23.1791L23.1441 12.9533Z" fill="var(--sapContent_Illustrative_Color9)"/>
8
+ </svg>`;
@@ -0,0 +1,29 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-Achievement">
2
+ <rect y="59" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M179.494 59.2514C179.315 60.0213 179.205 60.8011 179.175 61.5709C179.025 60.7711 178.886 60.0013 178.736 59.2514H97.7911C98.0006 60.2712 98.6891 63.6905 98.8787 64.5603C99.0883 65.5801 100.056 66.4 101.633 67.0198C101.713 67.5497 101.802 68.1196 101.902 68.7695C102.212 70.6591 102.641 73.0386 103.229 75.7781C103.249 75.8681 103.269 75.958 103.289 76.048C102.7 75.0982 101.972 74.2084 101.044 73.4585C99.218 71.9888 96.8032 70.1992 92.2431 70.0592C86.8048 69.8893 83.013 73.6285 82.2846 77.9076C81.0174 83.9164 83.8412 91.5049 93.6001 98.1435C105.205 105.152 113.657 110.251 115.363 114.26C116.381 116.63 116.251 118.09 115.802 118.669C115.353 119.249 114.325 119.179 113.747 119.079C112.689 118.899 111.701 119.619 111.521 120.669C111.342 121.709 112.06 122.719 113.108 122.899C113.906 123.029 114.665 123.059 115.363 122.959C116.8 122.769 117.997 122.109 118.826 121.049C119.544 120.129 119.913 118.979 119.963 117.66C120.033 117.75 120.103 117.84 120.173 117.93C120.262 118.04 120.352 118.159 120.442 118.279C120.562 118.429 120.682 118.589 120.811 118.739C120.911 118.859 121.011 118.979 121.111 119.099C121.24 119.249 121.37 119.399 121.5 119.559C121.61 119.679 121.719 119.809 121.829 119.929C121.959 120.079 122.098 120.229 122.238 120.379C122.358 120.509 122.468 120.629 122.587 120.759C122.727 120.909 122.867 121.049 123.007 121.199C123.126 121.329 123.256 121.449 123.386 121.579C123.535 121.729 123.675 121.869 123.825 122.019C123.954 122.149 124.084 122.279 124.224 122.399C124.374 122.539 124.523 122.679 124.683 122.829C124.823 122.959 124.962 123.088 125.102 123.208C125.262 123.348 125.411 123.488 125.571 123.628C125.721 123.758 125.86 123.878 126.01 124.008C126.17 124.148 126.339 124.278 126.499 124.418C126.649 124.538 126.798 124.668 126.958 124.788C127.128 124.928 127.297 125.058 127.467 125.188C127.627 125.308 127.776 125.438 127.936 125.558C128.115 125.688 128.295 125.818 128.475 125.958C128.634 126.078 128.794 126.198 128.954 126.308C129.143 126.448 129.343 126.578 129.542 126.718C129.692 126.828 129.852 126.928 130.001 127.038C130.351 127.268 130.7 127.498 131.049 127.718C131.219 127.828 131.398 127.928 131.578 128.037C131.768 128.157 131.967 128.277 132.157 128.387C132.346 128.497 132.536 128.607 132.725 128.707C132.915 128.817 133.105 128.927 133.294 129.027C133.494 129.137 133.693 129.237 133.883 129.337C134.073 129.437 134.262 129.537 134.452 129.637C134.651 129.737 134.861 129.837 135.06 129.937C135.25 130.027 135.45 130.127 135.639 130.217C135.849 130.317 136.058 130.407 136.268 130.497C136.457 130.587 136.657 130.667 136.857 130.747C137.066 130.837 137.286 130.927 137.505 131.007C137.705 131.087 137.904 131.157 138.094 131.237C138.254 131.297 138.403 131.357 138.563 131.407C139.092 133.736 140.429 136.446 143.023 137.466C139.621 140.885 136.817 140.575 134.312 142.515C131.807 144.454 128.874 152.173 127.237 156.052C125.601 159.931 124.922 171.149 120.692 175.958C118.197 178.797 107.049 188.952 98.2677 197H143C143.21 196.87 143.193 196.984 143.382 196.884C145.039 196.054 147.414 195.834 149.729 195.694C149.27 196.064 148.629 196.37 148 197H193.635C192.547 191.101 184.264 187.585 173.856 187.835C173.607 187.036 173.358 186.136 173.108 185.126C175.283 183.446 175.064 179.377 176.022 176.168C177 172.868 179.315 172.409 179.734 169.139C179.963 167.35 178.467 164.5 178.467 164.5C179.993 163.36 181.749 161.421 181.34 157.312C181.131 155.172 179.085 152.443 179.085 152.443C182.019 151.453 183.047 149.313 182.647 145.354C182.538 144.224 181.69 143.274 180.821 142.575H180.841C180.841 142.575 180.173 141.985 179.704 141.735C179.325 141.535 178.786 141.295 178.786 141.295H178.776C178.776 141.295 179.774 140.055 179.195 137.486C178.606 134.916 176.74 132.637 175.363 131.957C173.986 131.277 171.721 131.237 168.917 133.096C168.398 133.436 167.899 133.756 167.39 134.076C167.68 133.496 168.089 132.926 168.658 132.377C170.953 130.187 170.085 125.558 169.755 124.168C175.473 118.479 178.945 111.301 180.273 106.202C180.682 106.712 181.171 107.132 181.719 107.452C182.887 108.122 184.234 108.281 185.641 107.912C186.32 107.752 187.008 107.452 187.707 107.022C188.605 106.462 188.904 105.262 188.345 104.362C187.786 103.462 186.609 103.163 185.691 103.722C185.192 104.032 184.264 104.482 183.635 104.112C183.007 103.742 182.338 102.443 182.398 99.8632C182.468 96.8038 185.411 91.9948 189.982 85.6461C189.313 83.4165 188.864 81.107 188.575 78.7475C186.3 82.0168 184.094 85.4861 182.328 88.7954C182.238 85.2562 181.889 81.7069 181.49 77.6377C181.35 76.228 181.191 74.8183 181.011 73.4085C182.578 73.2486 184.274 72.8087 185.382 71.7789C186.26 70.959 186.699 69.8893 186.649 68.6795C186.619 67.6097 186.25 66.45 185.851 65.1102C185.242 63.1306 184.563 60.9211 185.022 59.2114H179.474L179.494 59.2514ZM96.3741 93.6045C90.2174 89.8852 87.2638 83.5165 88.0621 79.7373C88.5012 76.028 93.1511 73.5785 97.1924 76.9378C100.785 79.8315 100.906 82.7919 104.536 90.5754C107.649 97.2494 109.823 100.37 113.068 105.482C108.398 101.233 101.942 96.9538 96.3841 93.5945L96.3741 93.6045Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M164.167 193.895L167.261 204.502C167.43 205.212 167.75 205.872 168.209 206.442C170.304 209.042 176.67 214.91 191.937 212.381C208.352 209.651 213.331 201.093 214.988 197.334C215.377 196.444 215.457 195.454 215.207 194.515L213.072 182.817L164.167 193.895Z" fill="var(--sapContent_Illustrative_Color3)"/>
5
+ <path d="M168.229 192.975L164.167 193.894L167.261 204.502C167.43 205.212 167.75 205.872 168.209 206.442C169.486 208.022 172.34 210.811 177.818 212.191L176.401 202.073L168.229 192.975Z" fill="var(--sapContent_Illustrative_Color29)"/>
6
+ <path d="M191.552 201.327C205.054 198.268 214.69 189.981 213.074 182.818C211.457 175.655 199.201 172.328 185.698 175.387C172.196 178.446 162.56 186.732 164.176 193.895C165.793 201.058 178.049 204.385 191.552 201.327Z" fill="var(--sapContent_Illustrative_Color26)"/>
7
+ <path d="M165.644 187.186C164.237 189.405 163.678 191.705 164.177 193.894C165.135 198.164 169.885 201.063 176.411 202.073L197.914 184.946L165.644 187.186Z" fill="var(--sapContent_Illustrative_Color16)"/>
8
+ <path d="M167.89 126.008C166.662 122.019 167.64 120.649 167.64 120.649L155.387 119.189C155.985 121.539 157.442 124.278 160.126 125.218C163.449 126.388 166.163 131.417 166.163 131.417C166.163 131.417 166.273 131.777 166.463 132.417L175.304 130.047C175.304 130.047 169.117 129.997 167.89 126.008Z" fill="var(--sapContent_Illustrative_Color16)"/>
9
+ <path d="M164.687 195.504C164.687 195.504 167.541 194.864 171.033 195.484C174.525 196.104 180.423 193.145 183.276 190.445C186.13 187.746 185.961 177.658 185.961 177.658L169.985 182.427C169.985 182.427 163.26 187.476 164.018 193.055C164.248 194.734 164.677 195.504 164.677 195.504H164.687Z" fill="var(--sapContent_Illustrative_Color29)"/>
10
+ <path d="M200.03 181.817C199.711 180.417 198.593 179.307 196.937 178.557C195.919 177.938 194.811 177.638 194.811 177.638C190.141 174.578 184.553 126.618 184.553 126.618C184.553 126.618 182.368 122.439 185.571 119.129C188.186 116.43 186.22 110.471 186.22 110.471C171.262 121.799 155.257 118.6 155.257 118.6C155.297 118.79 155.337 118.989 155.397 119.179L167.65 120.639C167.65 120.639 166.662 122.009 167.899 125.998C169.127 129.987 175.313 130.037 175.313 130.037L166.473 132.407C168.239 138.256 178.437 177.118 178.427 181.487C176.072 183.286 174.815 185.446 175.264 187.426C176.082 191.055 182.288 192.735 189.134 191.185C195.979 189.635 200.858 185.436 200.04 181.807L200.03 181.817Z" fill="var(--sapContent_Illustrative_Color26)"/>
11
+ <path d="M200.18 181.727C199.861 180.327 198.743 179.217 197.087 178.468C195.51 177.878 194.961 177.548 194.961 177.548C194.003 176.988 193.684 176.278 193.125 174.968C192.127 175.978 192.287 177.308 194.512 179.087C201.467 184.656 189.114 191.185 189.114 191.185C195.959 189.635 200.988 185.346 200.17 181.717L200.18 181.727Z" fill="var(--sapContent_Illustrative_Color27)"/>
12
+ <path d="M115.453 53.4229C115.453 53.4229 119.415 81.7172 134.761 104.293C140.349 112.511 155.137 123.649 170.724 120.159C186.31 116.67 194.392 101.023 196.208 92.1951C198.563 80.7474 197.585 73.8988 196.208 63.9408C194.233 49.6237 189.822 34.4268 189.822 34.4268L115.453 53.4229Z" fill="var(--sapContent_Illustrative_Color26)"/>
13
+ <path d="M201.567 94.0148C200.18 94.4447 198.823 94.3347 197.635 93.7148C195.46 92.5751 194.233 89.8956 194.163 86.1663C194.043 79.4777 200.998 67.95 206.855 59.4717C210.946 53.5429 211.026 46.5344 208.751 43.405C206.835 40.1956 201.587 39.8857 199.282 44.6048C198.364 46.4044 199.272 48.9939 200.07 51.2634C200.529 52.5831 200.938 53.7329 201.008 54.8027C201.098 56.0124 200.708 57.0922 199.86 57.9421C197.635 60.1816 192.756 59.9417 191.798 59.8717C190.74 59.7917 189.942 58.8719 190.022 57.8021C190.101 56.7423 191.019 55.9425 192.087 56.0224C194.442 56.2024 193.564 56.5623 193.833 56.0424C193.833 56.0424 192.666 54.1728 192.676 54.1228C192.636 53.5629 194.422 53.7029 194.083 52.7231C193.135 50.0137 192.696 46.2744 194.352 43.0151C195.41 40.9255 196.877 38.296 200.978 36.2964C205.867 33.9069 210.857 35.7565 213.271 39.3558C216.883 44.3048 217.422 52.3932 211.246 62.4611C203.532 73.6289 197.925 81.7572 198.004 86.1164C198.044 88.6958 198.763 89.9756 199.411 90.3155C200.06 90.6554 200.968 90.1655 201.457 89.8456C202.345 89.2457 203.542 89.4957 204.131 90.3755C204.72 91.2553 204.48 92.4651 203.602 93.055C202.924 93.5049 202.245 93.8348 201.577 94.0348L201.567 94.0148Z" fill="var(--sapContent_Illustrative_Color26)"/>
14
+ <path d="M131.897 111.801C131.209 111.931 130.451 111.931 129.642 111.831C128.595 111.691 127.836 110.722 127.976 109.672C128.116 108.622 129.074 107.862 130.131 108.002C130.71 108.072 131.748 108.112 132.167 107.512C132.586 106.912 132.666 105.453 131.548 103.123C129.682 99.1938 121.041 94.4248 109.167 87.8861C99.1483 81.6374 96.035 74.1589 97.0628 68.1101C97.6316 63.811 101.274 59.9218 106.702 59.8718C111.262 59.8318 113.747 61.5215 115.623 62.9212C118.556 65.1007 119.824 68.65 120.183 71.4894C120.313 72.5192 121.839 71.5894 122.059 72.1093C122.079 72.1493 121.879 74.3489 121.879 74.3489C122.358 74.6888 121.41 74.7688 123.436 73.549C124.344 72.9991 125.521 73.2991 126.07 74.2189C126.619 75.1287 126.32 76.3085 125.401 76.8584C124.573 77.3483 120.313 79.7478 117.329 78.738C116.191 78.3481 115.363 77.5582 114.904 76.4384C114.495 75.4486 114.355 74.2389 114.176 72.8492C113.876 70.4596 113.537 67.7502 111.911 66.5404C107.74 63.3511 103.18 65.9706 102.9 69.6998C102.262 73.509 105.455 79.7478 111.761 83.2271C120.781 88.1961 132.137 95.3946 135.011 101.433C136.617 104.803 136.707 107.752 135.27 109.742C134.482 110.831 133.314 111.531 131.887 111.771L131.897 111.801Z" fill="var(--sapContent_Illustrative_Color16)"/>
15
+ <path d="M182.378 39.9756C182.378 39.9756 190.251 65.3504 189.892 82.0171C189.733 89.3656 188.565 93.9747 184.923 98.8337C184.264 99.7135 182.997 100.883 182.129 101.653C181.959 101.803 181.71 101.613 181.8 101.413C182.758 99.3136 184.424 93.6647 182.837 81.3472C181.081 67.8 173.059 44.1048 173.059 44.1048L182.388 39.9856L182.378 39.9756Z" fill="var(--sapContent_Illustrative_Color27)"/>
16
+ <path d="M144.65 59.7415C162.521 53.2428 173.478 47.1641 173.478 47.1641L129.004 49.9535L115.453 53.4128C115.453 53.4128 119.415 81.7071 134.761 104.283C139.98 111.971 153.261 122.199 167.71 120.649C146.286 110.211 138.154 88.4057 135.081 74.1086C133.564 67.06 134.941 63.2708 144.65 59.7415Z" fill="var(--sapContent_Illustrative_Color15)"/>
17
+ <path d="M190.62 28.6179C189.802 25.3586 171.482 27.1782 149.709 32.6871C127.936 38.196 110.943 45.2946 111.761 48.5539L112.349 50.9734L118.706 53.093L149.15 35.5365C149.549 35.4366 149.938 35.3266 150.337 35.2266C156.115 33.7669 162.431 32.5472 168.308 31.5773L186.12 35.1766L190.69 31.4674L190.999 30.1176L190.61 28.6079L190.62 28.6179Z" fill="var(--sapContent_Illustrative_Color26)"/>
18
+ <path d="M192.038 34.167C191.798 33.2372 190.621 28.6182 190.621 28.6182C191.439 31.8775 183.217 39.6459 153.331 47.0344C123.446 54.4229 112.579 51.8235 111.761 48.5641C111.761 48.5641 112.869 53.1132 113.128 54.123C114.366 59.042 133.035 58.5621 154.828 53.0532C176.621 47.5443 193.275 39.086 192.038 34.167Z" fill="var(--sapContent_Illustrative_Color27)"/>
19
+ <path d="M107.299 197C107.299 197 135.29 169.539 139.331 164.56C143.373 159.581 143.612 148.344 145.089 144.404C146.566 140.465 149.2 132.637 151.625 130.597C154.049 128.558 156.853 128.768 160.126 125.208C160.126 125.208 161.463 125.488 163.329 127.378C164.906 128.968 165.974 130.977 165.974 130.977C165.974 130.977 174.685 127.898 185.861 119.839C188.595 117.87 190.85 117.82 192.257 118.45C193.664 119.08 195.619 121.279 196.298 123.819C196.977 126.358 196.029 127.638 196.029 127.638C196.029 127.638 199.721 129.108 200.06 131.537C200.609 135.476 199.671 137.666 196.777 138.766C196.777 138.766 198.922 141.405 199.222 143.535C199.79 147.624 198.114 149.633 196.627 150.833C196.627 150.833 198.244 153.613 198.084 155.412C197.795 158.692 195.5 159.241 194.652 162.581C193.803 165.92 194.233 170.099 191.927 171.789C184.813 176.998 182.368 179.487 175.134 182.067C172.3 183.077 166.173 182.587 162.97 184.356C159.767 186.126 148.771 197 148.771 197H107.299Z" fill="var(--sapContent_Illustrative_Color15)"/>
20
+ <path d="M188.036 31.9771C187.298 29.0277 173.408 29.9375 155.956 33.8867L155.936 33.9267C155.936 33.9267 131.778 41.8951 134.861 50.8433C140.349 50.0035 146.666 48.7137 153.321 47.0341C173.308 41.9751 188.844 35.2365 188.026 31.9871L188.036 31.9771Z" fill="var(--sapContent_Illustrative_Color29)"/>
21
+ <path d="M155.935 33.9267L155.955 33.8867C154.129 34.2966 152.253 34.7465 150.357 35.2264C130.371 40.2854 114.834 47.0241 115.652 50.2734C116.201 52.443 123.885 52.5229 134.871 50.8333C131.788 41.8851 155.945 33.9167 155.945 33.9167L155.935 33.9267Z" fill="var(--sapContent_Illustrative_Color16)"/>
22
+ <path d="M162.631 126.748C162.631 126.748 162.102 128.128 160.425 129.408C159.837 129.857 158.789 130.757 158.599 131.467L158.081 138.336C158.081 138.336 159.717 132.307 165.973 130.977C165.973 130.977 164.836 128.568 162.631 126.748Z" fill="var(--sapContent_Illustrative_Color29)"/>
23
+ <path d="M196.049 127.638C196.049 127.638 194.003 129.947 186.09 134.366C178.177 138.785 178.547 139.425 179.544 139.695C180.542 139.965 182.538 141.415 187.467 137.276C190.052 135.116 192.317 132.367 193.794 130.977C195.829 129.057 198.144 128.817 198.144 128.817C198.144 128.817 197.456 128.258 196.977 128.018C196.597 127.828 196.039 127.618 196.039 127.618L196.049 127.638Z" fill="var(--sapContent_Illustrative_Color29)"/>
24
+ <path d="M196.787 138.786C196.787 138.786 188.285 145.454 186.799 146.624C185.312 147.794 185.402 150.923 187.178 149.843C188.954 148.764 191.488 144.754 193.644 142.605C195.799 140.455 197.645 139.975 197.645 139.975L196.787 138.786Z" fill="var(--sapContent_Illustrative_Color29)"/>
25
+ <path d="M196.617 150.763C196.617 150.763 191.069 156.782 190.111 158.372C189.353 159.631 188.146 160.881 186.759 162.391C185.591 163.661 187.746 166.71 189.413 163.531C190.471 161.521 193.185 156.202 194.133 155.242C195.081 154.282 196.807 152.173 196.607 150.763H196.617Z" fill="var(--sapContent_Illustrative_Color29)"/>
26
+ <path d="M159.268 188.156C159.268 188.156 159.338 188.066 159.368 188.026C159.338 188.066 159.298 188.116 159.268 188.156Z" fill="var(--sapContent_Illustrative_Color16)"/>
27
+ <path d="M162.841 184.576C166.054 182.807 172.17 183.296 175.004 182.287C181.281 180.047 183.955 177.878 189.194 173.938C187.138 174.368 185.641 173.139 185.033 171.999C184.125 170.279 179.145 166.32 179.505 162.951C180.113 157.112 180.073 154.442 178.646 155.332C174.346 158.012 172.031 157.202 171.891 154.352C171.502 146.314 168.858 147.254 165.275 145.124C160.585 142.335 160.456 135.126 160.695 133.966C160.795 133.477 159.478 135.186 159.039 135.816C155.576 140.785 151.106 164.08 152.104 171.979C152.752 177.118 151.824 183.856 150.587 186.606C148.462 191.335 143.294 195.11 140.5 197H149C155.296 190.971 160.226 186.006 162.831 184.566L162.841 184.576Z" fill="var(--sapContent_Illustrative_Color16)"/>
28
+ </svg>
29
+ `;
@@ -0,0 +1,49 @@
1
+ export default `<svg width="320" height="202" viewBox="0 0 320 202" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-AddColumn">
2
+ <path d="M305.547 6.15619e-06H14.4533C12.5559 -0.00174584 10.6768 0.37047 8.92329 1.09536C7.16981 1.82026 5.57638 2.88362 4.23409 4.22468C2.8918 5.56573 1.82697 7.15816 1.10045 8.91098C0.373942 10.6638 -8.08861e-07 12.5426 0 14.44V185.547C0 189.38 1.52275 193.056 4.23328 195.767C6.9438 198.477 10.6201 200 14.4533 200H305.547C309.38 200 313.056 198.477 315.767 195.767C318.477 193.056 320 189.38 320 185.547V14.44C320 12.5426 319.626 10.6638 318.9 8.91098C318.173 7.15816 317.108 5.56573 315.766 4.22468C314.424 2.88362 312.83 1.82026 311.077 1.09536C309.323 0.37047 307.444 -0.00174584 305.547 6.15619e-06V6.15619e-06Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M307.616 95.7767L250.515 76.1718C248.094 75.3406 245.459 76.6337 244.629 79.0601L216.168 162.325C215.339 164.751 216.629 167.392 219.05 168.223L276.152 187.828C278.573 188.66 281.208 187.366 282.037 184.94L310.498 101.675C311.328 99.2487 310.037 96.6079 307.616 95.7767Z" fill="var(--sapContent_Illustrative_Color18)"/>
4
+ <path d="M273.369 97.2048C271.484 96.4507 269.418 96.2737 267.432 96.6963C265.447 97.1189 263.631 98.122 262.214 99.5789C260.797 101.036 259.843 102.881 259.473 104.881C259.102 106.881 259.332 108.947 260.133 110.816C260.933 112.685 262.269 114.275 263.971 115.384C265.673 116.492 267.665 117.07 269.694 117.045C271.724 117.019 273.7 116.391 275.374 115.239C277.047 114.088 278.342 112.465 279.096 110.576L269.557 106.764L273.369 97.2048Z" fill="var(--sapContent_Illustrative_Color7)"/>
5
+ <path d="M276.42 95.7939L272.617 105.345L282.147 109.156C282.647 107.902 282.895 106.561 282.878 105.211C282.861 103.86 282.579 102.527 282.047 101.286C281.515 100.045 280.744 98.9209 279.779 97.9786C278.813 97.0363 277.672 96.2939 276.42 95.7939V95.7939Z" fill="var(--sapContent_Illustrative_Color19)"/>
6
+ <path d="M284.329 129.956L244.538 116.295C243.218 115.842 241.781 116.547 241.329 117.87C240.876 119.193 241.58 120.633 242.9 121.086L282.691 134.747C284.011 135.201 285.448 134.496 285.9 133.173C286.352 131.849 285.649 130.41 284.329 129.956Z" fill="var(--sapContent_Illustrative_Color7)"/>
7
+ <path d="M280.888 138.059L241.097 124.397C239.777 123.944 238.34 124.649 237.888 125.972C237.435 127.295 238.139 128.735 239.459 129.189L279.25 142.85C280.57 143.303 282.007 142.598 282.459 141.275C282.911 139.952 282.208 138.512 280.888 138.059Z" fill="var(--sapContent_Illustrative_Color7)"/>
8
+ <path d="M259.033 139.634L237.835 132.356C236.515 131.902 235.078 132.607 234.626 133.931C234.174 135.254 234.877 136.693 236.197 137.147L257.396 144.425C258.716 144.878 260.152 144.173 260.605 142.85C261.057 141.527 260.353 140.087 259.033 139.634Z" fill="var(--sapContent_Illustrative_Color7)"/>
9
+ <path d="M36.2031 116H152.846C154.644 116 156.101 117.452 156.101 119.244V194.526C156.101 196.318 154.644 197.77 152.846 197.77H36.2031C34.4054 197.77 32.9481 196.318 32.9481 194.526V119.244C32.9481 117.452 34.4054 116 36.2031 116Z" fill="var(--sapContent_Illustrative_Color18)"/>
10
+ <path d="M38.9036 120.406H150.307C151.976 120.406 153.328 121.754 153.328 123.417V191.225C153.328 192.888 151.976 194.236 150.307 194.236H38.9036C37.2351 194.236 35.8826 192.888 35.8826 191.225V123.417C35.8826 121.754 37.2351 120.406 38.9036 120.406Z" fill="var(--sapContent_Illustrative_Color7)"/>
11
+ <path d="M15.9999 199.266H169.333L165.484 200.824C165.241 200.92 164.982 200.972 164.721 200.974L19.939 201.333C19.5573 201.335 19.1828 201.229 18.8588 201.028L16.0035 199.256L15.9999 199.266Z" fill="var(--sapContent_Illustrative_Color19)"/>
12
+ <path d="M15.9999 198.707C16.0009 198.437 16.109 198.179 16.3007 197.988C16.4924 197.798 16.7519 197.691 17.0225 197.691H168.311C168.581 197.691 168.841 197.798 169.032 197.988C169.224 198.179 169.332 198.437 169.333 198.707V199.266H15.9999V198.707Z" fill="var(--sapContent_Illustrative_Color18)"/>
13
+ <path d="M101.587 197.659H83.9043V198.018C83.9043 198.398 84.0561 198.764 84.3262 199.033C84.5963 199.302 84.9626 199.453 85.3446 199.453H100.158C100.54 199.453 100.906 199.302 101.176 199.033C101.446 198.764 101.598 198.398 101.598 198.018V197.659H101.587Z" fill="var(--sapContent_Illustrative_Color20)"/>
14
+ <path d="M94.2996 118.881C93.8641 118.881 93.5111 118.53 93.5111 118.096C93.5111 117.662 93.8641 117.31 94.2996 117.31C94.7351 117.31 95.0881 117.662 95.0881 118.096C95.0881 118.53 94.7351 118.881 94.2996 118.881Z" fill="var(--sapContent_Illustrative_Color19)"/>
15
+ <path d="M196.848 26.6667H91.5525C85.1722 26.6667 80 31.839 80 38.2193V168.448C80 174.828 85.1722 180 91.5525 180H196.848C203.228 180 208.4 174.828 208.4 168.448V38.2193C208.4 31.839 203.228 26.6667 196.848 26.6667Z" fill="var(--sapContent_Illustrative_Color8)"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M91.8372 39.081C91.8372 38.5559 91.9614 38.135 92.1098 38.135H179.547C179.7 38.135 179.82 38.5359 179.82 39.081V167.59C179.82 168.115 179.7 168.536 179.547 168.536H92.1098C91.9614 168.536 91.8372 168.135 91.8372 167.59V39.081Z" fill="var(--sapContent_Illustrative_Color8)"/>
17
+ <path d="M179.82 50.4373H91.8372V61.0879H179.82V50.4373Z" fill="var(--sapContent_Illustrative_Color18)"/>
18
+ <path d="M128.166 41.9189H99.2929C97.9203 41.9189 96.8076 43.0316 96.8076 44.4042C96.8076 45.7768 97.9203 46.8895 99.2929 46.8895H128.166C129.539 46.8895 130.651 45.7768 130.651 44.4042C130.651 43.0316 129.539 41.9189 128.166 41.9189Z" fill="var(--sapContent_Illustrative_Color14)"/>
19
+ <path d="M122.133 54.4617H98.2266C97.4429 54.4617 96.8076 55.097 96.8076 55.8807C96.8076 56.6644 97.4429 57.2997 98.2266 57.2997H122.133C122.917 57.2997 123.552 56.6644 123.552 55.8807C123.552 55.097 122.917 54.4617 122.133 54.4617Z" fill="var(--sapContent_Illustrative_Color14)"/>
20
+ <path d="M117.636 64.8757H98.2266C97.4429 64.8757 96.8076 65.511 96.8076 66.2947C96.8076 67.0784 97.4429 67.7138 98.2266 67.7138H117.636C118.42 67.7138 119.055 67.0784 119.055 66.2947C119.055 65.511 118.42 64.8757 117.636 64.8757Z" fill="var(--sapContent_Illustrative_Color14)"/>
21
+ <path d="M120.71 75.7629H98.2266C97.4429 75.7629 96.8076 76.3982 96.8076 77.1819C96.8076 77.9656 97.4429 78.601 98.2266 78.601H120.71C121.494 78.601 122.129 77.9656 122.129 77.1819C122.129 76.3982 121.494 75.7629 120.71 75.7629Z" fill="var(--sapContent_Illustrative_Color14)"/>
22
+ <path d="M108.404 86.1731H98.2266C97.4429 86.1731 96.8076 86.8084 96.8076 87.5921C96.8076 88.3758 97.4429 89.0111 98.2266 89.0111H108.404C109.188 89.0111 109.823 88.3758 109.823 87.5921C109.823 86.8084 109.188 86.1731 108.404 86.1731Z" fill="var(--sapContent_Illustrative_Color14)"/>
23
+ <path d="M108.404 96.8237H98.2266C97.4429 96.8237 96.8076 97.459 96.8076 98.2427C96.8076 99.0264 97.4429 99.6618 98.2266 99.6618H108.404C109.188 99.6618 109.823 99.0264 109.823 98.2427C109.823 97.459 109.188 96.8237 108.404 96.8237Z" fill="var(--sapContent_Illustrative_Color14)"/>
24
+ <path d="M108.404 118.125H98.2266C97.4429 118.125 96.8076 118.76 96.8076 119.544C96.8076 120.327 97.4429 120.963 98.2266 120.963H108.404C109.188 120.963 109.823 120.327 109.823 119.544C109.823 118.76 109.188 118.125 108.404 118.125Z" fill="var(--sapContent_Illustrative_Color14)"/>
25
+ <path d="M108.404 107.474H98.2266C97.4429 107.474 96.8076 108.109 96.8076 108.893C96.8076 109.677 97.4429 110.312 98.2266 110.312H108.404C109.188 110.312 109.823 109.677 109.823 108.893C109.823 108.109 109.188 107.474 108.404 107.474Z" fill="var(--sapContent_Illustrative_Color14)"/>
26
+ <path d="M108.404 128.775H98.2266C97.4429 128.775 96.8076 129.411 96.8076 130.194C96.8076 130.978 97.4429 131.613 98.2266 131.613H108.404C109.188 131.613 109.823 130.978 109.823 130.194C109.823 129.411 109.188 128.775 108.404 128.775Z" fill="var(--sapContent_Illustrative_Color14)"/>
27
+ <path d="M108.356 139.47H98.1785C97.3948 139.47 96.7595 140.106 96.7595 140.889C96.7595 141.673 97.3948 142.308 98.1785 142.308H108.356C109.14 142.308 109.775 141.673 109.775 140.889C109.775 140.106 109.14 139.47 108.356 139.47Z" fill="var(--sapContent_Illustrative_Color14)"/>
28
+ <path d="M171.855 54.1931H147.948C147.165 54.1931 146.529 54.8284 146.529 55.6121C146.529 56.3958 147.165 57.0311 147.948 57.0311H171.855C172.639 57.0311 173.274 56.3958 173.274 55.6121C173.274 54.8284 172.639 54.1931 171.855 54.1931Z" fill="var(--sapContent_Illustrative_Color14)"/>
29
+ <path d="M167.357 64.6072H147.948C147.165 64.6072 146.529 65.2425 146.529 66.0262C146.529 66.8099 147.165 67.4452 147.948 67.4452H167.357C168.141 67.4452 168.777 66.8099 168.777 66.0262C168.777 65.2425 168.141 64.6072 167.357 64.6072Z" fill="var(--sapContent_Illustrative_Color14)"/>
30
+ <path d="M170.432 75.4902H147.948C147.165 75.4902 146.529 76.1255 146.529 76.9092C146.529 77.6929 147.165 78.3283 147.948 78.3283H170.432C171.216 78.3283 171.851 77.6929 171.851 76.9092C171.851 76.1255 171.216 75.4902 170.432 75.4902Z" fill="var(--sapContent_Illustrative_Color14)"/>
31
+ <path d="M158.126 85.9043H147.948C147.165 85.9043 146.529 86.5396 146.529 87.3233C146.529 88.107 147.165 88.7423 147.948 88.7423H158.126C158.91 88.7423 159.545 88.107 159.545 87.3233C159.545 86.5396 158.91 85.9043 158.126 85.9043Z" fill="var(--sapContent_Illustrative_Color14)"/>
32
+ <path d="M158.126 96.5552H147.948C147.165 96.5552 146.529 97.1905 146.529 97.9742C146.529 98.7579 147.165 99.3932 147.948 99.3932H158.126C158.91 99.3932 159.545 98.7579 159.545 97.9742C159.545 97.1905 158.91 96.5552 158.126 96.5552Z" fill="var(--sapContent_Illustrative_Color14)"/>
33
+ <path d="M158.126 117.856H147.948C147.165 117.856 146.529 118.492 146.529 119.275C146.529 120.059 147.165 120.694 147.948 120.694H158.126C158.91 120.694 159.545 120.059 159.545 119.275C159.545 118.492 158.91 117.856 158.126 117.856Z" fill="var(--sapContent_Illustrative_Color14)"/>
34
+ <path d="M158.126 107.206H147.948C147.165 107.206 146.529 107.841 146.529 108.625C146.529 109.408 147.165 110.044 147.948 110.044H158.126C158.91 110.044 159.545 109.408 159.545 108.625C159.545 107.841 158.91 107.206 158.126 107.206Z" fill="var(--sapContent_Illustrative_Color14)"/>
35
+ <path d="M158.126 128.507H147.948C147.165 128.507 146.529 129.142 146.529 129.926C146.529 130.71 147.165 131.345 147.948 131.345H158.126C158.91 131.345 159.545 130.71 159.545 129.926C159.545 129.142 158.91 128.507 158.126 128.507Z" fill="var(--sapContent_Illustrative_Color14)"/>
36
+ <path d="M158.126 139.157H147.948C147.165 139.157 146.529 139.793 146.529 140.576C146.529 141.36 147.165 141.995 147.948 141.995H158.126C158.91 141.995 159.545 141.36 159.545 140.576C159.545 139.793 158.91 139.157 158.126 139.157Z" fill="var(--sapContent_Illustrative_Color14)"/>
37
+ <path d="M190.667 53.7712H233.413C233.441 53.7712 233.469 53.7826 233.489 53.8027C233.509 53.8228 233.52 53.8501 233.52 53.8786V161.768C233.52 161.797 233.509 161.824 233.489 161.844C233.469 161.864 233.441 161.876 233.413 161.876H190.774C190.746 161.876 190.718 161.864 190.698 161.844C190.678 161.824 190.667 161.797 190.667 161.768V53.7712Z" fill="var(--sapContent_Illustrative_Color6)"/>
38
+ <path d="M236.568 50.6667H193.715V158.776H236.568V50.6667Z" fill="var(--sapContent_Illustrative_Color8)"/>
39
+ <path d="M215.207 117.603C222.209 117.603 227.886 111.927 227.886 104.924C227.886 97.9223 222.209 92.2458 215.207 92.2458C208.205 92.2458 202.528 97.9223 202.528 104.924C202.528 111.927 208.205 117.603 215.207 117.603Z" fill="var(--sapContent_Illustrative_Color3)"/>
40
+ <path d="M215.212 98.0203H215.207C214.261 98.0203 213.494 98.7873 213.494 99.7335V110.115C213.494 111.062 214.261 111.829 215.207 111.829H215.212C216.158 111.829 216.925 111.062 216.925 110.115V99.7335C216.925 98.7873 216.158 98.0203 215.212 98.0203Z" fill="var(--sapContent_Illustrative_Color8)"/>
41
+ <path d="M208.597 104.728V105.116C208.597 105.956 209.278 106.637 210.119 106.637H220.309C221.15 106.637 221.831 105.956 221.831 105.116V104.728C221.831 103.888 221.15 103.206 220.309 103.206H210.119C209.278 103.206 208.597 103.888 208.597 104.728Z" fill="var(--sapContent_Illustrative_Color8)"/>
42
+ <path d="M193.715 50.6667H236.475C236.5 50.6667 236.524 50.6766 236.541 50.6941C236.559 50.7116 236.568 50.7353 236.568 50.7601V63.6208H193.715V50.6667Z" fill="var(--sapContent_Illustrative_Color18)"/>
43
+ <path d="M226.229 55.335H198.388C197.475 55.335 196.735 56.0748 196.735 56.9875C196.735 57.9001 197.475 58.64 198.388 58.64H226.229C227.141 58.64 227.881 57.9001 227.881 56.9875C227.881 56.0748 227.141 55.335 226.229 55.335Z" fill="var(--sapContent_Illustrative_Color14)"/>
44
+ <path d="M249.007 29.0501C249.007 27.8612 245.556 26.9096 240.945 26.6935C240.681 22.0883 239.666 18.6641 238.477 18.6667C237.288 18.6694 236.299 22.12 236.046 26.7488C231.422 27.0652 227.984 28.0985 228 29.29C228.016 30.4815 231.451 31.4331 236.062 31.6466C236.339 36.2517 237.341 39.6759 238.527 39.6733C239.713 39.6707 240.707 36.2201 240.96 31.5912C245.585 31.2749 249.02 30.2416 249.007 29.0501Z" fill="var(--sapContent_Illustrative_Color3)"/>
45
+ <path d="M263.011 43.564C263.011 42.7979 260.787 42.1846 257.815 42.0453C257.646 39.0776 256.991 36.8709 256.225 36.8726C255.459 36.8743 254.822 39.098 254.659 42.081C251.679 42.2849 249.463 42.9508 249.473 43.7186C249.484 44.4865 251.697 45.0997 254.669 45.2373C254.847 48.2051 255.493 50.4118 256.257 50.4101C257.022 50.4084 257.663 48.1847 257.826 45.2017C260.806 44.9978 263.019 44.3319 263.011 43.564Z" fill="var(--sapContent_Illustrative_Color3)"/>
46
+ <path d="M40.0001 81.0501C40.0001 79.8612 43.4511 78.9096 48.062 78.6935C48.3257 74.0883 49.3407 70.6641 50.5297 70.6667C51.7187 70.6694 52.7073 74.12 52.9604 78.7488C57.5845 79.0652 61.0224 80.0985 61.0065 81.29C60.9907 82.4815 57.5555 83.4331 52.9446 83.6466C52.6677 88.2517 51.6659 91.6759 50.4796 91.6733C49.2932 91.6707 48.2993 88.2201 48.0462 83.5912C43.4221 83.2749 39.9869 82.2416 40.0001 81.0501Z" fill="var(--sapContent_Illustrative_Color18)"/>
47
+ <path d="M18.6667 22.6915C18.6667 21.9253 20.8907 21.3121 23.8622 21.1728C24.0321 18.205 24.6862 15.9983 25.4524 16C26.2187 16.0017 26.8558 18.2254 27.0189 21.2085C29.9989 21.4123 32.2144 22.0782 32.2042 22.8461C32.194 23.6139 29.9802 24.2272 27.0087 24.3648C26.8303 27.3325 26.1847 29.5393 25.4201 29.5376C24.6556 29.5359 24.0151 27.3122 23.852 24.3291C20.872 24.1253 18.6582 23.4593 18.6667 22.6915Z" fill="var(--sapContent_Illustrative_Color18)"/>
48
+ </svg>
49
+ `;
@@ -0,0 +1,18 @@
1
+ export default `<svg width="320" height="240" viewBox="0 0 320 240" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-AddDimensions">
2
+ <rect y="57.0474" width="320" height="138" rx="24" fill="var(--sapContent_Illustrative_Color20)"/>
3
+ <path d="M208.208 170.399L157.886 158.587C157.765 158.55 157.644 158.531 157.523 158.559L64.3573 171.488C60.7979 171.898 60.4625 172.895 61.5433 173.417L111.967 185.657C114.157 186.403 116.486 186.58 118.76 186.17L205.04 172.067C208.329 171.629 208.99 170.65 208.208 170.399Z" fill="var(--sapContent_Illustrative_Color21)"/>
4
+ <path d="M178.502 72.5078L206.933 154.171C207.54 157.289 204.241 159.671 202.299 159.837L113.36 172.454C111.844 172.584 110.459 171.581 110.112 170.094L89.0069 81.6602C88.2563 78.0223 91.2806 73.6627 93.1933 73.5761L175.427 70.328C176.827 70.2631 178.098 71.1581 178.502 72.5078Z" fill="var(--sapContent_Illustrative_Color14)"/>
5
+ <path d="M180.84 70.0107L206.803 153.464C207.366 155.334 206.074 157.246 204.125 157.412L115.698 169.957C114.182 170.087 112.797 169.084 112.45 167.597L90.9118 77.3368C90.4715 75.4674 91.8429 73.6629 93.7629 73.5691L177.765 67.8236C179.165 67.7587 180.436 68.6537 180.84 70.0034V70.0107Z" fill="var(--sapContent_Illustrative_Color2)"/>
6
+ <path d="M124.958 78.0814L126.118 82.402C126.199 82.6921 125.989 82.9823 125.691 82.9985L109.884 83.998C109.731 84.006 109.675 84.1995 109.804 84.2882L190.717 142.124C190.846 142.212 191.007 142.091 190.967 141.946L186.187 126.293C186.098 126.01 186.292 125.712 186.59 125.68L190.757 125.237C190.983 125.212 191.193 125.349 191.265 125.567L199.052 150.741C199.14 151.023 198.955 151.313 198.657 151.353L174.547 154.521C174.313 154.553 174.096 154.408 174.031 154.183L172.637 149.378C172.556 149.096 172.742 148.814 173.032 148.774L188.202 146.863C188.347 146.847 188.395 146.654 188.275 146.573L106.749 88.3346C106.628 88.246 106.466 88.3588 106.499 88.5039L110.44 104.166C110.513 104.448 110.311 104.73 110.021 104.754L105.217 105.141C104.983 105.157 104.774 105.004 104.717 104.778L98.5428 79.8064C98.4702 79.5162 98.6798 79.2341 98.978 79.218L124.466 77.7267C124.692 77.7106 124.893 77.8638 124.95 78.0814L124.958 78.0814Z" fill="var(--sapContent_Illustrative_Color14)"/>
7
+ <path d="M121.572 58.511L140.44 128.323C140.844 129.795 142.273 130.748 143.796 130.553L223.641 120.21C228.369 119.012 229.718 115.201 229.076 113.36L204.015 49.7196C203.561 48.4204 202.297 47.5831 200.926 47.6697L125.297 48.6297C123.355 48.7524 119.457 51.5457 121.572 58.5182V58.511Z" fill="var(--sapContent_Illustrative_Color22)"/>
8
+ <path d="M122.569 52.4839L142.367 125.666C142.771 127.139 144.201 128.092 145.724 127.897L226.579 117.423C228.513 117.171 229.726 115.208 229.083 113.367L205.935 47.056C205.481 45.7568 204.218 44.9195 202.846 45.0061L125.333 48.6007C123.391 48.7234 122.049 50.6 122.569 52.4767V52.4839Z" fill="var(--sapContent_Illustrative_Color8)"/>
9
+ <path d="M168.68 76.21L159.873 76.9407C159.39 76.9832 159.102 77.3519 159.234 77.7701L171.043 114.615C171.183 115.054 171.699 115.361 172.188 115.305L181.11 114.271C181.592 114.214 181.874 113.818 181.727 113.386L169.79 76.8933C169.658 76.4821 169.156 76.1746 168.68 76.217L168.68 76.21Z" fill="var(--sapContent_Illustrative_Color2)"/>
10
+ <path d="M206.095 91.4792L197.702 92.3087C197.24 92.3578 196.98 92.7261 197.119 93.1442L203.164 110.906C203.311 111.331 203.806 111.632 204.267 111.575L212.706 110.591C213.168 110.535 213.421 110.153 213.275 109.735L207.176 92.142C207.037 91.7309 206.549 91.4302 206.095 91.4792Z" fill="var(--sapContent_Illustrative_Color2)"/>
11
+ <path d="M156.258 89.6746L147.165 90.5218C146.662 90.5716 146.366 90.9544 146.499 91.3866L154.304 116.546C154.444 116.992 154.967 117.306 155.47 117.243L164.644 116.177C165.14 116.12 165.435 115.717 165.295 115.277L157.396 90.3645C157.264 89.9393 156.755 89.6319 156.258 89.6746Z" fill="var(--sapContent_Illustrative_Color2)"/>
12
+ <path d="M180.071 61.7244L171.535 62.3319C171.066 62.3672 170.791 62.7216 170.924 63.1258L187.327 112.732C187.467 113.164 187.976 113.465 188.452 113.415L197.129 112.406C197.597 112.35 197.864 111.961 197.718 111.536L181.153 62.3942C181.021 61.99 180.533 61.6963 180.071 61.7244Z" fill="var(--sapContent_Illustrative_Color2)"/>
13
+ <path d="M208.062 53.1394L205.881 46.9237C205.427 45.6254 204.165 44.7887 202.794 44.8753L125.336 48.46C123.388 48.5827 122.054 50.458 122.566 52.3405L124.134 57.7701L208.055 53.1394H208.062Z" fill="var(--sapContent_Illustrative_Color2)"/>
14
+ <path d="M257.621 123.56C257.621 123.56 251.14 132.366 238.552 134.002C225.964 135.637 208.697 126.319 204.186 111.984C199.283 96.4056 208.252 85.7297 223.579 82.4076C237.61 81.2888 257.621 123.56 257.621 123.56Z" fill="var(--sapContent_Illustrative_Color16)"/>
15
+ <path d="M259.323 103.898C264.535 117.54 257.23 130.359 242.527 132.142C227.463 133.968 211.209 123.488 206.697 109.146C202.338 95.2944 210.797 83.4642 225.146 82.3166C239.178 81.1978 254.285 90.6893 259.331 103.891L259.323 103.898Z" fill="var(--sapContent_Illustrative_Color15)"/>
16
+ <path d="M247.785 102.937C247.655 102.591 247.308 102.376 246.94 102.414L236.268 103.508C235.897 103.546 235.547 103.327 235.42 102.976L231.985 93.508C231.859 93.1605 231.515 92.9416 231.147 92.975L225.515 93.4857C224.986 93.5336 224.644 94.0677 224.822 94.5684L227.939 103.347C228.115 103.844 227.78 104.375 227.255 104.429L216.89 105.492C216.37 105.545 216.034 106.07 216.203 106.565L217.95 111.669C218.073 112.029 218.43 112.256 218.808 112.214L229.99 110.987C230.366 110.946 230.72 111.168 230.846 111.524L234.359 121.412C234.486 121.77 234.846 121.993 235.224 121.947L240.987 121.247C241.507 121.184 241.833 120.654 241.654 120.162L238.36 111.084C238.18 110.588 238.512 110.055 239.036 109.998L248.943 108.913C249.471 108.855 249.803 108.315 249.617 107.818L247.785 102.937Z" fill="var(--sapContent_Illustrative_Color8)"/>
17
+ </svg>
18
+ `;
@@ -0,0 +1,31 @@
1
+ export default `<svg width="320" height="200" viewBox="0 0 320 200" fill="none" xmlns="http://www.w3.org/2000/svg" id="sapIllus-Scene-AddPeople">
2
+ <path d="M305.547 6.15619e-06H14.4533C12.5559 -0.00174584 10.6768 0.37047 8.92329 1.09536C7.16981 1.82026 5.57638 2.88362 4.23409 4.22468C2.8918 5.56573 1.82697 7.15817 1.10045 8.91098C0.373942 10.6638 -8.08861e-07 12.5426 0 14.44V185.547C0 189.38 1.52275 193.056 4.23328 195.767C6.9438 198.477 10.6201 200 14.4533 200H305.547C309.38 200 313.056 198.477 315.767 195.767C318.477 193.056 320 189.38 320 185.547V14.44C320 12.5426 319.626 10.6638 318.9 8.91098C318.173 7.15817 317.108 5.56573 315.766 4.22468C314.424 2.88362 312.83 1.82026 311.077 1.09536C309.323 0.37047 307.444 -0.00174584 305.547 6.15619e-06V6.15619e-06Z" fill="var(--sapContent_Illustrative_Color7)"/>
3
+ <path d="M224.967 49.3718C223.952 61.1678 221.771 74.5407 212.764 72.8388C201.473 70.7014 203.414 59.6806 204.436 47.8485C205.458 36.0165 207.998 26.4482 216.586 27.1976C224.646 27.8878 225.984 37.5239 224.967 49.3718Z" fill="var(--sapContent_Illustrative_Color19)"/>
4
+ <path d="M233.669 39.7201C238.385 35.9513 240.494 30.7505 238.378 28.1037C236.263 25.4569 230.724 26.3663 226.008 30.1351C221.291 33.9038 219.183 39.1047 221.299 41.7515C223.414 44.3983 228.952 43.4888 233.669 39.7201Z" fill="var(--sapContent_Illustrative_Color19)"/>
5
+ <path d="M240.367 64.5857C239.059 71.2179 234.871 75.9476 231.003 75.222C221.552 73.4477 224.522 68.4254 226.379 61.8264C228.236 55.2274 231.865 50.515 235.743 51.1901C242.857 52.4209 241.682 57.9174 240.367 64.5857Z" fill="var(--sapContent_Illustrative_Color19)"/>
6
+ <path d="M241.684 85.1263L189.803 74.8921C189.189 74.771 188.593 75.1704 188.472 75.7842L181.564 110.807C181.443 111.421 181.842 112.017 182.456 112.138L234.336 122.372C234.95 122.493 235.546 122.094 235.667 121.48L242.576 86.457C242.697 85.8432 242.298 85.2474 241.684 85.1263Z" fill="var(--sapContent_Illustrative_Color18)"/>
7
+ <path d="M242.878 78.8841L191.077 68.6656C190.463 68.5445 189.867 68.9439 189.746 69.5577L187.266 82.1293C187.145 82.7431 187.544 83.3388 188.158 83.4599L239.959 93.6785C240.573 93.7995 241.169 93.4001 241.29 92.7863L243.77 80.2147C243.891 79.6009 243.492 79.0052 242.878 78.8841Z" fill="var(--sapContent_Illustrative_Color19)"/>
8
+ <path d="M246.97 74.6754L189.308 63.3008C188.694 63.1797 188.098 63.5791 187.977 64.1929L185.259 77.9697C185.138 78.5835 185.538 79.1793 186.152 79.3004L243.814 90.675C244.427 90.7961 245.023 90.3967 245.144 89.7829L247.862 76.0061C247.983 75.3923 247.584 74.7965 246.97 74.6754Z" fill="var(--sapContent_Illustrative_Color18)"/>
9
+ <path d="M76.2629 20.2899C75.8923 20.5868 75.6086 20.9781 75.4416 21.4226C75.2746 21.8672 75.2305 22.3485 75.3139 22.816L77.0093 33.9869C77.2888 35.8346 78.966 36.5972 80.4142 36.3778C81.0101 36.3096 81.5678 36.0498 82.0034 35.6374C82.4391 35.2251 82.7291 34.6825 82.83 34.0911C82.8702 33.804 82.8667 33.5124 82.8197 33.2262L81.1243 22.0553C81.06 21.5637 80.864 21.0986 80.557 20.7093C80.2501 20.3199 79.8436 20.0208 79.3806 19.8436C78.8659 19.6463 78.3094 19.5838 77.7638 19.6619C77.2182 19.74 76.7015 19.9562 76.2629 20.2899V20.2899Z" fill="var(--sapContent_Illustrative_Color5)"/>
10
+ <path d="M30.9282 61.6805C30.812 61.9999 30.7637 62.34 30.7864 62.6791C30.8091 63.0182 30.9022 63.3489 31.0598 63.65C31.2175 63.951 31.4361 64.2159 31.7019 64.4278C31.9676 64.6396 32.2746 64.7937 32.6033 64.8802L43.1073 68.1657C43.4854 68.2826 43.883 68.3229 44.2768 68.2844C44.6706 68.2459 45.0529 68.1293 45.4011 67.9415C45.7494 67.7536 46.0568 67.4982 46.3053 67.1903C46.5539 66.8823 46.7385 66.5279 46.8486 66.1477C46.8983 65.9923 46.9353 65.833 46.959 65.6715C47.0552 65.076 46.9248 64.466 46.5935 63.9619C46.2623 63.4578 45.7542 63.0961 45.1695 62.948L34.6694 59.6666C34.2916 59.5491 33.8941 59.5082 33.5003 59.5461C33.1065 59.5841 32.7242 59.7003 32.3759 59.8878C32.0275 60.0754 31.72 60.3305 31.4714 60.6383C31.2229 60.9461 31.0382 61.3005 30.9282 61.6805V61.6805Z" fill="var(--sapContent_Illustrative_Color5)"/>
11
+ <path d="M45.803 34.6248C45.7713 34.9947 45.8154 35.3672 45.9326 35.7195C46.0498 36.0719 46.2376 36.3966 46.4845 36.6738L57.4365 49.2223C57.9309 49.7824 58.6226 50.1296 59.367 50.1915C60.1114 50.2533 60.8509 50.025 61.4309 49.5542C61.967 49.1154 62.3186 48.4911 62.416 47.8051C62.4715 47.4096 62.4411 47.0068 62.3269 46.6241C62.2127 46.2414 62.0173 45.8879 61.7541 45.5875L50.8021 33.039C50.3054 32.4755 49.6097 32.1264 48.861 32.0652C48.1124 32.004 47.3692 32.2354 46.7876 32.7107C46.503 32.947 46.2692 33.2384 46.1 33.5673C45.9308 33.8962 45.8298 34.2559 45.803 34.6248V34.6248Z" fill="var(--sapContent_Illustrative_Color5)"/>
12
+ <path d="M38.6666 161.196C38.6666 159.838 34.7238 158.751 29.4558 158.504C29.1546 153.243 27.9949 149.33 26.6365 149.333C25.2781 149.337 24.1486 153.279 23.8594 158.567C18.5763 158.929 14.6486 160.109 14.6667 161.471C14.6848 162.832 18.6095 163.919 23.8775 164.163C24.1938 169.424 25.3383 173.337 26.6938 173.333C28.0492 173.33 29.1847 169.388 29.4739 164.1C34.757 163.738 38.6816 162.558 38.6666 161.196Z" fill="var(--sapContent_Illustrative_Color18)"/>
13
+ <path d="M300 169.242C300 168.337 297.371 167.612 293.859 167.447C293.659 163.94 292.886 161.331 291.98 161.333C291.074 161.336 290.321 163.964 290.129 167.489C286.606 167.73 283.988 168.517 284 169.425C284.012 170.332 286.629 171.057 290.141 171.22C290.351 174.727 291.114 177.336 292.018 177.334C292.922 177.332 293.679 174.703 293.871 171.178C297.394 170.937 300.01 170.15 300 169.242Z" fill="var(--sapContent_Illustrative_Color18)"/>
14
+ <path d="M142.667 21.1965C142.667 19.8382 138.724 18.751 133.456 18.504C133.155 13.2426 131.995 9.33049 130.637 9.3335C129.278 9.33651 128.149 13.2788 127.86 18.5673C122.576 18.9287 118.649 20.1093 118.667 21.4705C118.685 22.8318 122.61 23.919 127.878 24.163C128.194 29.4243 129.338 33.3365 130.694 33.3335C132.049 33.3305 133.185 29.3882 133.474 24.0997C138.757 23.7383 142.682 22.5577 142.667 21.1965Z" fill="var(--sapContent_Illustrative_Color18)"/>
15
+ <path d="M96.637 145.362L80.3955 78.7401L80.2543 78.7693L78.0099 69.5413L74.4822 70.2727C74.3168 70.3081 74.1603 70.3766 74.0218 70.4739C73.8832 70.5713 73.7655 70.6957 73.6754 70.8398C73.5853 70.9839 73.5247 71.1447 73.4972 71.313C73.4697 71.4812 73.4757 71.6534 73.5151 71.8195L93.0005 151.78C93.0808 152.099 93.2798 152.375 93.556 152.551C93.8322 152.727 94.1646 152.79 94.4843 152.726L197.396 131.388C197.562 131.354 197.719 131.286 197.858 131.189C197.996 131.092 198.114 130.968 198.204 130.823C198.293 130.679 198.353 130.518 198.379 130.349C198.405 130.181 198.396 130.009 198.355 129.843L197.354 125.724L98.1102 146.301C97.7924 146.369 97.4602 146.309 97.1848 146.134C96.9094 145.958 96.7128 145.681 96.637 145.362V145.362Z" fill="var(--sapContent_Illustrative_Color20)"/>
16
+ <path d="M185.768 56.8927L80.3955 78.7402L96.637 145.362C96.7128 145.681 96.9095 145.958 97.1849 146.134C97.4603 146.309 97.7925 146.369 98.1102 146.301L201.049 124.958C201.214 124.924 201.37 124.857 201.508 124.76C201.646 124.664 201.764 124.54 201.853 124.397C201.943 124.254 202.003 124.093 202.03 123.926C202.056 123.758 202.049 123.587 202.009 123.422L185.768 56.8927ZM94.8338 83.8709C94.7787 83.6535 94.768 83.4272 94.8023 83.2058C94.8367 82.9843 94.9153 82.7724 95.0334 82.583C95.1516 82.3935 95.3067 82.2303 95.4896 82.1034C95.6724 81.9766 95.8791 81.8886 96.097 81.8449L127.141 75.4084C127.585 75.3162 128.048 75.4061 128.428 75.6581C128.808 75.9102 129.074 76.3038 129.167 76.7524C129.222 76.9698 129.233 77.1961 129.199 77.4175C129.164 77.6389 129.086 77.8508 128.968 78.0403C128.849 78.2298 128.694 78.393 128.511 78.5199C128.328 78.6467 128.122 78.7347 127.904 78.7784L96.8601 85.2149C96.4156 85.3071 95.9526 85.2172 95.5726 84.9652C95.1926 84.7131 94.9268 84.3195 94.8338 83.8709ZM186.951 120.314L108.106 136.661C107.786 136.73 107.452 136.67 107.174 136.493C106.897 136.316 106.699 136.037 106.622 135.715L95.8887 91.665C95.8481 91.4993 95.8412 91.3272 95.8683 91.1589C95.8955 90.9907 95.9562 90.8299 96.0467 90.6862C96.1373 90.5425 96.2558 90.4188 96.3952 90.3227C96.5345 90.2267 96.6918 90.1601 96.8575 90.1271L175.72 73.7762C176.037 73.7077 176.37 73.7677 176.645 73.9431C176.92 74.1186 177.117 74.3957 177.193 74.7149L187.928 118.774C187.964 118.939 187.966 119.108 187.936 119.274C187.905 119.439 187.842 119.596 187.75 119.736C187.658 119.876 187.54 119.997 187.401 120.09C187.263 120.183 187.107 120.247 186.943 120.278L186.951 120.314Z" fill="var(--sapContent_Illustrative_Color19)"/>
17
+ <path d="M80.3955 78.74L186.006 56.8431L182.684 43.2146C182.606 42.8942 182.407 42.6166 182.13 42.4401C181.854 42.2637 181.52 42.2023 181.2 42.2688L159.531 46.7616L160.747 51.7369C161.136 51.9288 161.48 52.2041 161.754 52.5435C162.028 52.8828 162.225 53.2781 162.331 53.7017C162.423 54.0593 162.442 54.4317 162.386 54.7962C162.331 55.1608 162.203 55.51 162.01 55.8226C161.817 56.1352 161.563 56.4048 161.263 56.615C160.963 56.8252 160.623 56.9717 160.265 57.0456C159.531 57.1815 158.772 57.027 158.145 56.6142C157.518 56.2014 157.072 55.5619 156.899 54.8281C156.797 54.4244 156.788 54.0029 156.873 53.5959C156.957 53.1889 157.133 52.8072 157.387 52.48L156.162 47.4601L100.98 58.9014L102.201 63.9034C102.586 64.0948 102.926 64.3685 103.196 64.7054C103.466 65.0423 103.66 65.4343 103.765 65.8541C103.855 66.208 103.874 66.5764 103.821 66.9374C103.768 67.2985 103.644 67.6448 103.455 67.9558C103.266 68.2669 103.018 68.5362 102.723 68.748C102.429 68.9598 102.096 69.1097 101.742 69.1888C101.008 69.3224 100.25 69.167 99.6239 68.7545C98.9977 68.3421 98.5511 67.704 98.3759 66.9713C98.2708 66.5622 98.2614 66.1343 98.3482 65.7216C98.435 65.3088 98.6158 64.9224 98.8762 64.5928L97.6551 59.5907L77.9617 63.6739C77.7969 63.7079 77.6408 63.7752 77.5025 63.8716C77.3643 63.968 77.2469 64.0916 77.1573 64.2349C77.0676 64.3783 77.0076 64.5386 76.9809 64.7061C76.9541 64.8736 76.9612 65.045 77.0016 65.21L78.0541 69.5321L80.2985 78.7601L80.3955 78.74Z" fill="var(--sapContent_Illustrative_Color18)"/>
18
+ <path d="M101.442 67.5612L101.345 67.5813C100.912 67.669 100.462 67.5844 100.088 67.3452C99.7145 67.106 99.4465 66.7307 99.3401 66.2978L98.9203 64.5836C98.6598 64.9133 98.479 65.2997 98.3922 65.7124C98.3054 66.1252 98.3149 66.553 98.42 66.9621C98.5952 67.6948 99.0418 68.3329 99.6679 68.7454C100.294 69.1578 101.052 69.3132 101.787 69.1796C102.14 69.1006 102.473 68.9507 102.767 68.7389C103.062 68.5271 103.31 68.2577 103.499 67.9467C103.688 67.6356 103.812 67.2893 103.865 66.9282C103.919 66.5672 103.899 66.1988 103.809 65.8449C103.704 65.4251 103.51 65.0331 103.24 64.6962C102.97 64.3593 102.63 64.0856 102.245 63.8943L102.665 65.6085C102.717 65.8184 102.727 66.0367 102.693 66.2502C102.659 66.4636 102.583 66.6678 102.469 66.8503C102.354 67.0329 102.204 67.19 102.028 67.3122C101.851 67.4344 101.652 67.5191 101.442 67.5612Z" fill="var(--sapContent_Illustrative_Color20)"/>
19
+ <path d="M159.941 55.3486L159.844 55.3688C159.413 55.4516 158.966 55.3661 158.595 55.1294C158.223 54.8927 157.953 54.5227 157.841 54.0942L157.452 52.4849C157.199 52.8121 157.023 53.1939 156.938 53.6009C156.853 54.0079 156.862 54.4294 156.964 54.8331C157.137 55.5669 157.584 56.2064 158.21 56.6192C158.837 57.032 159.596 57.1864 160.331 57.0505C160.689 56.9767 161.028 56.8302 161.328 56.62C161.628 56.4098 161.882 56.1402 162.075 55.8275C162.269 55.5149 162.397 55.1657 162.452 54.8012C162.507 54.4366 162.489 54.0643 162.397 53.7067C162.29 53.2831 162.093 52.8878 161.819 52.5485C161.545 52.2091 161.202 51.9338 160.812 51.7419L161.21 53.3957C161.263 53.609 161.272 53.831 161.236 54.0476C161.2 54.2642 161.12 54.4708 161.001 54.6543C160.882 54.8378 160.726 54.9943 160.544 55.1138C160.361 55.2333 160.156 55.3133 159.941 55.3486V55.3486Z" fill="var(--sapContent_Illustrative_Color20)"/>
20
+ <path d="M99.3401 66.2982C99.4465 66.7311 99.7145 67.1063 100.088 67.3455C100.462 67.5847 100.912 67.6694 101.345 67.5817L101.442 67.5616C101.652 67.5194 101.851 67.4347 102.028 67.3125C102.204 67.1904 102.354 67.0332 102.469 66.8507C102.583 66.6681 102.659 66.464 102.693 66.2505C102.727 66.0371 102.717 65.8188 102.665 65.6088L102.245 63.8946L101.024 58.8925L99.7882 53.8193C99.6819 53.3864 99.4139 53.0111 99.0403 52.7719C98.6667 52.5327 98.2165 52.4481 97.7837 52.5357L97.7307 52.5467C97.5206 52.5889 97.3212 52.6736 97.1447 52.7958C96.9682 52.918 96.8183 53.0751 96.704 53.2576C96.5896 53.4402 96.5133 53.6443 96.4795 53.8578C96.4457 54.0712 96.4552 54.2895 96.5075 54.4995L97.7434 59.5728L98.9644 64.5748L99.3401 66.2982Z" fill="var(--sapContent_Illustrative_Color18)"/>
21
+ <path d="M157.841 54.094C157.95 54.5281 158.22 54.904 158.595 55.1442C158.97 55.3844 159.422 55.4704 159.857 55.3846L159.954 55.3645C160.164 55.3224 160.364 55.2373 160.54 55.1144C160.717 54.9916 160.867 54.8335 160.98 54.65C161.094 54.4665 161.169 54.2613 161.201 54.0472C161.233 53.833 161.221 53.6144 161.166 53.4047L160.768 51.7509L159.553 46.7756L158.298 41.6133C158.19 41.1801 157.92 40.8052 157.545 40.5665C157.17 40.3278 156.719 40.2437 156.285 40.3316L156.188 40.3517C155.978 40.3937 155.779 40.4784 155.603 40.6006C155.427 40.7228 155.278 40.8799 155.164 41.0625C155.05 41.245 154.975 41.4491 154.942 41.6623C154.909 41.8755 154.92 42.0934 154.973 42.3026L156.228 47.4649L157.452 52.4848L157.841 54.094Z" fill="var(--sapContent_Illustrative_Color19)"/>
22
+ <path d="M176.348 73.8781C175.673 73.8252 174.995 73.8751 174.336 74.0258L98.1995 89.8117C97.5243 89.9376 96.8742 90.1727 96.2742 90.508C95.9635 90.7396 96.0262 92.24 96.2077 92.9823L106.288 134.327C106.439 134.993 106.687 135.633 107.023 136.227C107.25 136.523 108.707 136.499 109.448 136.346L185.585 120.56C186.26 120.432 186.91 120.194 187.508 119.855C187.819 119.623 187.758 118.132 187.575 117.38L177.491 76.018C177.322 75.2917 176.679 73.9672 176.348 73.8781ZM148.824 91.9706C148.463 92.0435 148.086 91.9726 147.774 91.7727C147.462 91.5728 147.238 91.2592 147.148 90.8975L146.663 88.9092C146.619 88.7336 146.611 88.551 146.639 88.3725C146.667 88.1939 146.731 88.0232 146.827 87.8705C146.922 87.7178 147.048 87.5865 147.195 87.4844C147.343 87.3823 147.51 87.3116 147.686 87.2765L150.331 86.7279C150.694 86.6548 151.071 86.7252 151.385 86.9246C151.698 87.124 151.924 87.4372 152.016 87.7992L152.502 89.7876C152.544 89.9631 152.552 90.1453 152.523 90.3234C152.494 90.5015 152.43 90.6717 152.335 90.8241C152.239 90.9764 152.114 91.1077 151.967 91.2102C151.82 91.3126 151.654 91.384 151.479 91.4202L148.824 91.9706ZM152.733 96.0069C153.095 95.9363 153.47 96.0081 153.782 96.2077C154.094 96.4073 154.318 96.7194 154.409 97.08L154.895 99.0683C154.938 99.2438 154.945 99.426 154.916 99.6041C154.887 99.7822 154.823 99.9525 154.728 100.105C154.633 100.257 154.508 100.388 154.361 100.491C154.214 100.593 154.048 100.665 153.872 100.701L151.227 101.25C150.865 101.32 150.49 101.248 150.178 101.049C149.866 100.849 149.642 100.537 149.551 100.176L149.065 98.1881C149.022 98.0126 149.015 97.8304 149.044 97.6523C149.073 97.4742 149.137 97.3039 149.232 97.1516C149.328 96.9992 149.452 96.8679 149.599 96.7655C149.746 96.6631 149.913 96.5916 150.088 96.5554L152.733 96.0069ZM151.358 107.118C151.314 106.943 151.306 106.76 151.334 106.582C151.362 106.403 151.426 106.232 151.522 106.08C151.617 105.927 151.743 105.796 151.891 105.693C152.038 105.591 152.205 105.521 152.381 105.486L155.027 104.937C155.388 104.866 155.763 104.938 156.075 105.138C156.387 105.337 156.611 105.65 156.702 106.01L157.188 107.998C157.231 108.174 157.238 108.356 157.209 108.534C157.18 108.712 157.117 108.883 157.021 109.035C156.926 109.187 156.801 109.319 156.654 109.421C156.507 109.523 156.341 109.595 156.165 109.631L153.52 110.18C153.158 110.25 152.783 110.178 152.471 109.979C152.159 109.779 151.935 109.467 151.844 109.107L151.358 107.118ZM138.184 94.0654C137.821 94.1386 137.444 94.0682 137.13 93.8687C136.817 93.6693 136.591 93.3561 136.499 92.9941L136.013 91.0058C135.969 90.8298 135.961 90.6468 135.989 90.4678C136.017 90.2888 136.081 90.1174 136.176 89.9641C136.271 89.8108 136.397 89.6786 136.544 89.5755C136.692 89.4724 136.858 89.4005 137.034 89.3642L139.68 88.8156C140.044 88.7445 140.422 88.8169 140.735 89.0178C141.049 89.2187 141.275 89.5329 141.367 89.8958L141.844 91.886C141.887 92.0608 141.896 92.2426 141.868 92.4204C141.84 92.5983 141.777 92.7685 141.682 92.9208C141.588 93.0732 141.463 93.2045 141.317 93.3069C141.17 93.4093 141.004 93.4807 140.83 93.5168L138.184 94.0654ZM142.035 98.0859C142.397 98.0127 142.774 98.0831 143.088 98.2825C143.402 98.482 143.628 98.7951 143.719 99.1572L144.205 101.146C144.249 101.322 144.257 101.504 144.229 101.683C144.201 101.862 144.138 102.034 144.042 102.187C143.947 102.34 143.822 102.473 143.674 102.576C143.527 102.679 143.36 102.751 143.184 102.787L140.538 103.336C140.174 103.407 139.797 103.334 139.483 103.133C139.169 102.933 138.943 102.618 138.852 102.255L138.375 100.265C138.331 100.09 138.323 99.9087 138.35 99.7308C138.378 99.553 138.441 99.3828 138.536 99.2305C138.631 99.0781 138.755 98.9468 138.902 98.8444C139.048 98.7419 139.214 98.6705 139.389 98.6344L142.035 98.0859ZM140.659 109.197C140.615 109.022 140.607 108.841 140.635 108.663C140.662 108.485 140.726 108.315 140.82 108.162C140.915 108.01 141.039 107.879 141.186 107.776C141.332 107.674 141.498 107.603 141.673 107.566L144.319 107.018C144.681 106.947 145.057 107.018 145.37 107.217C145.684 107.416 145.91 107.728 146.003 108.089L146.489 110.077C146.533 110.253 146.541 110.436 146.513 110.614C146.485 110.793 146.421 110.963 146.325 111.116C146.23 111.269 146.104 111.4 145.957 111.502C145.809 111.604 145.642 111.675 145.466 111.71L142.821 112.259C142.458 112.332 142.081 112.261 141.767 112.062C141.454 111.863 141.228 111.549 141.136 111.187L140.659 109.197ZM127.729 96.2144C127.367 96.2853 126.991 96.214 126.678 96.0149C126.365 95.8158 126.138 95.504 126.045 95.1431L125.568 93.1529C125.523 92.9777 125.513 92.7951 125.54 92.6163C125.567 92.4376 125.63 92.2663 125.725 92.113C125.819 91.9597 125.944 91.8274 126.091 91.7243C126.238 91.6212 126.404 91.5494 126.58 91.5132L129.226 90.9647C129.59 90.8913 129.968 90.9627 130.283 91.1639C130.597 91.3652 130.822 91.6808 130.912 92.0448L131.398 94.0332C131.44 94.2087 131.448 94.3909 131.419 94.569C131.39 94.7471 131.326 94.9174 131.231 95.0697C131.135 95.2221 131.01 95.3534 130.863 95.4558C130.716 95.5582 130.55 95.6297 130.375 95.6659L127.729 96.2144ZM131.58 100.235C131.943 100.162 132.32 100.232 132.633 100.432C132.947 100.631 133.173 100.944 133.265 101.306L133.75 103.295C133.794 103.471 133.803 103.654 133.775 103.833C133.747 104.012 133.683 104.183 133.588 104.336C133.492 104.49 133.367 104.622 133.22 104.725C133.072 104.828 132.905 104.9 132.729 104.936L130.084 105.485C129.721 105.555 129.344 105.483 129.032 105.281C128.719 105.08 128.495 104.765 128.406 104.403L127.92 102.414C127.876 102.239 127.868 102.056 127.896 101.878C127.924 101.699 127.988 101.528 128.084 101.376C128.18 101.223 128.305 101.092 128.453 100.99C128.6 100.887 128.767 100.817 128.943 100.782L131.58 100.235ZM130.204 111.346C130.161 111.171 130.152 110.988 130.181 110.81C130.209 110.631 130.273 110.46 130.368 110.308C130.464 110.155 130.589 110.024 130.737 109.921C130.885 109.819 131.051 109.749 131.227 109.714L133.873 109.165C134.236 109.092 134.613 109.162 134.927 109.362C135.24 109.561 135.466 109.874 135.558 110.236L136.043 112.225C136.087 112.4 136.096 112.583 136.067 112.761C136.039 112.94 135.975 113.111 135.88 113.263C135.784 113.416 135.659 113.547 135.511 113.65C135.363 113.752 135.196 113.822 135.021 113.857L132.375 114.406C132.013 114.479 131.637 114.408 131.325 114.208C131.012 114.008 130.788 113.694 130.699 113.333L130.204 111.346ZM117.146 98.3624C116.783 98.4355 116.406 98.3651 116.092 98.1657C115.779 97.9663 115.553 97.6531 115.461 97.2911L114.975 95.3027C114.933 95.1272 114.926 94.945 114.954 94.7669C114.983 94.5888 115.047 94.4186 115.142 94.2662C115.238 94.1139 115.363 93.9826 115.51 93.8801C115.657 93.7777 115.823 93.7063 115.998 93.6701L118.644 93.1215C119.006 93.0486 119.382 93.1195 119.694 93.3194C120.006 93.5194 120.231 93.8329 120.32 94.1946L120.806 96.183C120.849 96.3585 120.858 96.5411 120.829 96.7197C120.801 96.8982 120.737 97.069 120.642 97.2216C120.546 97.3743 120.421 97.5057 120.273 97.6078C120.125 97.7099 119.959 97.7806 119.783 97.8156L117.146 98.3624ZM120.996 102.383C121.36 102.312 121.738 102.384 122.052 102.585C122.365 102.786 122.591 103.1 122.683 103.463L123.169 105.451C123.211 105.627 123.219 105.809 123.19 105.987C123.161 106.165 123.097 106.336 123.002 106.488C122.906 106.64 122.781 106.772 122.634 106.874C122.487 106.976 122.321 107.048 122.146 107.084L119.5 107.633C119.138 107.704 118.762 107.632 118.449 107.433C118.135 107.234 117.909 106.922 117.816 106.561L117.33 104.573C117.286 104.397 117.277 104.214 117.305 104.035C117.333 103.856 117.397 103.685 117.492 103.531C117.588 103.378 117.713 103.246 117.86 103.143C118.008 103.04 118.175 102.968 118.351 102.931L120.996 102.383ZM119.621 113.494C119.578 113.319 119.571 113.136 119.6 112.958C119.629 112.78 119.693 112.61 119.788 112.458C119.883 112.305 120.008 112.174 120.155 112.072C120.302 111.969 120.469 111.898 120.644 111.862L123.29 111.313C123.652 111.242 124.028 111.313 124.341 111.513C124.654 111.712 124.881 112.023 124.974 112.384L125.46 114.373C125.504 114.549 125.512 114.732 125.484 114.911C125.456 115.09 125.393 115.261 125.297 115.414C125.202 115.568 125.077 115.7 124.929 115.803C124.782 115.906 124.615 115.978 124.439 116.014L121.793 116.563C121.429 116.634 121.052 116.561 120.738 116.361C120.424 116.16 120.198 115.845 120.107 115.483L119.621 113.494ZM106.753 100.499C106.39 100.569 106.014 100.498 105.701 100.299C105.388 100.1 105.162 99.7882 105.068 99.4273L104.591 97.4371C104.548 97.2623 104.539 97.0805 104.567 96.9027C104.595 96.7248 104.658 96.5546 104.753 96.4023C104.847 96.25 104.972 96.1186 105.118 96.0162C105.265 95.9138 105.431 95.8424 105.605 95.8063L108.251 95.2577C108.614 95.1868 108.99 95.2582 109.303 95.4573C109.616 95.6564 109.842 95.9681 109.936 96.329L110.422 98.3174C110.464 98.4929 110.471 98.6751 110.443 98.8531C110.414 99.0312 110.35 99.2015 110.254 99.3539C110.159 99.5062 110.034 99.6375 109.887 99.7399C109.74 99.8424 109.574 99.9138 109.399 99.95L106.753 100.499ZM110.604 104.519C110.968 104.446 111.346 104.517 111.661 104.718C111.975 104.92 112.2 105.235 112.29 105.599L112.776 107.588C112.818 107.763 112.826 107.945 112.797 108.123C112.768 108.301 112.704 108.472 112.609 108.624C112.513 108.776 112.388 108.908 112.241 109.01C112.094 109.113 111.928 109.184 111.753 109.22L109.107 109.769C108.746 109.839 108.371 109.768 108.059 109.568C107.747 109.368 107.523 109.056 107.432 108.696L106.946 106.707C106.9 106.531 106.891 106.348 106.919 106.169C106.946 105.989 107.009 105.817 107.105 105.664C107.2 105.51 107.326 105.378 107.474 105.275C107.622 105.172 107.79 105.101 107.967 105.066L110.604 104.519ZM109.228 115.63C109.184 115.455 109.176 115.272 109.204 115.094C109.232 114.915 109.296 114.744 109.392 114.592C109.488 114.439 109.613 114.308 109.761 114.206C109.908 114.104 110.075 114.033 110.251 113.998L112.897 113.449C113.259 113.376 113.637 113.446 113.95 113.646C114.264 113.845 114.49 114.158 114.581 114.521L115.067 116.509C115.111 116.685 115.119 116.868 115.091 117.047C115.063 117.226 115 117.397 114.904 117.55C114.809 117.704 114.684 117.836 114.536 117.939C114.389 118.042 114.222 118.114 114.046 118.15L111.4 118.699C111.037 118.77 110.661 118.697 110.348 118.495C110.036 118.294 109.812 117.98 109.723 117.617L109.228 115.63ZM165.433 102.779C165.796 102.706 166.173 102.777 166.487 102.976C166.8 103.175 167.026 103.489 167.118 103.851L167.604 105.839C167.646 106.014 167.654 106.197 167.625 106.375C167.596 106.553 167.532 106.723 167.437 106.875C167.341 107.028 167.216 107.159 167.069 107.262C166.922 107.364 166.756 107.435 166.581 107.472L163.935 108.02C163.573 108.091 163.197 108.02 162.884 107.821C162.57 107.622 162.344 107.31 162.251 106.949L161.774 104.959C161.73 104.784 161.722 104.602 161.749 104.424C161.777 104.246 161.84 104.076 161.935 103.924C162.03 103.772 162.154 103.64 162.301 103.538C162.447 103.435 162.613 103.364 162.788 103.328L165.433 102.779ZM161.633 99.0919C161.271 99.1648 160.895 99.0938 160.583 98.8939C160.271 98.694 160.047 98.3804 159.957 98.0187L159.472 96.0304C159.428 95.8548 159.42 95.6722 159.448 95.4937C159.476 95.3152 159.54 95.1444 159.635 94.9917C159.731 94.8391 159.856 94.7077 160.004 94.6056C160.152 94.5035 160.319 94.4328 160.495 94.3977L163.14 93.8491C163.503 93.776 163.88 93.8464 164.194 94.0458C164.507 94.2453 164.733 94.5584 164.825 94.9204L165.311 96.9088C165.353 97.0843 165.36 97.2665 165.332 97.4446C165.303 97.6227 165.239 97.793 165.144 97.9453C165.048 98.0977 164.923 98.229 164.776 98.3314C164.629 98.4338 164.463 98.5053 164.288 98.5415L161.633 99.0919ZM160.777 84.5807C161.139 84.5098 161.516 84.5812 161.829 84.7803C162.142 84.9794 162.368 85.2911 162.462 85.652L162.948 87.6404C162.99 87.8159 162.997 87.9981 162.968 88.1762C162.94 88.3543 162.876 88.5245 162.78 88.6769C162.685 88.8292 162.56 88.9606 162.413 89.063C162.266 89.1654 162.1 89.2368 161.925 89.273L159.279 89.8216C158.916 89.8925 158.54 89.8211 158.227 89.6221C157.914 89.423 157.688 89.1112 157.594 88.7503L157.108 86.762C157.066 86.5865 157.059 86.4042 157.087 86.2262C157.116 86.0481 157.18 85.8778 157.276 85.7255C157.371 85.5731 157.496 85.4418 157.643 85.3394C157.79 85.237 157.956 85.1655 158.131 85.1293L160.777 84.5807ZM113.662 127.654C113.3 127.725 112.925 127.653 112.613 127.453C112.302 127.254 112.077 126.942 111.986 126.581L111.5 124.593C111.456 124.417 111.448 124.235 111.476 124.056C111.505 123.878 111.568 123.707 111.664 123.554C111.76 123.401 111.885 123.27 112.033 123.168C112.18 123.066 112.347 122.995 112.523 122.96L115.169 122.412C115.531 122.338 115.909 122.409 116.222 122.608C116.536 122.808 116.762 123.121 116.854 123.483L117.339 125.471C117.382 125.647 117.389 125.829 117.36 126.007C117.332 126.185 117.268 126.355 117.172 126.508C117.077 126.66 116.952 126.791 116.805 126.894C116.658 126.996 116.492 127.068 116.317 127.104L113.662 127.654ZM124.095 125.491C123.733 125.562 123.357 125.491 123.043 125.291C122.73 125.092 122.504 124.781 122.41 124.42L121.925 122.431C121.882 122.256 121.875 122.074 121.904 121.896C121.932 121.718 121.996 121.547 122.092 121.395C122.187 121.243 122.312 121.111 122.459 121.009C122.606 120.906 122.772 120.835 122.947 120.799L125.593 120.25C125.956 120.179 126.332 120.251 126.645 120.45C126.958 120.649 127.184 120.961 127.278 121.321L127.764 123.31C127.806 123.485 127.813 123.668 127.785 123.846C127.756 124.024 127.692 124.194 127.596 124.346C127.501 124.499 127.376 124.63 127.229 124.732C127.082 124.835 126.916 124.906 126.741 124.942L124.095 125.491ZM134.687 123.341C134.326 123.412 133.951 123.34 133.639 123.14C133.327 122.941 133.103 122.629 133.012 122.268L132.526 120.28C132.482 120.104 132.474 119.922 132.502 119.743C132.53 119.565 132.594 119.394 132.69 119.241C132.785 119.089 132.911 118.957 133.058 118.855C133.206 118.753 133.373 118.682 133.549 118.647L136.194 118.099C136.557 118.025 136.934 118.096 137.248 118.295C137.562 118.495 137.787 118.808 137.879 119.17L138.365 121.158C138.407 121.334 138.415 121.516 138.386 121.694C138.357 121.872 138.293 122.042 138.198 122.195C138.102 122.347 137.977 122.478 137.83 122.581C137.683 122.683 137.517 122.755 137.342 122.791L134.687 123.341ZM145.121 121.178C144.758 121.249 144.382 121.178 144.069 120.979C143.756 120.779 143.529 120.468 143.436 120.107L142.959 118.117C142.915 117.942 142.907 117.76 142.935 117.582C142.963 117.404 143.026 117.234 143.12 117.082C143.215 116.93 143.339 116.798 143.486 116.696C143.632 116.593 143.798 116.522 143.973 116.486L146.619 115.937C146.981 115.866 147.357 115.938 147.67 116.137C147.984 116.336 148.21 116.648 148.303 117.009L148.789 118.997C148.832 119.172 148.839 119.355 148.81 119.533C148.782 119.711 148.718 119.881 148.622 120.033C148.527 120.186 148.402 120.317 148.255 120.419C148.108 120.522 147.942 120.593 147.766 120.63L145.121 121.178ZM155.798 119.085C155.437 119.156 155.061 119.084 154.75 118.884C154.438 118.684 154.214 118.372 154.123 118.012L153.637 116.023C153.594 115.848 153.587 115.666 153.616 115.488C153.644 115.31 153.708 115.139 153.804 114.987C153.899 114.835 154.024 114.703 154.171 114.601C154.318 114.498 154.484 114.427 154.659 114.391L157.305 113.842C157.667 113.772 158.042 113.844 158.354 114.043C158.665 114.243 158.89 114.555 158.981 114.915L159.467 116.904C159.51 117.079 159.517 117.261 159.488 117.44C159.459 117.618 159.395 117.788 159.3 117.94C159.204 118.093 159.079 118.224 158.932 118.326C158.785 118.429 158.619 118.5 158.444 118.536L155.798 119.085ZM166.771 84.7401C166.728 84.5646 166.721 84.3824 166.75 84.2043C166.778 84.0262 166.842 83.8559 166.938 83.7036C167.033 83.5512 167.158 83.4199 167.305 83.3175C167.452 83.2151 167.618 83.1436 167.794 83.1074L170.439 82.5588C170.802 82.4879 171.178 82.5593 171.491 82.7584C171.804 82.9575 172.03 83.2693 172.124 83.6301L172.61 85.6185C172.654 85.7945 172.662 85.9775 172.634 86.1565C172.606 86.3355 172.542 86.5068 172.447 86.6601C172.352 86.8134 172.226 86.9456 172.079 87.0487C171.931 87.1518 171.765 87.2237 171.589 87.2601L168.943 87.8086C168.579 87.8797 168.201 87.8073 167.888 87.6064C167.574 87.4055 167.348 87.0913 167.256 86.7284L166.771 84.7401ZM169.134 94.0085C169.09 93.8329 169.082 93.6503 169.11 93.4718C169.138 93.2933 169.202 93.1225 169.298 92.9698C169.393 92.8171 169.519 92.6858 169.666 92.5837C169.814 92.4816 169.981 92.4109 170.157 92.3758L172.802 91.8273C173.165 91.7541 173.542 91.8245 173.856 92.0239C174.17 92.2234 174.396 92.5365 174.487 92.8986L174.973 94.8869C175.016 95.0624 175.023 95.2446 174.994 95.4227C174.965 95.6008 174.901 95.771 174.806 95.9234C174.71 96.0757 174.585 96.2071 174.438 96.3095C174.291 96.4119 174.125 96.4834 173.95 96.5196L171.304 97.0682C170.943 97.1387 170.568 97.0668 170.256 96.8672C169.944 96.6677 169.72 96.3556 169.629 95.995L169.134 94.0085ZM173.597 105.998C173.236 106.071 172.859 106 172.547 105.8C172.235 105.6 172.011 105.287 171.922 104.925L171.436 102.937C171.392 102.761 171.384 102.579 171.412 102.4C171.44 102.222 171.504 102.051 171.6 101.898C171.695 101.745 171.821 101.614 171.968 101.512C172.116 101.41 172.283 101.339 172.459 101.304L175.104 100.756C175.467 100.682 175.844 100.753 176.158 100.952C176.471 101.152 176.697 101.465 176.789 101.827L177.275 103.815C177.317 103.991 177.325 104.173 177.296 104.351C177.267 104.529 177.203 104.699 177.108 104.852C177.012 105.004 176.887 105.135 176.74 105.238C176.593 105.34 176.427 105.412 176.252 105.448L173.597 105.998Z" fill="var(--sapContent_Illustrative_Color7)"/>
23
+ <path d="M96.9057 85.1681L127.897 78.7425C128.115 78.6988 128.321 78.6109 128.504 78.484C128.687 78.3571 128.842 78.194 128.96 78.0045C129.078 77.815 129.157 77.6031 129.191 77.3817C129.226 77.1603 129.215 76.9339 129.16 76.7165V76.7165C129.043 76.2646 128.758 75.8749 128.364 75.6281C127.97 75.3813 127.498 75.2963 127.045 75.3908L96.0632 81.8145C95.8453 81.8582 95.6387 81.9462 95.4559 82.073C95.2731 82.1999 95.1178 82.3631 94.9996 82.5526C94.8815 82.7421 94.8029 82.954 94.7685 83.1754C94.7342 83.3968 94.7449 83.6231 94.8 83.8405V83.8405C94.9169 84.2909 95.2004 84.6796 95.5921 84.9266C95.9838 85.1735 96.454 85.2599 96.9057 85.1681Z" fill="var(--sapContent_Illustrative_Color7)"/>
24
+ <path d="M237.978 125.656C237.978 153.816 215.149 176.645 186.989 176.645C158.829 176.645 136 153.816 136 125.656C136 97.4951 158.829 74.6665 186.989 74.6665C215.149 74.6665 237.978 97.4951 237.978 125.656Z" fill="var(--sapContent_Illustrative_Color9)"/>
25
+ <path d="M186.989 120.852C194.24 120.852 200.118 114.974 200.118 107.722C200.118 100.471 194.24 94.5933 186.989 94.5933C179.738 94.5933 173.86 100.471 173.86 107.722C173.86 114.974 179.738 120.852 186.989 120.852Z" fill="var(--sapContent_Illustrative_Color17)"/>
26
+ <path d="M186.989 125.666C193.051 125.666 198.865 128.074 203.151 132.361C207.438 136.647 209.846 142.461 209.846 148.523V156.636H164.132V148.523C164.132 142.461 166.54 136.647 170.827 132.361C175.113 128.074 180.927 125.666 186.989 125.666V125.666Z" fill="var(--sapContent_Illustrative_Color17)"/>
27
+ <path d="M141.333 182.667C157.534 182.667 170.667 169.534 170.667 153.333C170.667 137.133 157.534 124 141.333 124C125.133 124 112 137.133 112 153.333C112 169.534 125.133 182.667 141.333 182.667Z" fill="var(--sapContent_Illustrative_Color3)"/>
28
+ <path d="M141.344 137.36H141.334C139.144 137.36 137.37 139.135 137.37 141.324V165.344C137.37 167.533 139.144 169.307 141.334 169.307H141.344C143.533 169.307 145.308 167.533 145.308 165.344V141.324C145.308 139.135 143.533 137.36 141.344 137.36Z" fill="var(--sapContent_Illustrative_Color8)"/>
29
+ <path d="M126.04 152.881V153.777C126.04 155.722 127.616 157.298 129.561 157.298H153.138C155.082 157.298 156.659 155.722 156.659 153.777V152.881C156.659 150.936 155.082 149.36 153.138 149.36H129.561C127.616 149.36 126.04 150.936 126.04 152.881Z" fill="var(--sapContent_Illustrative_Color8)"/>
30
+ </svg>
31
+ `;