@fileverse/ui 4.1.1-patch-9 → 4.1.2
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 +13 -0
- package/dist/index.es.d.ts +14 -0
- package/dist/index.es.js +6349 -6282
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1233,6 +1233,9 @@ video {
|
|
|
1233
1233
|
.aspect-video {
|
|
1234
1234
|
aspect-ratio: 16 / 9;
|
|
1235
1235
|
}
|
|
1236
|
+
.\!h-8 {
|
|
1237
|
+
height: 2rem !important;
|
|
1238
|
+
}
|
|
1236
1239
|
.\!h-\[4rem\] {
|
|
1237
1240
|
height: 4rem !important;
|
|
1238
1241
|
}
|
|
@@ -1321,6 +1324,9 @@ video {
|
|
|
1321
1324
|
.h-screen {
|
|
1322
1325
|
height: 100vh;
|
|
1323
1326
|
}
|
|
1327
|
+
.max-h-40 {
|
|
1328
|
+
max-height: 10rem;
|
|
1329
|
+
}
|
|
1324
1330
|
.max-h-96 {
|
|
1325
1331
|
max-height: 24rem;
|
|
1326
1332
|
}
|
|
@@ -1381,6 +1387,9 @@ video {
|
|
|
1381
1387
|
.w-5 {
|
|
1382
1388
|
width: 1.25rem;
|
|
1383
1389
|
}
|
|
1390
|
+
.w-52 {
|
|
1391
|
+
width: 13rem;
|
|
1392
|
+
}
|
|
1384
1393
|
.w-6 {
|
|
1385
1394
|
width: 1.5rem;
|
|
1386
1395
|
}
|
|
@@ -2141,6 +2150,10 @@ video {
|
|
|
2141
2150
|
.tracking-widest {
|
|
2142
2151
|
letter-spacing: 0.1em;
|
|
2143
2152
|
}
|
|
2153
|
+
.text-\[\#77818A\] {
|
|
2154
|
+
--tw-text-opacity: 1;
|
|
2155
|
+
color: rgb(119 129 138 / var(--tw-text-opacity));
|
|
2156
|
+
}
|
|
2144
2157
|
.text-red-500 {
|
|
2145
2158
|
--tw-text-opacity: 1;
|
|
2146
2159
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
package/dist/index.es.d.ts
CHANGED
|
@@ -728,12 +728,26 @@ export declare const TabsTrigger: React_2.ForwardRefExoticComponent<Omit<TabsPri
|
|
|
728
728
|
|
|
729
729
|
export declare const Tag: React_2.ForwardRefExoticComponent<TagProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
730
730
|
|
|
731
|
+
export declare const TagInput: ({ tags, selectedTags, onAddTag, isPreviewMode, }: TagInputProps) => JSX_2.Element | null;
|
|
732
|
+
|
|
733
|
+
export declare interface TagInputProps {
|
|
734
|
+
tags: TagType[];
|
|
735
|
+
selectedTags: TagType[];
|
|
736
|
+
onAddTag: (tag: TagType) => void;
|
|
737
|
+
isPreviewMode: boolean;
|
|
738
|
+
}
|
|
739
|
+
|
|
731
740
|
export declare interface TagProps extends React_2.HTMLAttributes<HTMLDivElement>, VariantProps<typeof tagVariants> {
|
|
732
741
|
isRemovable?: boolean;
|
|
733
742
|
onRemove?: (event?: React_2.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
734
743
|
icon?: any;
|
|
735
744
|
}
|
|
736
745
|
|
|
746
|
+
export declare interface TagType {
|
|
747
|
+
name: string;
|
|
748
|
+
color: string;
|
|
749
|
+
}
|
|
750
|
+
|
|
737
751
|
declare const tagVariants: (props?: ({
|
|
738
752
|
variant?: "danger" | "transparent" | "gray" | "brand" | "success" | null | undefined;
|
|
739
753
|
} & ClassProp) | undefined) => string;
|