wacomm 1.39.2 → 1.40.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,7 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ import { RowProps } from './Row';
3
+ interface ClickableRowProps extends RowProps {
4
+ onClick: ZeroFuncType;
5
+ }
6
+ declare function ClickableRow({ children, className, onClick }: ClickableRowProps): import("react/jsx-runtime").JSX.Element;
7
+ export default ClickableRow;
@@ -1,4 +1,4 @@
1
- interface RowProps {
1
+ export interface RowProps {
2
2
  children: any;
3
3
  className?: string;
4
4
  }
@@ -1,3 +1,4 @@
1
1
  export { default as Row } from './Row';
2
2
  export { default as Column } from './Column';
3
3
  export { default as Container } from './Container';
4
+ export { default as ClickableRow } from './ClickableRow';
@@ -5,6 +5,3 @@ export default meta;
5
5
  type Story = StoryObj<typeof meta>;
6
6
  export declare const Default: Story;
7
7
  export declare const EmptyValue: Story;
8
- export declare const TodaysDate: Story;
9
- export declare const FutureDate: Story;
10
- export declare const PastDate: Story;