@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/esm2022/lib/core-ui/components/avatar/avatar.component.mjs +3 -3
- package/esm2022/ui5/icons/lx-icons.json +132 -0
- package/esm2022/ui5/icons/register-icons.mjs +14 -0
- package/esm2022/ui5/index.mjs +3 -2
- package/esm2022/ui5/ui5.provider.mjs +29 -0
- package/fesm2022/leanix-components-ui5-lx-icons-Dv9g1zbc.mjs +138 -0
- package/fesm2022/leanix-components-ui5-lx-icons-Dv9g1zbc.mjs.map +1 -0
- package/fesm2022/leanix-components-ui5.mjs +43 -2
- package/fesm2022/leanix-components-ui5.mjs.map +1 -1
- package/fesm2022/leanix-components.mjs +2 -2
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/package.json +4 -1
- package/ui5/icons/register-icons.d.ts +4 -0
- package/ui5/index.d.ts +1 -0
- package/ui5/ui5.provider.d.ts +15 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@leanix/components",
|
3
|
-
"version": "0.4.
|
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",
|
package/ui5/index.d.ts
CHANGED
@@ -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;
|