jb-grid 0.4.0 → 0.4.1
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.
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ import type { JBCellWebComponent, JBRowWebComponent, JBExpandToggleWebComponent
|
|
|
5
5
|
type JBPaginationAttributes = DetailedHTMLProps<HTMLAttributes<JBPaginationWebComponent>, JBPaginationWebComponent> & JBPaginationDirectAttributeProps;
|
|
6
6
|
export type JBRowAttributes = DetailedHTMLProps<HTMLAttributes<JBRowWebComponent>, JBRowWebComponent>;
|
|
7
7
|
export type JBCellAttributes = DetailedHTMLProps<HTMLAttributes<JBCellWebComponent>, JBCellWebComponent> & {
|
|
8
|
-
ellipsis
|
|
8
|
+
ellipsis?: boolean | number;
|
|
9
9
|
};
|
|
10
10
|
export type JBExpandToggleAttributes = DetailedHTMLProps<HTMLAttributes<JBExpandToggleWebComponent>, JBExpandToggleWebComponent>;
|
|
11
11
|
declare module "react" {
|
|
@@ -5,7 +5,7 @@ import type {JBCellWebComponent, JBRowWebComponent, JBExpandToggleWebComponent}
|
|
|
5
5
|
type JBPaginationAttributes = DetailedHTMLProps<HTMLAttributes<JBPaginationWebComponent>, JBPaginationWebComponent> & JBPaginationDirectAttributeProps
|
|
6
6
|
export type JBRowAttributes = DetailedHTMLProps<HTMLAttributes<JBRowWebComponent>, JBRowWebComponent>
|
|
7
7
|
export type JBCellAttributes = DetailedHTMLProps<HTMLAttributes<JBCellWebComponent>, JBCellWebComponent> & {
|
|
8
|
-
ellipsis
|
|
8
|
+
ellipsis?: boolean | number
|
|
9
9
|
}
|
|
10
10
|
export type JBExpandToggleAttributes = DetailedHTMLProps<HTMLAttributes<JBExpandToggleWebComponent>, JBExpandToggleWebComponent>
|
|
11
11
|
|