@arkyn/types 1.3.79 → 1.3.80
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,7 @@
|
|
1
1
|
import type { HTMLAttributes, TableHTMLAttributes } from "react";
|
2
|
-
type TableBodyProps =
|
2
|
+
type TableBodyProps = {
|
3
|
+
emptyMessage?: string;
|
4
|
+
} & HTMLAttributes<HTMLTableSectionElement>;
|
3
5
|
type TableCaptionProps = HTMLAttributes<HTMLElement>;
|
4
6
|
type TableContainerProps = TableHTMLAttributes<HTMLTableElement>;
|
5
7
|
type TableFooterProps = HTMLAttributes<HTMLTableSectionElement>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"TableProps.d.ts","sourceRoot":"","sources":["../../src/components/TableProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAEjE,KAAK,cAAc,GAAG,cAAc,CAAC,uBAAuB,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"TableProps.d.ts","sourceRoot":"","sources":["../../src/components/TableProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAEjE,KAAK,cAAc,GAAG;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,GAAG,cAAc,CAAC,uBAAuB,CAAC,CAAC;AAC5C,KAAK,iBAAiB,GAAG,cAAc,CAAC,WAAW,CAAC,CAAC;AACrD,KAAK,mBAAmB,GAAG,mBAAmB,CAAC,gBAAgB,CAAC,CAAC;AACjE,KAAK,gBAAgB,GAAG,cAAc,CAAC,uBAAuB,CAAC,CAAC;AAChE,KAAK,gBAAgB,GAAG,cAAc,CAAC,uBAAuB,CAAC,CAAC;AAEhE,YAAY,EACV,cAAc,EACd,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,GACjB,CAAC"}
|
package/package.json
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
import type { HTMLAttributes, TableHTMLAttributes } from "react";
|
2
2
|
|
3
|
-
type TableBodyProps =
|
3
|
+
type TableBodyProps = {
|
4
|
+
emptyMessage?: string;
|
5
|
+
} & HTMLAttributes<HTMLTableSectionElement>;
|
4
6
|
type TableCaptionProps = HTMLAttributes<HTMLElement>;
|
5
7
|
type TableContainerProps = TableHTMLAttributes<HTMLTableElement>;
|
6
8
|
type TableFooterProps = HTMLAttributes<HTMLTableSectionElement>;
|