@cytario/design 1.17.0 → 2.0.0
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.d.ts +3 -3
- package/dist/index.js +30 -42
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/global.css +17 -7
- package/src/tokens/variables.css +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -958,9 +958,9 @@ declare const ColorNeutral950 = "#030712";
|
|
|
958
958
|
declare const ColorNeutral1000 = "#000000";
|
|
959
959
|
declare const ColorBrandPrimary = "#5c2483";
|
|
960
960
|
declare const ColorBrandAccent = "#35b7b8";
|
|
961
|
-
declare const ColorActionPrimary = "#
|
|
962
|
-
declare const ColorActionPrimaryHover = "#
|
|
963
|
-
declare const ColorActionPrimaryActive = "#
|
|
961
|
+
declare const ColorActionPrimary = "#5c2483";
|
|
962
|
+
declare const ColorActionPrimaryHover = "#6b2695";
|
|
963
|
+
declare const ColorActionPrimaryActive = "#4a1d6a";
|
|
964
964
|
declare const ColorActionSecondary = "#5c2483";
|
|
965
965
|
declare const ColorActionSecondaryHover = "#6b2695";
|
|
966
966
|
declare const ColorActionDanger = "#e11d48";
|
package/dist/index.js
CHANGED
|
@@ -2473,46 +2473,11 @@ function FileCard({
|
|
|
2473
2473
|
[onPress]
|
|
2474
2474
|
);
|
|
2475
2475
|
const cardContent = /* @__PURE__ */ jsxs23(Fragment9, { children: [
|
|
2476
|
-
/* @__PURE__ */
|
|
2476
|
+
/* @__PURE__ */ jsx36(
|
|
2477
2477
|
"div",
|
|
2478
2478
|
{
|
|
2479
|
-
className: `shrink-0
|
|
2480
|
-
children:
|
|
2481
|
-
children ? /* @__PURE__ */ jsx36("div", { className: "h-full w-full overflow-hidden", children }) : /* @__PURE__ */ jsx36("div", { className: "flex h-full w-full items-center justify-center", children: /* @__PURE__ */ jsx36(IconComponent, { size: iconSize, className: iconColor }) }),
|
|
2482
|
-
onInfo && /* @__PURE__ */ jsx36(
|
|
2483
|
-
"div",
|
|
2484
|
-
{
|
|
2485
|
-
className: [
|
|
2486
|
-
"absolute opacity-0 group-hover:opacity-100 group-focus-within:opacity-100",
|
|
2487
|
-
"transition-opacity duration-150",
|
|
2488
|
-
compact ? "bottom-1.5 right-1.5" : "bottom-2 right-2"
|
|
2489
|
-
].join(" "),
|
|
2490
|
-
children: /* @__PURE__ */ jsx36(
|
|
2491
|
-
"span",
|
|
2492
|
-
{
|
|
2493
|
-
onClick: handleInfoClick,
|
|
2494
|
-
onKeyDown: (e) => {
|
|
2495
|
-
if (e.key === "Enter" || e.key === " ") {
|
|
2496
|
-
handleInfoClick(e);
|
|
2497
|
-
}
|
|
2498
|
-
},
|
|
2499
|
-
role: "presentation",
|
|
2500
|
-
children: /* @__PURE__ */ jsx36(
|
|
2501
|
-
IconButton,
|
|
2502
|
-
{
|
|
2503
|
-
icon: Info2,
|
|
2504
|
-
"aria-label": `Show info for ${name}`,
|
|
2505
|
-
variant: "ghost",
|
|
2506
|
-
size: "sm",
|
|
2507
|
-
className: "bg-[var(--color-neutral-900)]/75 text-[var(--color-text-inverse)] hover:bg-[var(--color-neutral-900)]/90 rounded-[var(--border-radius-sm)]",
|
|
2508
|
-
onPress: onInfo
|
|
2509
|
-
}
|
|
2510
|
-
)
|
|
2511
|
-
}
|
|
2512
|
-
)
|
|
2513
|
-
}
|
|
2514
|
-
)
|
|
2515
|
-
]
|
|
2479
|
+
className: `shrink-0 overflow-hidden bg-[var(--color-neutral-900)] ${thumbnailClass}`,
|
|
2480
|
+
children: children ? /* @__PURE__ */ jsx36("div", { className: "h-full w-full overflow-hidden", children }) : /* @__PURE__ */ jsx36("div", { className: "flex h-full w-full items-center justify-center", children: /* @__PURE__ */ jsx36(IconComponent, { size: iconSize, className: iconColor }) })
|
|
2516
2481
|
}
|
|
2517
2482
|
),
|
|
2518
2483
|
/* @__PURE__ */ jsx36(
|
|
@@ -2526,7 +2491,30 @@ function FileCard({
|
|
|
2526
2491
|
children: compact ? /* @__PURE__ */ jsx36("span", { className: "text-xs font-medium text-[var(--color-text-primary)] truncate", children: name }) : /* @__PURE__ */ jsxs23(Fragment9, { children: [
|
|
2527
2492
|
/* @__PURE__ */ jsxs23("span", { className: "flex items-center gap-1.5", children: [
|
|
2528
2493
|
/* @__PURE__ */ jsx36(FileIcon, { type, extension, size: 16 }),
|
|
2529
|
-
/* @__PURE__ */ jsx36("span", { className: "text-sm font-medium text-[var(--color-text-primary)] truncate", children: name })
|
|
2494
|
+
/* @__PURE__ */ jsx36("span", { className: "min-w-0 flex-1 text-sm font-medium text-[var(--color-text-primary)] truncate", children: name }),
|
|
2495
|
+
onInfo && /* @__PURE__ */ jsx36(
|
|
2496
|
+
"span",
|
|
2497
|
+
{
|
|
2498
|
+
onClick: handleInfoClick,
|
|
2499
|
+
onKeyDown: (e) => {
|
|
2500
|
+
if (e.key === "Enter" || e.key === " ") {
|
|
2501
|
+
handleInfoClick(e);
|
|
2502
|
+
}
|
|
2503
|
+
},
|
|
2504
|
+
role: "presentation",
|
|
2505
|
+
children: /* @__PURE__ */ jsx36(
|
|
2506
|
+
IconButton,
|
|
2507
|
+
{
|
|
2508
|
+
icon: Info2,
|
|
2509
|
+
"aria-label": `Show info for ${name}`,
|
|
2510
|
+
variant: "ghost",
|
|
2511
|
+
size: "sm",
|
|
2512
|
+
className: "shrink-0 -mt-0.5 -mr-1",
|
|
2513
|
+
onPress: onInfo
|
|
2514
|
+
}
|
|
2515
|
+
)
|
|
2516
|
+
}
|
|
2517
|
+
)
|
|
2530
2518
|
] }),
|
|
2531
2519
|
size && /* @__PURE__ */ jsx36("span", { className: "text-xs text-[var(--color-text-secondary)] tabular-nums pl-[22px]", children: size })
|
|
2532
2520
|
] })
|
|
@@ -3546,9 +3534,9 @@ var ColorNeutral950 = "#030712";
|
|
|
3546
3534
|
var ColorNeutral1000 = "#000000";
|
|
3547
3535
|
var ColorBrandPrimary = "#5c2483";
|
|
3548
3536
|
var ColorBrandAccent = "#35b7b8";
|
|
3549
|
-
var ColorActionPrimary = "#
|
|
3550
|
-
var ColorActionPrimaryHover = "#
|
|
3551
|
-
var ColorActionPrimaryActive = "#
|
|
3537
|
+
var ColorActionPrimary = "#5c2483";
|
|
3538
|
+
var ColorActionPrimaryHover = "#6b2695";
|
|
3539
|
+
var ColorActionPrimaryActive = "#4a1d6a";
|
|
3552
3540
|
var ColorActionSecondary = "#5c2483";
|
|
3553
3541
|
var ColorActionSecondaryHover = "#6b2695";
|
|
3554
3542
|
var ColorActionDanger = "#e11d48";
|