@turystack/ui 0.0.25 → 0.0.27

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
@@ -671,7 +671,7 @@ declare function Field({ children, label, labelFloating, name, description, erro
671
671
 
672
672
  declare function FieldSet({ legend, tooltip, children, }: PropsWithChildren<FormFieldSetProps>): JSX.Element;
673
673
 
674
- export declare function Flex({ direction, justify, align, gap, wrap, inline, minHeight, children, }: PropsWithChildren<FlexProps>): JSX.Element;
674
+ export declare function Flex({ direction, justify, align, gap, wrap, inline, minHeight, block, children, }: PropsWithChildren<FlexProps>): JSX.Element;
675
675
 
676
676
  export declare type FlexAlign = 'start' | 'end' | 'center' | 'baseline' | 'stretch';
677
677
 
@@ -691,6 +691,7 @@ export declare type FlexProps = {
691
691
  wrap?: FlexWrap;
692
692
  inline?: boolean;
693
693
  minHeight?: FlexMinHeight;
694
+ block?: boolean;
694
695
  };
695
696
 
696
697
  export declare type FlexSlots = 'root';
@@ -1950,6 +1951,10 @@ export declare type UploaderSlots = 'root' | 'fileList' | 'fileItem' | 'fileName
1950
1951
 
1951
1952
  export declare const useColorScheme: () => ColorSchemeContextValue;
1952
1953
 
1954
+ export declare function useDebounceFn<T extends (...args: Parameters<T>) => void>(callback: T, delay?: number): T;
1955
+
1956
+ export declare function useIsMobile(): boolean;
1957
+
1953
1958
  export declare function useSidebar(): SidebarContextValue;
1954
1959
 
1955
1960
  export declare const useTheme: () => ThemeContextValue;