@noraent/nora-datagrid 0.0.277 → 0.0.279

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noraent/nora-datagrid",
3
- "version": "0.0.277",
3
+ "version": "0.0.279",
4
4
  "module": "./dist/nora_datagrid.es.js",
5
5
  "main": "./dist/nora_datagrid.cjs.js",
6
6
  "private": false,
@@ -1,13 +1,15 @@
1
1
  import { default as React, ReactNode } from 'react';
2
+ import { Interpolation, Theme } from '@emotion/react';
2
3
  export declare const NoraDataGrid: React.ForwardRefExoticComponent<NoraDataGridMainProps & React.RefAttributes<HTMLDivElement>> & {
3
4
  Title: typeof NoraDataGridTitle;
4
5
  Body: React.ForwardRefExoticComponent<NoraDataGridMainProps & React.RefAttributes<HTMLDivElement>>;
5
6
  Footer: typeof NoraDataGridFooter;
6
7
  };
7
- declare function NoraDataGridTitle(props: NoraDataGridMainProps): import("react/jsx-runtime").JSX.Element;
8
- declare function NoraDataGridFooter(props: NoraDataGridMainProps): import("react/jsx-runtime").JSX.Element;
8
+ declare function NoraDataGridTitle(props: NoraDataGridMainProps): import("@emotion/react/jsx-runtime").JSX.Element;
9
+ declare function NoraDataGridFooter(props: NoraDataGridMainProps): import("@emotion/react/jsx-runtime").JSX.Element;
9
10
  interface NoraDataGridMainProps {
10
11
  children?: ReactNode;
11
12
  imeRef?: React.RefObject<HTMLTextAreaElement | null>;
13
+ style?: Interpolation<Theme>;
12
14
  }
13
15
  export {};
@@ -57,3 +57,7 @@ export declare const SortButton: import('@emotion/styled').StyledComponent<{
57
57
  theme?: import('@emotion/react').Theme;
58
58
  as?: React.ElementType;
59
59
  }, React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
60
+ export declare const NoraDataGridStyled: import('@emotion/styled').StyledComponent<{
61
+ theme?: import('@emotion/react').Theme;
62
+ as?: React.ElementType;
63
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;