kaleido-ui 0.1.22 → 0.1.24
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/web/index.cjs +15 -41
- package/dist/web/index.js +15 -41
- package/package.json +1 -1
package/dist/web/index.cjs
CHANGED
|
@@ -1146,55 +1146,29 @@ function NetworkBadge({
|
|
|
1146
1146
|
const content = children ?? (shouldShowLabel ? label : null);
|
|
1147
1147
|
const chipSize = size === "sm" ? "size-6" : "size-8";
|
|
1148
1148
|
const imageSize = size === "sm" ? "size-3.5" : "size-icon-lg";
|
|
1149
|
-
const renderGlyph = (className2) =>
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
"aria-hidden": true,
|
|
1157
|
-
children: "link"
|
|
1158
|
-
}
|
|
1159
|
-
);
|
|
1149
|
+
const renderGlyph = (className2) => network === "L1" ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1150
|
+
"span",
|
|
1151
|
+
{
|
|
1152
|
+
className: cn("material-symbols-outlined leading-none", color, className2),
|
|
1153
|
+
style: { fontSize: size === "sm" ? 12 : 16 },
|
|
1154
|
+
"aria-hidden": true,
|
|
1155
|
+
children: "link"
|
|
1160
1156
|
}
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
alt: "RGB",
|
|
1168
|
-
className: cn(className2, "object-contain", defaultIconClassName, iconClassName)
|
|
1169
|
-
}
|
|
1170
|
-
),
|
|
1171
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1172
|
-
"img",
|
|
1173
|
-
{
|
|
1174
|
-
src: `${iconBasePath}/lightning/lightning.svg`,
|
|
1175
|
-
alt: "Lightning",
|
|
1176
|
-
className: cn(className2, "object-contain", iconClassName)
|
|
1177
|
-
}
|
|
1178
|
-
)
|
|
1179
|
-
] });
|
|
1157
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1158
|
+
"img",
|
|
1159
|
+
{
|
|
1160
|
+
src: icon,
|
|
1161
|
+
alt: network,
|
|
1162
|
+
className: cn(className2, "object-contain", defaultIconClassName, iconClassName)
|
|
1180
1163
|
}
|
|
1181
|
-
|
|
1182
|
-
"img",
|
|
1183
|
-
{
|
|
1184
|
-
src: icon,
|
|
1185
|
-
alt: network,
|
|
1186
|
-
className: cn(className2, "object-contain", defaultIconClassName, iconClassName)
|
|
1187
|
-
}
|
|
1188
|
-
);
|
|
1189
|
-
};
|
|
1164
|
+
);
|
|
1190
1165
|
if (!content) {
|
|
1191
|
-
const isDualGlyph = network === "RGB-LN";
|
|
1192
1166
|
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1193
1167
|
"span",
|
|
1194
1168
|
{
|
|
1195
1169
|
className: cn(
|
|
1196
1170
|
"flex items-center justify-center rounded-full shadow-inner",
|
|
1197
|
-
|
|
1171
|
+
chipSize,
|
|
1198
1172
|
iconBg,
|
|
1199
1173
|
className
|
|
1200
1174
|
),
|
package/dist/web/index.js
CHANGED
|
@@ -985,55 +985,29 @@ function NetworkBadge({
|
|
|
985
985
|
const content = children ?? (shouldShowLabel ? label : null);
|
|
986
986
|
const chipSize = size === "sm" ? "size-6" : "size-8";
|
|
987
987
|
const imageSize = size === "sm" ? "size-3.5" : "size-icon-lg";
|
|
988
|
-
const renderGlyph = (className2) =>
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
"aria-hidden": true,
|
|
996
|
-
children: "link"
|
|
997
|
-
}
|
|
998
|
-
);
|
|
988
|
+
const renderGlyph = (className2) => network === "L1" ? /* @__PURE__ */ jsx15(
|
|
989
|
+
"span",
|
|
990
|
+
{
|
|
991
|
+
className: cn("material-symbols-outlined leading-none", color, className2),
|
|
992
|
+
style: { fontSize: size === "sm" ? 12 : 16 },
|
|
993
|
+
"aria-hidden": true,
|
|
994
|
+
children: "link"
|
|
999
995
|
}
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
alt: "RGB",
|
|
1007
|
-
className: cn(className2, "object-contain", defaultIconClassName, iconClassName)
|
|
1008
|
-
}
|
|
1009
|
-
),
|
|
1010
|
-
/* @__PURE__ */ jsx15(
|
|
1011
|
-
"img",
|
|
1012
|
-
{
|
|
1013
|
-
src: `${iconBasePath}/lightning/lightning.svg`,
|
|
1014
|
-
alt: "Lightning",
|
|
1015
|
-
className: cn(className2, "object-contain", iconClassName)
|
|
1016
|
-
}
|
|
1017
|
-
)
|
|
1018
|
-
] });
|
|
996
|
+
) : /* @__PURE__ */ jsx15(
|
|
997
|
+
"img",
|
|
998
|
+
{
|
|
999
|
+
src: icon,
|
|
1000
|
+
alt: network,
|
|
1001
|
+
className: cn(className2, "object-contain", defaultIconClassName, iconClassName)
|
|
1019
1002
|
}
|
|
1020
|
-
|
|
1021
|
-
"img",
|
|
1022
|
-
{
|
|
1023
|
-
src: icon,
|
|
1024
|
-
alt: network,
|
|
1025
|
-
className: cn(className2, "object-contain", defaultIconClassName, iconClassName)
|
|
1026
|
-
}
|
|
1027
|
-
);
|
|
1028
|
-
};
|
|
1003
|
+
);
|
|
1029
1004
|
if (!content) {
|
|
1030
|
-
const isDualGlyph = network === "RGB-LN";
|
|
1031
1005
|
return /* @__PURE__ */ jsx15(
|
|
1032
1006
|
"span",
|
|
1033
1007
|
{
|
|
1034
1008
|
className: cn(
|
|
1035
1009
|
"flex items-center justify-center rounded-full shadow-inner",
|
|
1036
|
-
|
|
1010
|
+
chipSize,
|
|
1037
1011
|
iconBg,
|
|
1038
1012
|
className
|
|
1039
1013
|
),
|
package/package.json
CHANGED