@fileverse/ui 4.1.1-patch-9 → 4.1.2-patch-1

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 CHANGED
@@ -1164,6 +1164,9 @@ video {
1164
1164
  .mb-2 {
1165
1165
  margin-bottom: 0.5rem;
1166
1166
  }
1167
+ .mb-4 {
1168
+ margin-bottom: 1rem;
1169
+ }
1167
1170
  .ml-1 {
1168
1171
  margin-left: 0.25rem;
1169
1172
  }
@@ -1233,6 +1236,9 @@ video {
1233
1236
  .aspect-video {
1234
1237
  aspect-ratio: 16 / 9;
1235
1238
  }
1239
+ .\!h-8 {
1240
+ height: 2rem !important;
1241
+ }
1236
1242
  .\!h-\[4rem\] {
1237
1243
  height: 4rem !important;
1238
1244
  }
@@ -1321,6 +1327,9 @@ video {
1321
1327
  .h-screen {
1322
1328
  height: 100vh;
1323
1329
  }
1330
+ .max-h-40 {
1331
+ max-height: 10rem;
1332
+ }
1324
1333
  .max-h-96 {
1325
1334
  max-height: 24rem;
1326
1335
  }
@@ -1381,6 +1390,9 @@ video {
1381
1390
  .w-5 {
1382
1391
  width: 1.25rem;
1383
1392
  }
1393
+ .w-52 {
1394
+ width: 13rem;
1395
+ }
1384
1396
  .w-6 {
1385
1397
  width: 1.5rem;
1386
1398
  }
@@ -1542,6 +1554,9 @@ video {
1542
1554
  .max-w-\[440px\] {
1543
1555
  max-width: 440px;
1544
1556
  }
1557
+ .max-w-\[500px\] {
1558
+ max-width: 500px;
1559
+ }
1545
1560
  .max-w-\[70vw\] {
1546
1561
  max-width: 70vw;
1547
1562
  }
@@ -2141,6 +2156,10 @@ video {
2141
2156
  .tracking-widest {
2142
2157
  letter-spacing: 0.1em;
2143
2158
  }
2159
+ .text-\[\#77818A\] {
2160
+ --tw-text-opacity: 1;
2161
+ color: rgb(119 129 138 / var(--tw-text-opacity));
2162
+ }
2144
2163
  .text-red-500 {
2145
2164
  --tw-text-opacity: 1;
2146
2165
  color: rgb(239 68 68 / var(--tw-text-opacity));
@@ -3142,6 +3161,10 @@ textarea:is(:-webkit-autofill, :autofill) {
3142
3161
 
3143
3162
  @media (min-width: 1024px) {
3144
3163
 
3164
+ .lg\:\!mt-0 {
3165
+ margin-top: 0px !important;
3166
+ }
3167
+
3145
3168
  .lg\:mb-1 {
3146
3169
  margin-bottom: 0.25rem;
3147
3170
  }
@@ -559,6 +559,7 @@ export declare const PopoverContent: React_2.ForwardRefExoticComponent<PopoverCo
559
559
 
560
560
  export declare interface PopoverContentProps extends React_2.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content> {
561
561
  elevation?: number;
562
+ container?: HTMLDivElement | null;
562
563
  }
563
564
 
564
565
  export declare const PopoverTrigger: React_2.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
@@ -728,12 +729,26 @@ export declare const TabsTrigger: React_2.ForwardRefExoticComponent<Omit<TabsPri
728
729
 
729
730
  export declare const Tag: React_2.ForwardRefExoticComponent<TagProps & React_2.RefAttributes<HTMLDivElement>>;
730
731
 
732
+ export declare const TagInput: ({ tags, selectedTags, onAddTag, isPreviewMode, }: TagInputProps) => JSX_2.Element | null;
733
+
734
+ export declare interface TagInputProps {
735
+ tags: TagType[];
736
+ selectedTags: TagType[];
737
+ onAddTag: (tag: TagType) => void;
738
+ isPreviewMode: boolean;
739
+ }
740
+
731
741
  export declare interface TagProps extends React_2.HTMLAttributes<HTMLDivElement>, VariantProps<typeof tagVariants> {
732
742
  isRemovable?: boolean;
733
743
  onRemove?: (event?: React_2.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
734
744
  icon?: any;
735
745
  }
736
746
 
747
+ export declare interface TagType {
748
+ name: string;
749
+ color: string;
750
+ }
751
+
737
752
  declare const tagVariants: (props?: ({
738
753
  variant?: "danger" | "transparent" | "gray" | "brand" | "success" | null | undefined;
739
754
  } & ClassProp) | undefined) => string;