@lumx/vue 4.3.2-alpha.35 → 4.3.2-alpha.37

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.
@@ -2,13 +2,13 @@ import { TableCellProps as UIProps, ThOrder, TableCellVariant } from '@lumx/core
2
2
  import { VueToJSXProps } from '../../utils/VueToJSX';
3
3
  export { ThOrder, TableCellVariant };
4
4
  export type { ThOrder as ThOrderType, TableCellVariant as TableCellVariantType, } from '@lumx/core/js/components/Table/TableCell';
5
- export type TableCellProps = VueToJSXProps<UIProps, 'onHeaderClick'>;
5
+ export type TableCellProps = VueToJSXProps<UIProps>;
6
6
  export declare const emitSchema: {
7
7
  headerClick: () => boolean;
8
8
  };
9
9
  declare const TableCell: import('vue').DefineSetupFnComponent<TableCellProps, {
10
10
  headerClick: () => boolean;
11
- }, {}, Omit<UIProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children" | "onHeaderClick"> & {
11
+ }, {}, Omit<UIProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
12
12
  class?: string;
13
13
  } & {
14
14
  onHeaderClick?: (() => any) | undefined;
@@ -69,8 +69,8 @@ declare const _default: {
69
69
  size?: import('../..').ThumbnailSize | undefined;
70
70
  loading?: "eager" | "lazy" | undefined;
71
71
  loadingPlaceholderImageRef?: React.RefObject<HTMLImageElement> | undefined;
72
- onClick?: ((event: any) => void) | undefined;
73
- onKeyPress?: ((event: any) => void) | undefined;
72
+ handleClick?: ((event: any) => void) | undefined;
73
+ handleKeyPress?: ((event: any) => void) | undefined;
74
74
  variant?: import('../..').ThumbnailVariant | undefined;
75
75
  linkProps?: import('../..').GenericProps | undefined;
76
76
  focusPointStyle?: import('../..').GenericProps | undefined;