@leanix/components 0.4.513 → 0.4.515

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.4.513",
3
+ "version": "0.4.515",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {
@@ -12,6 +12,9 @@
12
12
  "@ncstate/sat-popover": "13.1.0",
13
13
  "@ui5/webcomponents": "2.9.0",
14
14
  "@ui5/webcomponents-base": "2.9.0",
15
+ "@ui5/webcomponents-icons": "2.9.0",
16
+ "@ui5/webcomponents-icons-business-suite": "2.9.0",
17
+ "@ui5/webcomponents-icons-tnt": "2.9.0",
15
18
  "@ui5/webcomponents-ngx": "0.4.6",
16
19
  "color": "3.1.3",
17
20
  "date-fns": "1.30.1",
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Registers icon libraries with UI5.
3
+ */
4
+ export declare function registerIconsWithUi5(): Promise<void>;
package/ui5/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  /**
2
2
  * All UI5-related components / directives supported by the SAP LeanIX Design System.
3
3
  */
4
+ export * from './ui5.provider';
4
5
  export { IconComponent } from '@ui5/webcomponents-ngx/main/icon';
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Sets up providers necessary to use UI5 components in the application.
3
+ *
4
+ * @usageNotes
5
+ *
6
+ * Basic example of how you can add UI5 to your application:
7
+ * ```ts
8
+ * import { provideUi5 } from '@leanix/components/ui5';
9
+ *
10
+ * bootstrapApplication(AppComponent, {
11
+ * providers: [provideUi5()]
12
+ * });
13
+ * ```
14
+ */
15
+ export declare const provideUi5: () => import("@angular/core").EnvironmentProviders;