caplink-saas-ui-shared-component-library 1.1.0 → 1.2.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.
@@ -0,0 +1,12 @@
1
+ import { PropsWithChildren } from 'react';
2
+ type ScrollTopProps = {
3
+ scrollTop: number;
4
+ };
5
+ type ScrollTopState = ScrollTopProps & {
6
+ setScrollTop: (scrollTop: number) => void;
7
+ };
8
+ export declare const ScrollTopContext: import('react').Context<import('zustand').StoreApi<ScrollTopState> | null>;
9
+ export declare function useScrollTopStore<T>(selector: (state: ScrollTopState) => T): T;
10
+ type ScrollTopProviderProps = PropsWithChildren<ScrollTopProps>;
11
+ export declare function ScrollTopProvider({ children, ...props }: ScrollTopProviderProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
@@ -0,0 +1,3 @@
1
+ export declare function CellPlaceholder(props: {
2
+ className?: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -1 +1,3 @@
1
- export declare function Header(): import("react/jsx-runtime").JSX.Element;
1
+ export declare function Header(props: {
2
+ className?: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -1,2 +1 @@
1
- import { Props } from '../model/spreadsheet';
2
- export declare function Spreadsheet(props: Props): import("react/jsx-runtime").JSX.Element;
1
+ export { Spreadsheet } from './spreadsheet';
@@ -0,0 +1,2 @@
1
+ import { Props } from '../model/spreadsheet';
2
+ export declare function Spreadsheet(props: Props): import("react/jsx-runtime").JSX.Element;