@progress/kendo-react-gantt 5.6.0-dev.202208120836 → 5.6.0-dev.202208261541
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/README.md +1 -1
- package/about.md +2 -2
- package/dist/cdn/js/kendo-react-gantt.js +1 -1
- package/dist/es/cells/FilterCells/GanttBooleanFilter.js +1 -1
- package/dist/es/cells/FilterCells/GanttDateFilter.js +1 -1
- package/dist/es/cells/FilterCells/GanttNumericFilter.js +1 -1
- package/dist/es/cells/FilterCells/GanttTextFilter.js +1 -1
- package/dist/es/components/GanttTreelist.d.ts +2 -2
- package/dist/es/components/GanttTreelist.js +1 -1
- package/dist/es/context/GanttViewContext.d.ts +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/cells/FilterCells/GanttBooleanFilter.js +1 -1
- package/dist/npm/cells/FilterCells/GanttDateFilter.js +1 -1
- package/dist/npm/cells/FilterCells/GanttNumericFilter.js +1 -1
- package/dist/npm/cells/FilterCells/GanttTextFilter.js +1 -1
- package/dist/npm/components/GanttTreelist.d.ts +2 -2
- package/dist/npm/components/GanttTreelist.js +1 -1
- package/dist/npm/context/GanttViewContext.d.ts +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-react-gantt.js +1 -1
- package/package.json +13 -13
|
@@ -26,6 +26,6 @@ import { booleanFilterValues, localizeFilter } from './utils';
|
|
|
26
26
|
import { useLocalization } from '@progress/kendo-react-intl';
|
|
27
27
|
export var GanttBooleanFilter = function (props) {
|
|
28
28
|
var operators = props.operators, restProps = __rest(props, ["operators"]);
|
|
29
|
-
return (React.createElement(BooleanFilterCell, __assign({}, localizeFilter(useLocalization(), operators || booleanFilterValues), restProps)));
|
|
29
|
+
return (React.createElement(BooleanFilterCell, __assign({ ariaLabel: 'boolean filter' }, localizeFilter(useLocalization(), operators || booleanFilterValues), restProps)));
|
|
30
30
|
};
|
|
31
31
|
GanttBooleanFilter.displayName = 'KendoReactGanttBooleanFilter';
|
|
@@ -26,6 +26,6 @@ import { dateFilterOperators, localizeFilter } from './utils';
|
|
|
26
26
|
import { useLocalization } from '@progress/kendo-react-intl';
|
|
27
27
|
export var GanttDateFilter = function (props) {
|
|
28
28
|
var operators = props.operators, restProps = __rest(props, ["operators"]);
|
|
29
|
-
return (React.createElement(DateFilterCell, __assign({}, localizeFilter(useLocalization(), operators || dateFilterOperators), restProps)));
|
|
29
|
+
return (React.createElement(DateFilterCell, __assign({ ariaLabel: 'date filter' }, localizeFilter(useLocalization(), operators || dateFilterOperators), restProps)));
|
|
30
30
|
};
|
|
31
31
|
GanttDateFilter.displayName = 'KendoReactGanttDateFilter';
|
|
@@ -26,6 +26,6 @@ import { numericFilterOperators, localizeFilter } from './utils';
|
|
|
26
26
|
import { useLocalization } from '@progress/kendo-react-intl';
|
|
27
27
|
export var GanttNumericFilter = function (props) {
|
|
28
28
|
var operators = props.operators, restProps = __rest(props, ["operators"]);
|
|
29
|
-
return (React.createElement(NumericFilterCell, __assign({}, localizeFilter(useLocalization(), operators || numericFilterOperators), restProps)));
|
|
29
|
+
return (React.createElement(NumericFilterCell, __assign({ ariaLabel: 'numeric filter' }, localizeFilter(useLocalization(), operators || numericFilterOperators), restProps)));
|
|
30
30
|
};
|
|
31
31
|
GanttNumericFilter.displayName = 'KendoReactGanttNumericFilter';
|
|
@@ -26,6 +26,6 @@ import { textFilterOperators, localizeFilter } from './utils';
|
|
|
26
26
|
import { useLocalization } from '@progress/kendo-react-intl';
|
|
27
27
|
export var GanttTextFilter = function (props) {
|
|
28
28
|
var operators = props.operators, restProps = __rest(props, ["operators"]);
|
|
29
|
-
return (React.createElement(TextFilterCell, __assign({}, localizeFilter(useLocalization(), operators || textFilterOperators), restProps)));
|
|
29
|
+
return (React.createElement(TextFilterCell, __assign({ ariaLabel: 'text filter' }, localizeFilter(useLocalization(), operators || textFilterOperators), restProps)));
|
|
30
30
|
};
|
|
31
31
|
GanttTextFilter.displayName = 'KendoReactGanttTextFilter';
|
|
@@ -27,10 +27,10 @@ export declare class GanttTreeList extends React.Component<GanttTreeListProps, {
|
|
|
27
27
|
data: PropTypes.Requireable<any[]>;
|
|
28
28
|
resizable: PropTypes.Requireable<boolean>;
|
|
29
29
|
reorderable: PropTypes.Requireable<boolean>;
|
|
30
|
-
sortable: PropTypes.Requireable<boolean | PropTypes.InferProps<{
|
|
30
|
+
sortable: PropTypes.Requireable<NonNullable<boolean | PropTypes.InferProps<{
|
|
31
31
|
mode: PropTypes.Requireable<string>;
|
|
32
32
|
allowUnsort: PropTypes.Requireable<boolean>;
|
|
33
|
-
}>>;
|
|
33
|
+
}> | null | undefined>>;
|
|
34
34
|
onSortChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
35
35
|
sort: PropTypes.Requireable<any[]>;
|
|
36
36
|
columns: PropTypes.Requireable<(object | null | undefined)[]>;
|
|
@@ -500,7 +500,7 @@ var GanttTreeList = /** @class */ (function (_super) {
|
|
|
500
500
|
var sorted = function (field) {
|
|
501
501
|
return _this.props.sort && _this.props.sort.some(function (descriptor) { return descriptor.field === field; });
|
|
502
502
|
};
|
|
503
|
-
var colGroups = (React.createElement("colgroup", { ref: function (c) { _this.columnResize.colGroupMain = c; }
|
|
503
|
+
var colGroups = (React.createElement("colgroup", { ref: function (c) { _this.columnResize.colGroupMain = c; } }, leafColumns.map(function (column, index) { return (React.createElement("col", { key: index.toString(), className: sorted(column.field) ? 'k-sorted' : undefined, style: column.width !== undefined ? { width: column.width } : undefined })); })));
|
|
504
504
|
var virtualScroll = this.props.columnVirtualization || this.props.scrollable === 'virtual';
|
|
505
505
|
var tableUserSelect = this.props.selectable && this.props.selectable.drag ? 'none' : undefined;
|
|
506
506
|
var tableProps = (this.props.tableProps || {});
|
|
@@ -35,6 +35,6 @@ export interface GanttViewContextProps {
|
|
|
35
35
|
}
|
|
36
36
|
/** @hidden */
|
|
37
37
|
export declare const GanttViewContext: {
|
|
38
|
-
({ children, tasksStore
|
|
38
|
+
({ children, tasksStore, timelineWidth, dependencyDrag }: GanttViewContextProps): JSX.Element;
|
|
39
39
|
displayName: string;
|
|
40
40
|
};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-react-gantt',
|
|
6
6
|
productName: 'KendoReact',
|
|
7
7
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1661527764,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -29,7 +29,7 @@ var utils_1 = require("./utils");
|
|
|
29
29
|
var kendo_react_intl_1 = require("@progress/kendo-react-intl");
|
|
30
30
|
var GanttBooleanFilter = function (props) {
|
|
31
31
|
var operators = props.operators, restProps = __rest(props, ["operators"]);
|
|
32
|
-
return (React.createElement(kendo_react_data_tools_1.BooleanFilterCell, __assign({}, (0, utils_1.localizeFilter)((0, kendo_react_intl_1.useLocalization)(), operators || utils_1.booleanFilterValues), restProps)));
|
|
32
|
+
return (React.createElement(kendo_react_data_tools_1.BooleanFilterCell, __assign({ ariaLabel: 'boolean filter' }, (0, utils_1.localizeFilter)((0, kendo_react_intl_1.useLocalization)(), operators || utils_1.booleanFilterValues), restProps)));
|
|
33
33
|
};
|
|
34
34
|
exports.GanttBooleanFilter = GanttBooleanFilter;
|
|
35
35
|
exports.GanttBooleanFilter.displayName = 'KendoReactGanttBooleanFilter';
|
|
@@ -29,7 +29,7 @@ var utils_1 = require("./utils");
|
|
|
29
29
|
var kendo_react_intl_1 = require("@progress/kendo-react-intl");
|
|
30
30
|
var GanttDateFilter = function (props) {
|
|
31
31
|
var operators = props.operators, restProps = __rest(props, ["operators"]);
|
|
32
|
-
return (React.createElement(kendo_react_data_tools_1.DateFilterCell, __assign({}, (0, utils_1.localizeFilter)((0, kendo_react_intl_1.useLocalization)(), operators || utils_1.dateFilterOperators), restProps)));
|
|
32
|
+
return (React.createElement(kendo_react_data_tools_1.DateFilterCell, __assign({ ariaLabel: 'date filter' }, (0, utils_1.localizeFilter)((0, kendo_react_intl_1.useLocalization)(), operators || utils_1.dateFilterOperators), restProps)));
|
|
33
33
|
};
|
|
34
34
|
exports.GanttDateFilter = GanttDateFilter;
|
|
35
35
|
exports.GanttDateFilter.displayName = 'KendoReactGanttDateFilter';
|
|
@@ -29,7 +29,7 @@ var utils_1 = require("./utils");
|
|
|
29
29
|
var kendo_react_intl_1 = require("@progress/kendo-react-intl");
|
|
30
30
|
var GanttNumericFilter = function (props) {
|
|
31
31
|
var operators = props.operators, restProps = __rest(props, ["operators"]);
|
|
32
|
-
return (React.createElement(kendo_react_data_tools_1.NumericFilterCell, __assign({}, (0, utils_1.localizeFilter)((0, kendo_react_intl_1.useLocalization)(), operators || utils_1.numericFilterOperators), restProps)));
|
|
32
|
+
return (React.createElement(kendo_react_data_tools_1.NumericFilterCell, __assign({ ariaLabel: 'numeric filter' }, (0, utils_1.localizeFilter)((0, kendo_react_intl_1.useLocalization)(), operators || utils_1.numericFilterOperators), restProps)));
|
|
33
33
|
};
|
|
34
34
|
exports.GanttNumericFilter = GanttNumericFilter;
|
|
35
35
|
exports.GanttNumericFilter.displayName = 'KendoReactGanttNumericFilter';
|
|
@@ -29,7 +29,7 @@ var utils_1 = require("./utils");
|
|
|
29
29
|
var kendo_react_intl_1 = require("@progress/kendo-react-intl");
|
|
30
30
|
var GanttTextFilter = function (props) {
|
|
31
31
|
var operators = props.operators, restProps = __rest(props, ["operators"]);
|
|
32
|
-
return (React.createElement(kendo_react_data_tools_1.TextFilterCell, __assign({}, (0, utils_1.localizeFilter)((0, kendo_react_intl_1.useLocalization)(), operators || utils_1.textFilterOperators), restProps)));
|
|
32
|
+
return (React.createElement(kendo_react_data_tools_1.TextFilterCell, __assign({ ariaLabel: 'text filter' }, (0, utils_1.localizeFilter)((0, kendo_react_intl_1.useLocalization)(), operators || utils_1.textFilterOperators), restProps)));
|
|
33
33
|
};
|
|
34
34
|
exports.GanttTextFilter = GanttTextFilter;
|
|
35
35
|
exports.GanttTextFilter.displayName = 'KendoReactGanttTextFilter';
|
|
@@ -27,10 +27,10 @@ export declare class GanttTreeList extends React.Component<GanttTreeListProps, {
|
|
|
27
27
|
data: PropTypes.Requireable<any[]>;
|
|
28
28
|
resizable: PropTypes.Requireable<boolean>;
|
|
29
29
|
reorderable: PropTypes.Requireable<boolean>;
|
|
30
|
-
sortable: PropTypes.Requireable<boolean | PropTypes.InferProps<{
|
|
30
|
+
sortable: PropTypes.Requireable<NonNullable<boolean | PropTypes.InferProps<{
|
|
31
31
|
mode: PropTypes.Requireable<string>;
|
|
32
32
|
allowUnsort: PropTypes.Requireable<boolean>;
|
|
33
|
-
}>>;
|
|
33
|
+
}> | null | undefined>>;
|
|
34
34
|
onSortChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
35
35
|
sort: PropTypes.Requireable<any[]>;
|
|
36
36
|
columns: PropTypes.Requireable<(object | null | undefined)[]>;
|
|
@@ -503,7 +503,7 @@ var GanttTreeList = /** @class */ (function (_super) {
|
|
|
503
503
|
var sorted = function (field) {
|
|
504
504
|
return _this.props.sort && _this.props.sort.some(function (descriptor) { return descriptor.field === field; });
|
|
505
505
|
};
|
|
506
|
-
var colGroups = (React.createElement("colgroup", { ref: function (c) { _this.columnResize.colGroupMain = c; }
|
|
506
|
+
var colGroups = (React.createElement("colgroup", { ref: function (c) { _this.columnResize.colGroupMain = c; } }, leafColumns.map(function (column, index) { return (React.createElement("col", { key: index.toString(), className: sorted(column.field) ? 'k-sorted' : undefined, style: column.width !== undefined ? { width: column.width } : undefined })); })));
|
|
507
507
|
var virtualScroll = this.props.columnVirtualization || this.props.scrollable === 'virtual';
|
|
508
508
|
var tableUserSelect = this.props.selectable && this.props.selectable.drag ? 'none' : undefined;
|
|
509
509
|
var tableProps = (this.props.tableProps || {});
|
|
@@ -35,6 +35,6 @@ export interface GanttViewContextProps {
|
|
|
35
35
|
}
|
|
36
36
|
/** @hidden */
|
|
37
37
|
export declare const GanttViewContext: {
|
|
38
|
-
({ children, tasksStore
|
|
38
|
+
({ children, tasksStore, timelineWidth, dependencyDrag }: GanttViewContextProps): JSX.Element;
|
|
39
39
|
displayName: string;
|
|
40
40
|
};
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-react-gantt',
|
|
9
9
|
productName: 'KendoReact',
|
|
10
10
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1661527764,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
14
14
|
};
|