@ui5/webcomponents-fiori 2.20.0 → 2.21.0-rc.0

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 (65) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/DynamicPage.js +6 -3
  4. package/dist/DynamicPage.js.map +1 -1
  5. package/dist/Search.d.ts +13 -0
  6. package/dist/Search.js +82 -7
  7. package/dist/Search.js.map +1 -1
  8. package/dist/SearchPopoverTemplate.js +1 -1
  9. package/dist/SearchPopoverTemplate.js.map +1 -1
  10. package/dist/SideNavigation.js +2 -4
  11. package/dist/SideNavigation.js.map +1 -1
  12. package/dist/UserMenu.d.ts +1 -0
  13. package/dist/UserMenu.js +22 -12
  14. package/dist/UserMenu.js.map +1 -1
  15. package/dist/css/themes/SearchItem.css +1 -1
  16. package/dist/generated/themes/SearchItem.css.d.ts +1 -1
  17. package/dist/generated/themes/SearchItem.css.js +1 -1
  18. package/dist/generated/themes/SearchItem.css.js.map +1 -1
  19. package/dist/illustrations/tnt/Avatar.js +9 -0
  20. package/dist/illustrations/tnt/Calculator.js +9 -0
  21. package/dist/illustrations/tnt/ChartArea.js +9 -0
  22. package/dist/illustrations/tnt/ChartArea2.js +9 -0
  23. package/dist/illustrations/tnt/ChartBPMNFlow.js +9 -0
  24. package/dist/illustrations/tnt/ChartBar.js +9 -0
  25. package/dist/illustrations/tnt/ChartBullet.js +9 -0
  26. package/dist/illustrations/tnt/ChartDoughnut.js +9 -0
  27. package/dist/illustrations/tnt/ChartFlow.js +9 -0
  28. package/dist/illustrations/tnt/ChartGantt.js +9 -0
  29. package/dist/illustrations/tnt/ChartOrg.js +9 -0
  30. package/dist/illustrations/tnt/ChartPie.js +9 -0
  31. package/dist/illustrations/tnt/CodePlaceholder.js +9 -0
  32. package/dist/illustrations/tnt/Company.js +9 -0
  33. package/dist/illustrations/tnt/Compass.js +9 -0
  34. package/dist/illustrations/tnt/Components.js +9 -0
  35. package/dist/illustrations/tnt/Dialog.js +9 -0
  36. package/dist/illustrations/tnt/ExternalLink.js +9 -0
  37. package/dist/illustrations/tnt/FaceID.js +9 -0
  38. package/dist/illustrations/tnt/Fingerprint.js +9 -0
  39. package/dist/illustrations/tnt/Handshake.js +9 -0
  40. package/dist/illustrations/tnt/Help.js +9 -0
  41. package/dist/illustrations/tnt/Lock.js +9 -0
  42. package/dist/illustrations/tnt/Mission.js +9 -0
  43. package/dist/illustrations/tnt/MissionFailed.js +9 -0
  44. package/dist/illustrations/tnt/NoApplications.js +9 -0
  45. package/dist/illustrations/tnt/NoFlows.js +9 -0
  46. package/dist/illustrations/tnt/NoUsers.js +9 -0
  47. package/dist/illustrations/tnt/Radar.js +9 -0
  48. package/dist/illustrations/tnt/RoadMap.js +9 -0
  49. package/dist/illustrations/tnt/Secrets.js +9 -0
  50. package/dist/illustrations/tnt/Services.js +9 -0
  51. package/dist/illustrations/tnt/SessionExpired.js +9 -0
  52. package/dist/illustrations/tnt/SessionExpiring.js +9 -0
  53. package/dist/illustrations/tnt/Settings.js +9 -0
  54. package/dist/illustrations/tnt/Success.js +9 -0
  55. package/dist/illustrations/tnt/SuccessfulAuth.js +9 -0
  56. package/dist/illustrations/tnt/Systems.js +9 -0
  57. package/dist/illustrations/tnt/Teams.js +9 -0
  58. package/dist/illustrations/tnt/Tools.js +9 -0
  59. package/dist/illustrations/tnt/Tutorials.js +9 -0
  60. package/dist/illustrations/tnt/Unlock.js +9 -0
  61. package/dist/illustrations/tnt/UnsuccessfulAuth.js +9 -0
  62. package/dist/web-types.json +1 -1
  63. package/package.json +7 -7
  64. package/src/SearchPopoverTemplate.tsx +1 -0
  65. package/src/themes/SearchItem.css +0 -4
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-ChartPie.js";
3
3
  import sceneSvg from "./tnt-Scene-ChartPie.js";
4
4
  import spotSvg from "./tnt-Spot-ChartPie.js";
5
5
  import dotSvg from "./tnt-Spot-ChartPie.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/ChartPie", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/ChartPie.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/ChartPie", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/ChartPie.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "ChartPie";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-CodePlaceholder.js";
3
3
  import sceneSvg from "./tnt-Scene-CodePlaceholder.js";
4
4
  import spotSvg from "./tnt-Spot-CodePlaceholder.js";
5
5
  import dotSvg from "./tnt-Spot-CodePlaceholder.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/CodePlaceholder", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/CodePlaceholder.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/CodePlaceholder", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/CodePlaceholder.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "CodePlaceholder";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Company.js";
3
3
  import sceneSvg from "./tnt-Scene-Company.js";
4
4
  import spotSvg from "./tnt-Spot-Company.js";
5
5
  import dotSvg from "./tnt-Spot-Company.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Company", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Company.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Company", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Company.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Company";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Compass.js";
3
3
  import sceneSvg from "./tnt-Scene-Compass.js";
4
4
  import spotSvg from "./tnt-Spot-Compass.js";
5
5
  import dotSvg from "./tnt-Dot-Compass.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Compass", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Compass.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Compass", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Compass.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Compass";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Components.js";
3
3
  import sceneSvg from "./tnt-Scene-Components.js";
4
4
  import spotSvg from "./tnt-Spot-Components.js";
5
5
  import dotSvg from "./tnt-Spot-Components.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Components", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Components.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Components", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Components.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Components";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Dialog.js";
3
3
  import sceneSvg from "./tnt-Scene-Dialog.js";
4
4
  import spotSvg from "./tnt-Spot-Dialog.js";
5
5
  import dotSvg from "./tnt-Dot-Dialog.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Dialog", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Dialog.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Dialog", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Dialog.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Dialog";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-ExternalLink.js";
3
3
  import sceneSvg from "./tnt-Scene-ExternalLink.js";
4
4
  import spotSvg from "./tnt-Spot-ExternalLink.js";
5
5
  import dotSvg from "./tnt-Spot-ExternalLink.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/ExternalLink", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/ExternalLink.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/ExternalLink", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/ExternalLink.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "ExternalLink";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-FaceID.js";
3
3
  import sceneSvg from "./tnt-Scene-FaceID.js";
4
4
  import spotSvg from "./tnt-Spot-FaceID.js";
5
5
  import dotSvg from "./tnt-Spot-FaceID.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/FaceID", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/FaceID.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/FaceID", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/FaceID.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "FaceID";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Fingerprint.js";
3
3
  import sceneSvg from "./tnt-Scene-Fingerprint.js";
4
4
  import spotSvg from "./tnt-Spot-Fingerprint.js";
5
5
  import dotSvg from "./tnt-Spot-Fingerprint.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Fingerprint", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Fingerprint.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Fingerprint", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Fingerprint.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Fingerprint";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Handshake.js";
3
3
  import sceneSvg from "./tnt-Scene-Handshake.js";
4
4
  import spotSvg from "./tnt-Spot-Handshake.js";
5
5
  import dotSvg from "./tnt-Dot-Handshake.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Handshake", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Handshake.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Handshake", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Handshake.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Handshake";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Help.js";
3
3
  import sceneSvg from "./tnt-Scene-Help.js";
4
4
  import spotSvg from "./tnt-Spot-Help.js";
5
5
  import dotSvg from "./tnt-Dot-Help.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Help", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Help.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Help", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Help.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Help";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Lock.js";
3
3
  import sceneSvg from "./tnt-Scene-Lock.js";
4
4
  import spotSvg from "./tnt-Spot-Lock.js";
5
5
  import dotSvg from "./tnt-Spot-Lock.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Lock", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Lock.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Lock", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Lock.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Lock";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Mission.js";
3
3
  import sceneSvg from "./tnt-Scene-Mission.js";
4
4
  import spotSvg from "./tnt-Spot-Mission.js";
5
5
  import dotSvg from "./tnt-Spot-Mission.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Mission", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Mission.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Mission", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Mission.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Mission";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-MissionFailed.js";
3
3
  import sceneSvg from "./tnt-Scene-MissionFailed.js";
4
4
  import spotSvg from "./tnt-Spot-MissionFailed.js";
5
5
  import dotSvg from "./tnt-Dot-MissionFailed.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/MissionFailed", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/MissionFailed.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/MissionFailed", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/MissionFailed.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "MissionFailed";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-NoApplications.js";
3
3
  import sceneSvg from "./tnt-Scene-NoApplications.js";
4
4
  import spotSvg from "./tnt-Spot-NoApplications.js";
5
5
  import dotSvg from "./tnt-Spot-NoApplications.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/NoApplications", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/NoApplications.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/NoApplications", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/NoApplications.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "NoApplications";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-NoFlows.js";
3
3
  import sceneSvg from "./tnt-Scene-NoFlows.js";
4
4
  import spotSvg from "./tnt-Spot-NoFlows.js";
5
5
  import dotSvg from "./tnt-Spot-NoFlows.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/NoFlows", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/NoFlows.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/NoFlows", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/NoFlows.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "NoFlows";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-NoUsers.js";
3
3
  import sceneSvg from "./tnt-Scene-NoUsers.js";
4
4
  import spotSvg from "./tnt-Spot-NoUsers.js";
5
5
  import dotSvg from "./tnt-Spot-NoUsers.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/NoUsers", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/NoUsers.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/NoUsers", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/NoUsers.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "NoUsers";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Radar.js";
3
3
  import sceneSvg from "./tnt-Scene-Radar.js";
4
4
  import spotSvg from "./tnt-Spot-Radar.js";
5
5
  import dotSvg from "./tnt-Spot-Radar.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Radar", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Radar.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Radar", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Radar.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Radar";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-RoadMap.js";
3
3
  import sceneSvg from "./tnt-Scene-RoadMap.js";
4
4
  import spotSvg from "./tnt-Spot-RoadMap.js";
5
5
  import dotSvg from "./tnt-Dot-RoadMap.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/RoadMap", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/RoadMap.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/RoadMap", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/RoadMap.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "RoadMap";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Secrets.js";
3
3
  import sceneSvg from "./tnt-Scene-Secrets.js";
4
4
  import spotSvg from "./tnt-Spot-Secrets.js";
5
5
  import dotSvg from "./tnt-Spot-Secrets.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Secrets", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Secrets.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Secrets", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Secrets.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Secrets";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Services.js";
3
3
  import sceneSvg from "./tnt-Scene-Services.js";
4
4
  import spotSvg from "./tnt-Spot-Services.js";
5
5
  import dotSvg from "./tnt-Spot-Services.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Services", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Services.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Services", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Services.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Services";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-SessionExpired.js";
3
3
  import sceneSvg from "./tnt-Scene-SessionExpired.js";
4
4
  import spotSvg from "./tnt-Spot-SessionExpired.js";
5
5
  import dotSvg from "./tnt-Spot-SessionExpired.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/SessionExpired", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/SessionExpired.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/SessionExpired", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/SessionExpired.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "SessionExpired";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-SessionExpiring.js";
3
3
  import sceneSvg from "./tnt-Scene-SessionExpiring.js";
4
4
  import spotSvg from "./tnt-Spot-SessionExpiring.js";
5
5
  import dotSvg from "./tnt-Spot-SessionExpiring.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/SessionExpiring", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/SessionExpiring.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/SessionExpiring", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/SessionExpiring.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "SessionExpiring";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Settings.js";
3
3
  import sceneSvg from "./tnt-Scene-Settings.js";
4
4
  import spotSvg from "./tnt-Spot-Settings.js";
5
5
  import dotSvg from "./tnt-Dot-Settings.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Settings", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Settings.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Settings", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Settings.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Settings";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Success.js";
3
3
  import sceneSvg from "./tnt-Scene-Success.js";
4
4
  import spotSvg from "./tnt-Spot-Success.js";
5
5
  import dotSvg from "./tnt-Spot-Success.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Success", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Success.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Success", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Success.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Success";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-SuccessfulAuth.js";
3
3
  import sceneSvg from "./tnt-Scene-SuccessfulAuth.js";
4
4
  import spotSvg from "./tnt-Spot-SuccessfulAuth.js";
5
5
  import dotSvg from "./tnt-Spot-SuccessfulAuth.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/SuccessfulAuth", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/SuccessfulAuth.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/SuccessfulAuth", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/SuccessfulAuth.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "SuccessfulAuth";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Systems.js";
3
3
  import sceneSvg from "./tnt-Scene-Systems.js";
4
4
  import spotSvg from "./tnt-Spot-Systems.js";
5
5
  import dotSvg from "./tnt-Spot-Systems.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Systems", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Systems.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Systems", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Systems.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Systems";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Teams.js";
3
3
  import sceneSvg from "./tnt-Scene-Teams.js";
4
4
  import spotSvg from "./tnt-Spot-Teams.js";
5
5
  import dotSvg from "./tnt-Spot-Teams.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Teams", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Teams.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Teams", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Teams.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Teams";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Tools.js";
3
3
  import sceneSvg from "./tnt-Scene-Tools.js";
4
4
  import spotSvg from "./tnt-Spot-Tools.js";
5
5
  import dotSvg from "./tnt-Spot-Tools.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Tools", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Tools.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Tools", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Tools.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Tools";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Tutorials.js";
3
3
  import sceneSvg from "./tnt-Scene-Tutorials.js";
4
4
  import spotSvg from "./tnt-Spot-Tutorials.js";
5
5
  import dotSvg from "./tnt-Dot-Tutorials.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Tutorials", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Tutorials.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Tutorials", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Tutorials.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Tutorials";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-Unlock.js";
3
3
  import sceneSvg from "./tnt-Scene-Unlock.js";
4
4
  import spotSvg from "./tnt-Spot-Unlock.js";
5
5
  import dotSvg from "./tnt-Spot-Unlock.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/Unlock", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/Unlock.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/Unlock", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/Unlock.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "Unlock";
8
17
  const set = "tnt";
@@ -3,6 +3,15 @@ import dialogSvg from "./tnt-Dialog-UnsuccessfulAuth.js";
3
3
  import sceneSvg from "./tnt-Scene-UnsuccessfulAuth.js";
4
4
  import spotSvg from "./tnt-Spot-UnsuccessfulAuth.js";
5
5
  import dotSvg from "./tnt-Spot-UnsuccessfulAuth.js";
6
+ import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
7
+
8
+ registerIllustrationLoader("tnt/V5/UnsuccessfulAuth", async function loadIllustrationV5() {
9
+ return (await import("../../illustrations-v5/tnt/UnsuccessfulAuth.js")).default;
10
+ });
11
+ registerIllustrationLoader("tnt/V5/HC/UnsuccessfulAuth", async function loadIllustrationV5HC() {
12
+ return (await import("../../illustrations-v5/tnt/hc/UnsuccessfulAuth.js")).default;
13
+ });
14
+
6
15
 
7
16
  const name = "UnsuccessfulAuth";
8
17
  const set = "tnt";
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@ui5/webcomponents-fiori",
4
- "version": "2.20.0",
4
+ "version": "2.21.0-rc.0",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-fiori",
3
- "version": "2.20.0",
3
+ "version": "2.21.0-rc.0",
4
4
  "description": "UI5 Web Components: webcomponents.fiori",
5
5
  "ui5": {
6
6
  "webComponentsPackage": true
@@ -54,20 +54,20 @@
54
54
  "directory": "packages/fiori"
55
55
  },
56
56
  "dependencies": {
57
- "@ui5/webcomponents": "2.20.0",
58
- "@ui5/webcomponents-base": "2.20.0",
59
- "@ui5/webcomponents-icons": "2.20.0",
60
- "@ui5/webcomponents-theming": "2.20.0",
57
+ "@ui5/webcomponents": "2.21.0-rc.0",
58
+ "@ui5/webcomponents-base": "2.21.0-rc.0",
59
+ "@ui5/webcomponents-icons": "2.21.0-rc.0",
60
+ "@ui5/webcomponents-theming": "2.21.0-rc.0",
61
61
  "@zxing/library": "^0.21.3"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@custom-elements-manifest/analyzer": "^0.10.10",
65
65
  "@ui5/cypress-internal": "0.1.0",
66
- "@ui5/webcomponents-tools": "2.20.0",
66
+ "@ui5/webcomponents-tools": "2.21.0-rc.0",
67
67
  "cypress": "15.9.0",
68
68
  "lit": "^2.0.0",
69
69
  "vite": "5.4.21",
70
70
  "yarn": "^1.22.22"
71
71
  },
72
- "gitHead": "2642c2e61d49914e75d59f48d63576486037ff63"
72
+ "gitHead": "a8d2c7b4e5b3f1c64a6ff6119fe6f949df2436b0"
73
73
  }
@@ -60,6 +60,7 @@ export default function SearchPopoverTemplate(this: Search, headerTemplate?: Jsx
60
60
  class="ui5-search-list"
61
61
  separators={ListSeparator.None}
62
62
  onKeyDown={this._onItemKeydown}
63
+ onFocusIn={this._onListItemFocusIn}
63
64
  accessibleRole={ListAccessibleRole.ListBox}
64
65
  onItemClick={this._onItemClick}>
65
66
  <slot></slot>
@@ -1,7 +1,3 @@
1
- :host([selected]) {
2
- border: none;
3
- }
4
-
5
1
  :host(:focus-within) {
6
2
  outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);
7
3
  outline-offset: calc(-1 * var(--sapContent_FocusWidth) - 0.125rem);