@fileverse/ui 4.0.9-patch-2 → 4.1.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.css +28 -0
- package/dist/index.es.d.ts +2 -1
- package/dist/index.es.js +9 -6
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1328,6 +1328,9 @@ video {
|
|
|
1328
1328
|
.min-h-screen {
|
|
1329
1329
|
min-height: 100vh;
|
|
1330
1330
|
}
|
|
1331
|
+
.\!w-\[40px\] {
|
|
1332
|
+
width: 40px !important;
|
|
1333
|
+
}
|
|
1331
1334
|
.\!w-\[95\%\] {
|
|
1332
1335
|
width: 95% !important;
|
|
1333
1336
|
}
|
|
@@ -1412,9 +1415,15 @@ video {
|
|
|
1412
1415
|
.w-\[80\%\] {
|
|
1413
1416
|
width: 80%;
|
|
1414
1417
|
}
|
|
1418
|
+
.w-\[80px\] {
|
|
1419
|
+
width: 80px;
|
|
1420
|
+
}
|
|
1415
1421
|
.w-\[80vw\] {
|
|
1416
1422
|
width: 80vw;
|
|
1417
1423
|
}
|
|
1424
|
+
.w-\[84px\] {
|
|
1425
|
+
width: 84px;
|
|
1426
|
+
}
|
|
1418
1427
|
.w-\[85\%\] {
|
|
1419
1428
|
width: 85%;
|
|
1420
1429
|
}
|
|
@@ -1755,6 +1764,9 @@ video {
|
|
|
1755
1764
|
.rounded-\[4px\] {
|
|
1756
1765
|
border-radius: 4px;
|
|
1757
1766
|
}
|
|
1767
|
+
.rounded-\[8px\] {
|
|
1768
|
+
border-radius: 8px;
|
|
1769
|
+
}
|
|
1758
1770
|
.rounded-full {
|
|
1759
1771
|
border-radius: 9999px;
|
|
1760
1772
|
}
|
|
@@ -1777,10 +1789,18 @@ video {
|
|
|
1777
1789
|
border-bottom-right-radius: var(--radius);
|
|
1778
1790
|
border-bottom-left-radius: var(--radius);
|
|
1779
1791
|
}
|
|
1792
|
+
.rounded-l-\[8px\] {
|
|
1793
|
+
border-top-left-radius: 8px;
|
|
1794
|
+
border-bottom-left-radius: 8px;
|
|
1795
|
+
}
|
|
1780
1796
|
.rounded-l-lg {
|
|
1781
1797
|
border-top-left-radius: var(--radius);
|
|
1782
1798
|
border-bottom-left-radius: var(--radius);
|
|
1783
1799
|
}
|
|
1800
|
+
.rounded-r-\[8px\] {
|
|
1801
|
+
border-top-right-radius: 8px;
|
|
1802
|
+
border-bottom-right-radius: 8px;
|
|
1803
|
+
}
|
|
1784
1804
|
.rounded-r-lg {
|
|
1785
1805
|
border-top-right-radius: var(--radius);
|
|
1786
1806
|
border-bottom-right-radius: var(--radius);
|
|
@@ -2299,6 +2319,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2299
2319
|
color: hsl(var(--color-text-inverse));
|
|
2300
2320
|
}
|
|
2301
2321
|
|
|
2322
|
+
.hover\:\!color-bg-default:hover {
|
|
2323
|
+
background-color: hsl(var(--color-bg-default)) !important;
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2302
2326
|
.hover\:\!color-bg-default-hover:hover {
|
|
2303
2327
|
background-color: hsl(var(--color-bg-default-hover)) !important;
|
|
2304
2328
|
}
|
|
@@ -2515,6 +2539,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2515
2539
|
cursor: pointer;
|
|
2516
2540
|
}
|
|
2517
2541
|
|
|
2542
|
+
.hover\:\!border-transparent:hover {
|
|
2543
|
+
border-color: transparent !important;
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2518
2546
|
.hover\:bg-inherit:hover {
|
|
2519
2547
|
background-color: inherit;
|
|
2520
2548
|
}
|
package/dist/index.es.d.ts
CHANGED
|
@@ -357,6 +357,7 @@ export declare interface IconButtonProps extends React.ButtonHTMLAttributes<HTML
|
|
|
357
357
|
elevation?: number;
|
|
358
358
|
rounded?: boolean;
|
|
359
359
|
isActive?: boolean;
|
|
360
|
+
fill?: string;
|
|
360
361
|
}
|
|
361
362
|
|
|
362
363
|
export declare interface IconProps extends SvgProps_2, VariantProps<typeof iconVariants_2> {
|
|
@@ -696,7 +697,7 @@ export declare interface TagProps extends React_2.HTMLAttributes<HTMLDivElement>
|
|
|
696
697
|
}
|
|
697
698
|
|
|
698
699
|
declare const tagVariants: (props?: ({
|
|
699
|
-
variant?: "transparent" | "gray" | "brand" | null | undefined;
|
|
700
|
+
variant?: "transparent" | "danger" | "gray" | "brand" | "success" | null | undefined;
|
|
700
701
|
} & ClassProp) | undefined) => string;
|
|
701
702
|
|
|
702
703
|
export declare const TextAreaField: React_2.ForwardRefExoticComponent<TextAreaFieldProps & React_2.RefAttributes<HTMLTextAreaElement>>;
|
package/dist/index.es.js
CHANGED
|
@@ -25220,11 +25220,12 @@ const kte = ({ children: e, className: t }) => {
|
|
|
25220
25220
|
elevation: r,
|
|
25221
25221
|
rounded: o = !1,
|
|
25222
25222
|
isActive: s,
|
|
25223
|
-
|
|
25224
|
-
|
|
25223
|
+
fill: f,
|
|
25224
|
+
...c
|
|
25225
|
+
}, l) => /* @__PURE__ */ u.jsx(
|
|
25225
25226
|
Qt,
|
|
25226
25227
|
{
|
|
25227
|
-
ref:
|
|
25228
|
+
ref: l,
|
|
25228
25229
|
variant: t,
|
|
25229
25230
|
className: P(
|
|
25230
25231
|
"px-0",
|
|
@@ -25249,7 +25250,7 @@ const kte = ({ children: e, className: t }) => {
|
|
|
25249
25250
|
n
|
|
25250
25251
|
),
|
|
25251
25252
|
size: a,
|
|
25252
|
-
...
|
|
25253
|
+
...c,
|
|
25253
25254
|
children: /* @__PURE__ */ u.jsx(
|
|
25254
25255
|
Ge,
|
|
25255
25256
|
{
|
|
@@ -25257,7 +25258,7 @@ const kte = ({ children: e, className: t }) => {
|
|
|
25257
25258
|
"data-role": "icon",
|
|
25258
25259
|
name: e,
|
|
25259
25260
|
size: a === "sm" ? "sm" : "md",
|
|
25260
|
-
fill: "transparent",
|
|
25261
|
+
fill: f || "transparent",
|
|
25261
25262
|
stroke: t === "default" || t === "danger" ? "white" : "currentColor"
|
|
25262
25263
|
}
|
|
25263
25264
|
)
|
|
@@ -32570,7 +32571,9 @@ const OU = Et(
|
|
|
32570
32571
|
variant: {
|
|
32571
32572
|
gray: "border-transparent color-bg-tertiary hover:brightness-95",
|
|
32572
32573
|
brand: "border-transparent color-bg-brand hover:color-bg-brand-hover",
|
|
32573
|
-
transparent: "border-transparent bg-transparent hover:color-bg-secondary-hover color-text-secondary"
|
|
32574
|
+
transparent: "border-transparent bg-transparent hover:color-bg-secondary-hover color-text-secondary",
|
|
32575
|
+
success: "border-transparent color-bg-success-light hover:brightness-95 color-text-success font-medium",
|
|
32576
|
+
danger: "border-transparent color-bg-danger-light hover:brightness-95 color-text-danger font-medium"
|
|
32574
32577
|
}
|
|
32575
32578
|
},
|
|
32576
32579
|
defaultVariants: {
|