beca-ui 2.1.0-beta.36 → 2.1.0-beta.37
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/dist/beca-ui.js
CHANGED
|
@@ -93473,7 +93473,7 @@ const EYe = (e) => {
|
|
|
93473
93473
|
a.map((s) => /* @__PURE__ */ A(
|
|
93474
93474
|
_Y,
|
|
93475
93475
|
{
|
|
93476
|
-
icon: s.image,
|
|
93476
|
+
icon: s.image2 ?? s.image,
|
|
93477
93477
|
text: s.name,
|
|
93478
93478
|
url: s.href,
|
|
93479
93479
|
active: r === s.appId
|
|
@@ -10,7 +10,8 @@ export interface ApplicationsCardItem {
|
|
|
10
10
|
appId?: string;
|
|
11
11
|
id: string;
|
|
12
12
|
name: string;
|
|
13
|
-
image
|
|
13
|
+
image?: string | React.ReactNode;
|
|
14
|
+
image2?: string | React.ReactNode;
|
|
14
15
|
href?: string;
|
|
15
16
|
iconBackgroundColor?: string;
|
|
16
17
|
order?: number;
|