@leanix/components 0.4.945 → 0.4.947

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.
@@ -0,0 +1,22 @@
1
+ export { IllustratedMessageComponent } from '@ui5/webcomponents-ngx/fiori/illustrated-message';
2
+ export { NotificationListComponent } from '@ui5/webcomponents-ngx/fiori/notification-list';
3
+ export { NotificationListGroupItemComponent } from '@ui5/webcomponents-ngx/fiori/notification-list-group-item';
4
+ export { NotificationListItemComponent } from '@ui5/webcomponents-ngx/fiori/notification-list-item';
5
+ export { AvatarComponent } from '@ui5/webcomponents-ngx/main/avatar';
6
+
7
+ /**
8
+ * SAP Fiori UI5 components that are heavier / theming-affecting and therefore live in a
9
+ * dedicated secondary entry point. Importing them must NOT happen through the main
10
+ * `@leanix/components/ui5` barrel, because that barrel is consumed by apps (e.g. diagrams)
11
+ * whose bundles would then pull in Fiori theming and shift unrelated UI5 layout.
12
+ */
13
+ function registerNoNotificationsIllustration() {
14
+ return import('@ui5/webcomponents-fiori/dist/illustrations/NoNotifications.js').then(() => undefined);
15
+ }
16
+
17
+ /**
18
+ * Generated bundle index. Do not edit.
19
+ */
20
+
21
+ export { registerNoNotificationsIllustration };
22
+ //# sourceMappingURL=leanix-components-ui5-fiori.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"leanix-components-ui5-fiori.mjs","sources":["../../../../libs/components/ui5/fiori/index.ts","../../../../libs/components/ui5/fiori/leanix-components-ui5-fiori.ts"],"sourcesContent":["/**\n * SAP Fiori UI5 components that are heavier / theming-affecting and therefore live in a\n * dedicated secondary entry point. Importing them must NOT happen through the main\n * `@leanix/components/ui5` barrel, because that barrel is consumed by apps (e.g. diagrams)\n * whose bundles would then pull in Fiori theming and shift unrelated UI5 layout.\n */\nexport { IllustratedMessageComponent } from '@ui5/webcomponents-ngx/fiori/illustrated-message';\nexport { NotificationListComponent } from '@ui5/webcomponents-ngx/fiori/notification-list';\nexport { NotificationListGroupItemComponent } from '@ui5/webcomponents-ngx/fiori/notification-list-group-item';\nexport { NotificationListItemComponent } from '@ui5/webcomponents-ngx/fiori/notification-list-item';\nexport { AvatarComponent } from '@ui5/webcomponents-ngx/main/avatar';\n\nexport function registerNoNotificationsIllustration(): Promise<void> {\n return import('@ui5/webcomponents-fiori/dist/illustrations/NoNotifications.js').then(() => undefined);\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAAA;;;;;AAKG;SAOa,mCAAmC,GAAA;AACjD,IAAA,OAAO,OAAO,gEAAgE,CAAC,CAAC,IAAI,CAAC,MAAM,SAAS,CAAC;AACvG;;ACdA;;AAEG;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.4.945",
3
+ "version": "0.4.947",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {
@@ -41,6 +41,7 @@
41
41
  "@tiptap/extension-placeholder": "2.7.0",
42
42
  "@ui5/webcomponents": "2.18.1",
43
43
  "@ui5/webcomponents-base": "2.18.1",
44
+ "@ui5/webcomponents-fiori": "2.18.1",
44
45
  "@ui5/webcomponents-icons": "2.18.1",
45
46
  "@ui5/webcomponents-icons-business-suite": "2.18.1",
46
47
  "@ui5/webcomponents-icons-tnt": "2.18.1",
@@ -79,6 +80,10 @@
79
80
  "./ui5": {
80
81
  "types": "./ui5/index.d.ts",
81
82
  "default": "./fesm2022/leanix-components-ui5.mjs"
83
+ },
84
+ "./ui5/fiori": {
85
+ "types": "./ui5/fiori/index.d.ts",
86
+ "default": "./fesm2022/leanix-components-ui5-fiori.mjs"
82
87
  }
83
88
  },
84
89
  "sideEffects": false
@@ -0,0 +1,16 @@
1
+ export { AvatarComponent } from '@ui5/webcomponents-ngx/main/avatar';
2
+ export { IllustratedMessageComponent } from '@ui5/webcomponents-ngx/fiori/illustrated-message';
3
+ export { NotificationListComponent } from '@ui5/webcomponents-ngx/fiori/notification-list';
4
+ export { NotificationListGroupItemComponent } from '@ui5/webcomponents-ngx/fiori/notification-list-group-item';
5
+ export { NotificationListItemComponent } from '@ui5/webcomponents-ngx/fiori/notification-list-item';
6
+
7
+ /**
8
+ * SAP Fiori UI5 components that are heavier / theming-affecting and therefore live in a
9
+ * dedicated secondary entry point. Importing them must NOT happen through the main
10
+ * `@leanix/components/ui5` barrel, because that barrel is consumed by apps (e.g. diagrams)
11
+ * whose bundles would then pull in Fiori theming and shift unrelated UI5 layout.
12
+ */
13
+
14
+ declare function registerNoNotificationsIllustration(): Promise<void>;
15
+
16
+ export { registerNoNotificationsIllustration };