@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.
@@ -1,5 +1,5 @@
1
1
  export interface VendorTagProps {
2
- type: 'open-source' | 'commercial' | 'free' | 'freemium' | 'paid' | 'enterprise' | 'recommended' | 'classification' | 'ai' | 'manual' | 'openframe_selected' | 'placeholder';
2
+ type: 'open-source' | 'commercial' | 'free' | 'freemium' | 'paid' | 'enterprise' | 'recommended' | 'classification' | 'ai' | 'manual' | 'openframe_selected' | 'placeholder' | 'api' | 'data' | 'k8s' | 'secured';
3
3
  text?: string;
4
4
  className?: string;
5
5
  size?: 'sm' | 'md';
@@ -1 +1 @@
1
- {"version":3,"file":"vendor-tag.d.ts","sourceRoot":"","sources":["../../src/components/vendor-tag.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,aAAa,GAAG,YAAY,GAAG,MAAM,GAAG,UAAU,GAAG,MAAM,GAAG,YAAY,GAAG,aAAa,GAAG,gBAAgB,GAAG,IAAI,GAAG,QAAQ,GAAG,oBAAoB,GAAG,aAAa,CAAA;IAC5K,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,wBAAgB,SAAS,CAAC,EACxB,IAAI,EACJ,IAAI,EACJ,SAAc,EACd,MAAc,EACd,IAAW,EACX,WAAW,EACZ,EAAE,cAAc,+BA4KhB"}
1
+ {"version":3,"file":"vendor-tag.d.ts","sourceRoot":"","sources":["../../src/components/vendor-tag.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,aAAa,GAAG,YAAY,GAAG,MAAM,GAAG,UAAU,GAAG,MAAM,GAAG,YAAY,GAAG,aAAa,GAAG,gBAAgB,GAAG,IAAI,GAAG,QAAQ,GAAG,oBAAoB,GAAG,aAAa,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,SAAS,CAAA;IACjN,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,wBAAgB,SAAS,CAAC,EACxB,IAAI,EACJ,IAAI,EACJ,SAAc,EACd,MAAc,EACd,IAAW,EACX,WAAW,EACZ,EAAE,cAAc,+BAiNhB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flamingo-stack/openframe-frontend-core",
3
- "version": "0.0.370",
3
+ "version": "0.0.371",
4
4
  "description": "Shared design system and components for all Flamingo platforms",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -3,10 +3,10 @@
3
3
  import { OpenSourceIcon, CoinsIcon } from "./icons-stub"
4
4
  import { OpenFrameLogo } from "./openframe-logo"
5
5
  import { cn } from "../utils/cn"
6
- import { Hand, Sparkles } from "lucide-react"
6
+ import { Boxes, Database, Hand, Plug, ShieldCheck, Sparkles } from "lucide-react"
7
7
 
8
8
  export interface VendorTagProps {
9
- type: 'open-source' | 'commercial' | 'free' | 'freemium' | 'paid' | 'enterprise' | 'recommended' | 'classification' | 'ai' | 'manual' | 'openframe_selected' | 'placeholder'
9
+ type: 'open-source' | 'commercial' | 'free' | 'freemium' | 'paid' | 'enterprise' | 'recommended' | 'classification' | 'ai' | 'manual' | 'openframe_selected' | 'placeholder' | 'api' | 'data' | 'k8s' | 'secured'
10
10
  text?: string
11
11
  className?: string
12
12
  size?: 'sm' | 'md'
@@ -83,6 +83,43 @@ export function VendorTag({
83
83
  </div>
84
84
  )
85
85
  }
86
+ // platform-capability tags — same neutral icon-box chrome as 'commercial'
87
+ case 'api':
88
+ return {
89
+ text: text || "API",
90
+ icon: (
91
+ <div className="w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0">
92
+ <Plug width={10} height={10} className="text-ods-text-secondary" />
93
+ </div>
94
+ )
95
+ }
96
+ case 'data':
97
+ return {
98
+ text: text || "Data",
99
+ icon: (
100
+ <div className="w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0">
101
+ <Database width={10} height={10} className="text-ods-text-secondary" />
102
+ </div>
103
+ )
104
+ }
105
+ case 'k8s':
106
+ return {
107
+ text: text || "K8s",
108
+ icon: (
109
+ <div className="w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0">
110
+ <Boxes width={10} height={10} className="text-ods-text-secondary" />
111
+ </div>
112
+ )
113
+ }
114
+ case 'secured':
115
+ return {
116
+ text: text || "Secured",
117
+ icon: (
118
+ <div className="w-4 h-4 bg-ods-border rounded-sm flex items-center justify-center flex-shrink-0">
119
+ <ShieldCheck width={10} height={10} className="text-ods-text-secondary" />
120
+ </div>
121
+ )
122
+ }
86
123
  case 'free':
87
124
  return {
88
125
  text: text || "Free",