@yusr_systems/ui 6.0.13 → 6.0.15

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 CHANGED
@@ -278,6 +278,14 @@ export declare function Checkbox({ className, ...props }: React_2.ComponentProps
278
278
 
279
279
  export declare function cn(...inputs: ClassValue[]): string;
280
280
 
281
+ declare type ColumnsConfig = number | {
282
+ base?: number;
283
+ sm?: number;
284
+ md?: number;
285
+ lg?: number;
286
+ xl?: number;
287
+ };
288
+
281
289
  export declare const Combobox: typeof Combobox_2.Root;
282
290
 
283
291
  export declare function ComboboxChip({ className, children, showRemove, ...props }: Combobox_2.Chip.Props & {
@@ -708,13 +716,14 @@ export declare function FieldSeparator({ children, className, ...props }: React.
708
716
 
709
717
  export declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): JSX.Element;
710
718
 
711
- export declare function FieldsSection({ title, children, columns, className }: FieldsSectionProps): JSX.Element;
719
+ export declare function FieldsSection({ title, children, columns, className, gridClassName, }: FieldsSectionProps): JSX.Element;
712
720
 
713
721
  declare interface FieldsSectionProps {
714
722
  title?: string;
715
723
  children: React.ReactNode;
716
- columns?: number;
724
+ columns?: ColumnsConfig;
717
725
  className?: string;
726
+ gridClassName?: string;
718
727
  }
719
728
 
720
729
  export declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): JSX.Element;