@devexpress/dx-react-grid-bootstrap4
Advanced tools
Comparing version 1.8.0-beta.1 to 1.8.0
@@ -263,2 +263,5 @@ import * as React from 'react'; | ||
export declare const TableBandHeader: React.ComponentType<TableBandHeaderProps> & { | ||
/** The band row type's identifier. */ | ||
ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders a band cell. */ | ||
@@ -399,4 +402,4 @@ Cell: React.ComponentType<React.ComponentType<TableBase.CellProps> & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
export declare const TableEditColumn: React.ComponentType<TableEditColumnProps> & { | ||
/** The name of the edit column type. */ | ||
COLUMN_TYPE: string; | ||
/** The edit column type's identifier. */ | ||
COLUMN_TYPE: symbol; | ||
} & { | ||
@@ -441,2 +444,7 @@ /** A component that renders a command control within a command cell. */ | ||
export declare const TableEditRow: React.ComponentType<TableEditRowProps> & { | ||
/** The added row type's identifier. */ | ||
ADDED_ROW_TYPE: symbol; | ||
/** The edit row type's identifier. */ | ||
EDIT_ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders an editable cell. */ | ||
@@ -477,2 +485,7 @@ Cell: React.ComponentType<TableEditRowBase.CellProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
export namespace TableFilterRow { | ||
/** Describes properties passed to a component that renders a toggle button for a filter selector. */ | ||
export type ToggleButtonProps = TableFilterRowBase.ToggleButtonProps; | ||
} | ||
export interface TableFilterRowProps { | ||
@@ -489,2 +502,4 @@ /** A component that renders a filter cell. */ | ||
editorComponent?: React.ComponentType<TableFilterRowBase.EditorProps>; | ||
/** A component that renders a filter selector's toggle button. */ | ||
toggleButtonComponent?: React.ComponentType<TableFilterRowBase.ToggleButtonProps>; | ||
/** Specifies whether the FilterSelector should be displayed. */ | ||
@@ -500,2 +515,5 @@ showFilterSelector?: boolean; | ||
export declare const TableFilterRow: React.ComponentType<TableFilterRowProps> & { | ||
/** The filter row type's identifier. */ | ||
ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders a filter row cell. */ | ||
@@ -511,2 +529,4 @@ Cell: React.ComponentType<TableFilterRowBase.CellProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
Editor: React.ComponentType<TableFilterRowBase.EditorProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
/** A component that renders a filter selector's toggle button. */ | ||
ToggleButton: React.ComponentType<TableFilterRowBase.ToggleButtonProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
}; | ||
@@ -529,10 +549,6 @@ | ||
export interface TableFixedColumnsProps { | ||
/** Specifies names of the columns to be fixed to the left grid's side. */ | ||
beforeColumnNames?: Array<string>; | ||
/** Specifies names of the columns to be fixed to the right grid's side. */ | ||
afterColumnNames?: Array<string>; | ||
/** Specifies types of the service columns to be fixed to the left grid's side. */ | ||
beforeColumnTypes?: Array<string>; | ||
/** Specifies types of the service columns to be fixed to the right grid's side. */ | ||
afterColumnTypes?: Array<string>; | ||
/** Specifies names and types of the columns to be fixed to the left grid's side. */ | ||
leftColumns?: Array<string | symbol>; | ||
/** Specifies names and types of the columns to be fixed to the right grid's side. */ | ||
rightColumns?: Array<string | symbol>; | ||
/** A component that renders a fixed column's cell. */ | ||
@@ -594,2 +610,7 @@ cellComponent?: React.ComponentType<TableFixedColumnsBase.CellProps>; | ||
export declare const TableGroupRow: React.ComponentType<TableGroupRowProps> & { | ||
/** The group column type's identifier. */ | ||
COLUMN_TYPE: symbol; | ||
/** The group row type's identifier. */ | ||
ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders a group row. */ | ||
@@ -625,2 +646,7 @@ Row: React.ComponentType<TableGroupRowBase.RowProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
export namespace TableHeaderRow { | ||
/** Describes properties used to render a group button. */ | ||
export type GroupButtonProps = TableHeaderRowBase.GroupButtonProps; | ||
} | ||
export interface TableHeaderRowProps { | ||
@@ -637,2 +663,4 @@ /** A component that renders a header cell. */ | ||
titleComponent?: React.ComponentType<object>; | ||
/** A component that renders a group button. */ | ||
groupButtonComponent?: React.ComponentType<TableHeaderRowBase.GroupButtonProps>; | ||
/** Specifies whether to render controls that toggle the column's sorting state. Requires the SortingState dependency. */ | ||
@@ -648,2 +676,5 @@ showSortingControls?: boolean; | ||
export declare const TableHeaderRow: React.ComponentType<TableHeaderRowProps> & { | ||
/** The header row type's identifier. */ | ||
ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders a header row. */ | ||
@@ -659,2 +690,4 @@ Row: React.ComponentType<TableBase.RowProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
Title: React.ComponentType<object & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
/** A component that renders a group button. */ | ||
GroupButton: React.ComponentType<TableHeaderRowBase.GroupButtonProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
}; | ||
@@ -708,2 +741,7 @@ | ||
export declare const TableRowDetail: React.ComponentType<TableRowDetailProps> & { | ||
/** The detail column type's identifier. */ | ||
COLUMN_TYPE: symbol; | ||
/** The detail row type's indentifier. */ | ||
ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders a detail cell. */ | ||
@@ -755,4 +793,4 @@ Cell: React.ComponentType<TableRowDetailBase.CellProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
export declare const TableSelection: React.ComponentType<TableSelectionProps> & { | ||
/** The name of the selection column type. */ | ||
COLUMN_TYPE: string; | ||
/** The selection column type's indentifier. */ | ||
COLUMN_TYPE: symbol; | ||
} & { | ||
@@ -818,2 +856,9 @@ /** A component that renders a cell with the selection control inside the heading row. */ | ||
export declare const TableSummaryRow: React.ComponentType<TableSummaryRowProps> & { | ||
/** The tree summary row type's indentifier. */ | ||
TREE_ROW_TYPE: symbol; | ||
/** The group summary row type's indentifier. */ | ||
GROUP_ROW_TYPE: symbol; | ||
/** The total row type's indentifier. */ | ||
TOTAL_ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders a cell within a data row. */ | ||
@@ -982,2 +1027,9 @@ Cell: React.ComponentType<TableSummaryRowBase.CellProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
export declare const Table: React.ComponentType<TableProps> & { | ||
/** The data column type's indentifier. */ | ||
COLUMN_TYPE: symbol; | ||
/** The data row type's indentifier. */ | ||
ROW_TYPE: symbol; | ||
/** The nodata row type's indentifier. */ | ||
NODATA_ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders a table. */ | ||
@@ -1077,2 +1129,9 @@ Table: React.ComponentType<object & { className?: string; style?: React.CSSProperties; [x: string]: any }>; | ||
export declare const VirtualTable: React.ComponentType<VirtualTableProps> & { | ||
/** The data column type's indentifier. */ | ||
COLUMN_TYPE: symbol; | ||
/** The data row type's indentifier. */ | ||
ROW_TYPE: symbol; | ||
/** The nodata row type's indentifier. */ | ||
NODATA_ROW_TYPE: symbol; | ||
} & { | ||
/** A component that renders a table. */ | ||
@@ -1079,0 +1138,0 @@ Table: React.ComponentType<object & { className?: string; style?: React.CSSProperties; [x: string]: any }>; |
{ | ||
"name": "@devexpress/dx-react-grid-bootstrap4", | ||
"version": "1.8.0-beta.1", | ||
"version": "1.8.0", | ||
"description": "Bootstrap 4 templates for DevExtreme React Grid component", | ||
@@ -47,6 +47,6 @@ "author": { | ||
"devDependencies": { | ||
"@devexpress/dx-grid-core": "^1.8.0-beta.1", | ||
"@devexpress/dx-react-core": "^1.8.0-beta.1", | ||
"@devexpress/dx-react-grid": "^1.8.0-beta.1", | ||
"@devexpress/dx-testing": "^1.8.0-beta.1", | ||
"@devexpress/dx-grid-core": "^1.8.0", | ||
"@devexpress/dx-react-core": "^1.8.0", | ||
"@devexpress/dx-react-grid": "^1.8.0", | ||
"@devexpress/dx-testing": "^1.8.0", | ||
"babel-core": "^6.26.3", | ||
@@ -63,3 +63,3 @@ "babel-jest": "^23.4.2", | ||
"enzyme-adapter-react-16": "^1.2.0", | ||
"eslint": "^5.4.0", | ||
"eslint": "^5.6.1", | ||
"eslint-config-airbnb": "^17.1.0", | ||
@@ -69,15 +69,15 @@ "eslint-config-airbnb-base": "^13.1.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jest": "^21.22.0", | ||
"eslint-plugin-jest": "^21.24.0", | ||
"eslint-plugin-jsx-a11y": "^6.1.1", | ||
"eslint-plugin-react": "^7.11.1", | ||
"jest": "^23.5.0", | ||
"react": "^16.4.2", | ||
"react-dom": "^16.4.2", | ||
"react-test-renderer": "^16.4.2", | ||
"reactstrap": "^6.4.0", | ||
"rollup": "0.50.0", | ||
"jest": "^23.6.0", | ||
"react": "^16.5.2", | ||
"react-dom": "^16.5.2", | ||
"react-test-renderer": "^16.5.2", | ||
"reactstrap": "6.4.0", | ||
"rollup": "^0.66.2", | ||
"rollup-plugin-babel": "^3.0.4", | ||
"rollup-plugin-css-only": "^0.4.0", | ||
"rollup-plugin-license": "^0.6.0", | ||
"rollup-plugin-node-resolve": "^3.3.0" | ||
"rollup-plugin-license": "^0.7.0", | ||
"rollup-plugin-node-resolve": "^3.4.0" | ||
}, | ||
@@ -95,3 +95,3 @@ "dependencies": { | ||
}, | ||
"gitHead": "8fb5dc5f32b4a02a8922917f07398b48902ecc5c" | ||
"gitHead": "30dd98f003c170e60ce6eb79d48fe4e3ac99338d" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
0
134
553797
6540