myoperator-mcp 0.2.9 → 0.2.10
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/index.js +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -355,6 +355,7 @@ const badgeVariants = cva(
|
|
|
355
355
|
failed: "bg-[#FFECEC] text-[#FF3B3B]",
|
|
356
356
|
disabled: "bg-[#F3F5F6] text-[#6B7280]",
|
|
357
357
|
default: "bg-[#F3F5F6] text-[#333333]",
|
|
358
|
+
primary: "bg-[#F3F5F6] text-[#333333]",
|
|
358
359
|
// shadcn-style variants (new)
|
|
359
360
|
secondary: "bg-[#F3F4F6] text-[#333333]",
|
|
360
361
|
outline: "border border-[#E5E7EB] bg-transparent text-[#333333]",
|
|
@@ -381,6 +382,8 @@ const badgeVariants = cva(
|
|
|
381
382
|
* <Badge variant="active">Active</Badge>
|
|
382
383
|
* <Badge variant="failed">Failed</Badge>
|
|
383
384
|
* <Badge variant="disabled">Disabled</Badge>
|
|
385
|
+
* <Badge variant="default">Default</Badge>
|
|
386
|
+
* <Badge variant="primary">Primary</Badge>
|
|
384
387
|
* <Badge variant="outline">Outline</Badge>
|
|
385
388
|
* <Badge variant="secondary">Secondary</Badge>
|
|
386
389
|
* <Badge variant="destructive">Destructive</Badge>
|
|
@@ -447,6 +450,7 @@ const buttonVariants = cva(
|
|
|
447
450
|
variants: {
|
|
448
451
|
variant: {
|
|
449
452
|
default: "bg-[#343E55] text-white hover:bg-[#343E55]/90",
|
|
453
|
+
primary: "bg-[#343E55] text-white hover:bg-[#343E55]/90",
|
|
450
454
|
destructive:
|
|
451
455
|
"bg-destructive text-destructive-foreground hover:bg-destructive/90",
|
|
452
456
|
outline:
|
|
@@ -2311,11 +2315,13 @@ const tagVariants = cva(
|
|
|
2311
2315
|
variants: {
|
|
2312
2316
|
variant: {
|
|
2313
2317
|
default: "bg-[#F3F4F6] text-[#333333]",
|
|
2314
|
-
primary: "bg-[#
|
|
2318
|
+
primary: "bg-[#F3F4F6] text-[#333333]",
|
|
2319
|
+
accent: "bg-[#343E55]/10 text-[#343E55]",
|
|
2315
2320
|
secondary: "bg-[#E5E7EB] text-[#374151]",
|
|
2316
2321
|
success: "bg-[#E5FFF5] text-[#00A651]",
|
|
2317
2322
|
warning: "bg-[#FFF8E5] text-[#F59E0B]",
|
|
2318
2323
|
error: "bg-[#FFECEC] text-[#FF3B3B]",
|
|
2324
|
+
destructive: "bg-[#FFECEC] text-[#FF3B3B]",
|
|
2319
2325
|
},
|
|
2320
2326
|
size: {
|
|
2321
2327
|
default: "px-2 py-1",
|
package/package.json
CHANGED