@flamingo-stack/openframe-frontend-core 0.0.370 → 0.0.371
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/components/index.cjs +21 -0
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +22 -1
- package/dist/components/index.js.map +1 -1
- package/dist/components/vendor-tag.d.ts +1 -1
- package/dist/components/vendor-tag.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/vendor-tag.tsx +39 -2
package/dist/components/index.js
CHANGED
|
@@ -3389,7 +3389,7 @@ var OpenFrameLogo2 = ({ className, lowerPathColor, upperPathColor, ...props }) =
|
|
|
3389
3389
|
|
|
3390
3390
|
// src/components/vendor-tag.tsx
|
|
3391
3391
|
init_cn();
|
|
3392
|
-
import { Hand, Sparkles } from "lucide-react";
|
|
3392
|
+
import { Boxes, Database, Hand, Plug, ShieldCheck, Sparkles } from "lucide-react";
|
|
3393
3393
|
import { jsx as jsx25, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
3394
3394
|
function VendorTag({
|
|
3395
3395
|
type,
|
|
@@ -3440,6 +3440,27 @@ function VendorTag({
|
|
|
3440
3440
|
text: text || "Commercial Vendor",
|
|
3441
3441
|
icon: /* @__PURE__ */ jsx25("div", { className: "w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx25(CoinsIcon2, { width: 10, height: 10, className: "text-ods-text-secondary" }) })
|
|
3442
3442
|
};
|
|
3443
|
+
// platform-capability tags — same neutral icon-box chrome as 'commercial'
|
|
3444
|
+
case "api":
|
|
3445
|
+
return {
|
|
3446
|
+
text: text || "API",
|
|
3447
|
+
icon: /* @__PURE__ */ jsx25("div", { className: "w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx25(Plug, { width: 10, height: 10, className: "text-ods-text-secondary" }) })
|
|
3448
|
+
};
|
|
3449
|
+
case "data":
|
|
3450
|
+
return {
|
|
3451
|
+
text: text || "Data",
|
|
3452
|
+
icon: /* @__PURE__ */ jsx25("div", { className: "w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx25(Database, { width: 10, height: 10, className: "text-ods-text-secondary" }) })
|
|
3453
|
+
};
|
|
3454
|
+
case "k8s":
|
|
3455
|
+
return {
|
|
3456
|
+
text: text || "K8s",
|
|
3457
|
+
icon: /* @__PURE__ */ jsx25("div", { className: "w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx25(Boxes, { width: 10, height: 10, className: "text-ods-text-secondary" }) })
|
|
3458
|
+
};
|
|
3459
|
+
case "secured":
|
|
3460
|
+
return {
|
|
3461
|
+
text: text || "Secured",
|
|
3462
|
+
icon: /* @__PURE__ */ jsx25("div", { className: "w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0", children: /* @__PURE__ */ jsx25(ShieldCheck, { width: 10, height: 10, className: "text-ods-text-secondary" }) })
|
|
3463
|
+
};
|
|
3443
3464
|
case "free":
|
|
3444
3465
|
return {
|
|
3445
3466
|
text: text || "Free",
|