@progress/kendo-react-data-tools 8.2.0-develop.11 → 8.2.0-develop.13
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/index.d.mts +10 -10
- package/index.d.ts +10 -10
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -274,7 +274,7 @@ export declare interface ClipboardSettings {
|
|
|
274
274
|
/** @hidden */
|
|
275
275
|
export declare const closestTagName: (target: HTMLElement | null, tagName: 'TD' | 'TR' | 'TABLE') => HTMLElement | null;
|
|
276
276
|
|
|
277
|
-
export declare interface ColumnBaseProps<
|
|
277
|
+
export declare interface ColumnBaseProps<C = CellProps> {
|
|
278
278
|
/**
|
|
279
279
|
* The field to which the column is bound.
|
|
280
280
|
*/
|
|
@@ -340,7 +340,7 @@ export declare interface ColumnBaseProps<CellProps = CellProps> {
|
|
|
340
340
|
* Defines the component that will be rendered as a cell.
|
|
341
341
|
* If not set, a `Cell` will be rendered by default.
|
|
342
342
|
*/
|
|
343
|
-
cell?: ComponentType<
|
|
343
|
+
cell?: ComponentType<C>;
|
|
344
344
|
/**
|
|
345
345
|
* @hidden
|
|
346
346
|
*/
|
|
@@ -875,7 +875,7 @@ export declare const extendDataItem: (item: any, subItemsField: string, propsToE
|
|
|
875
875
|
/**
|
|
876
876
|
* @hidden
|
|
877
877
|
*/
|
|
878
|
-
export declare interface ExtendedColumnProps<
|
|
878
|
+
export declare interface ExtendedColumnProps<C = CellProps, H = HeaderCellProps, F = FilterCellProps> extends TreeColumnBaseProps<C, H, F> {
|
|
879
879
|
declarationIndex: number;
|
|
880
880
|
parentIndex: number;
|
|
881
881
|
colSpan: number;
|
|
@@ -883,7 +883,7 @@ export declare interface ExtendedColumnProps<CellProps = CellProps, HeaderCellPr
|
|
|
883
883
|
depth: number;
|
|
884
884
|
kFirst?: boolean;
|
|
885
885
|
index: number;
|
|
886
|
-
children: ExtendedColumnProps<
|
|
886
|
+
children: ExtendedColumnProps<C, H, F>[];
|
|
887
887
|
left: number;
|
|
888
888
|
right: number;
|
|
889
889
|
rightBorder: boolean;
|
|
@@ -2354,11 +2354,11 @@ export declare interface TextFilterProps {
|
|
|
2354
2354
|
/**
|
|
2355
2355
|
* @hidden
|
|
2356
2356
|
*/
|
|
2357
|
-
export declare interface TreeColumnBaseProps<
|
|
2357
|
+
export declare interface TreeColumnBaseProps<C = CellProps, H = HeaderCellProps, F = FilterCellProps> extends ColumnBaseProps<C> {
|
|
2358
2358
|
/**
|
|
2359
2359
|
* A collection of child columns.
|
|
2360
2360
|
*/
|
|
2361
|
-
children?: TreeColumnBaseProps<
|
|
2361
|
+
children?: TreeColumnBaseProps<C, H, F>[];
|
|
2362
2362
|
/**
|
|
2363
2363
|
* The column menu component. Pass the [ColumnMenuTextColumn]({% slug api_data-tools_columnmenutextcolumn %}),
|
|
2364
2364
|
* [ColumnMenuNumericColumn]({% slug api_data-tools_columnmenunumericcolumn %}),
|
|
@@ -2374,20 +2374,20 @@ export declare interface TreeColumnBaseProps<CellProps = CellProps, HeaderCellPr
|
|
|
2374
2374
|
/**
|
|
2375
2375
|
* Defines the component that will be rendered as an edit cell.
|
|
2376
2376
|
*/
|
|
2377
|
-
editCell?: ComponentType<
|
|
2377
|
+
editCell?: ComponentType<C>;
|
|
2378
2378
|
/**
|
|
2379
2379
|
* Defines the component that will be rendered as a header cell.
|
|
2380
2380
|
* If not set, a `HeaderCell` will be rendered by default.
|
|
2381
2381
|
*/
|
|
2382
|
-
headerCell?: ComponentType<
|
|
2382
|
+
headerCell?: ComponentType<H>;
|
|
2383
2383
|
/**
|
|
2384
2384
|
* **Deprecated**. Use `filterCell` prop instead.
|
|
2385
2385
|
*/
|
|
2386
|
-
filter?: ComponentType<
|
|
2386
|
+
filter?: ComponentType<F>;
|
|
2387
2387
|
/**
|
|
2388
2388
|
* Defines the component that will be rendered as a filter cell.
|
|
2389
2389
|
*/
|
|
2390
|
-
filterCell?: ComponentType<
|
|
2390
|
+
filterCell?: ComponentType<F>;
|
|
2391
2391
|
}
|
|
2392
2392
|
|
|
2393
2393
|
/**
|
package/index.d.ts
CHANGED
|
@@ -274,7 +274,7 @@ export declare interface ClipboardSettings {
|
|
|
274
274
|
/** @hidden */
|
|
275
275
|
export declare const closestTagName: (target: HTMLElement | null, tagName: 'TD' | 'TR' | 'TABLE') => HTMLElement | null;
|
|
276
276
|
|
|
277
|
-
export declare interface ColumnBaseProps<
|
|
277
|
+
export declare interface ColumnBaseProps<C = CellProps> {
|
|
278
278
|
/**
|
|
279
279
|
* The field to which the column is bound.
|
|
280
280
|
*/
|
|
@@ -340,7 +340,7 @@ export declare interface ColumnBaseProps<CellProps = CellProps> {
|
|
|
340
340
|
* Defines the component that will be rendered as a cell.
|
|
341
341
|
* If not set, a `Cell` will be rendered by default.
|
|
342
342
|
*/
|
|
343
|
-
cell?: ComponentType<
|
|
343
|
+
cell?: ComponentType<C>;
|
|
344
344
|
/**
|
|
345
345
|
* @hidden
|
|
346
346
|
*/
|
|
@@ -875,7 +875,7 @@ export declare const extendDataItem: (item: any, subItemsField: string, propsToE
|
|
|
875
875
|
/**
|
|
876
876
|
* @hidden
|
|
877
877
|
*/
|
|
878
|
-
export declare interface ExtendedColumnProps<
|
|
878
|
+
export declare interface ExtendedColumnProps<C = CellProps, H = HeaderCellProps, F = FilterCellProps> extends TreeColumnBaseProps<C, H, F> {
|
|
879
879
|
declarationIndex: number;
|
|
880
880
|
parentIndex: number;
|
|
881
881
|
colSpan: number;
|
|
@@ -883,7 +883,7 @@ export declare interface ExtendedColumnProps<CellProps = CellProps, HeaderCellPr
|
|
|
883
883
|
depth: number;
|
|
884
884
|
kFirst?: boolean;
|
|
885
885
|
index: number;
|
|
886
|
-
children: ExtendedColumnProps<
|
|
886
|
+
children: ExtendedColumnProps<C, H, F>[];
|
|
887
887
|
left: number;
|
|
888
888
|
right: number;
|
|
889
889
|
rightBorder: boolean;
|
|
@@ -2354,11 +2354,11 @@ export declare interface TextFilterProps {
|
|
|
2354
2354
|
/**
|
|
2355
2355
|
* @hidden
|
|
2356
2356
|
*/
|
|
2357
|
-
export declare interface TreeColumnBaseProps<
|
|
2357
|
+
export declare interface TreeColumnBaseProps<C = CellProps, H = HeaderCellProps, F = FilterCellProps> extends ColumnBaseProps<C> {
|
|
2358
2358
|
/**
|
|
2359
2359
|
* A collection of child columns.
|
|
2360
2360
|
*/
|
|
2361
|
-
children?: TreeColumnBaseProps<
|
|
2361
|
+
children?: TreeColumnBaseProps<C, H, F>[];
|
|
2362
2362
|
/**
|
|
2363
2363
|
* The column menu component. Pass the [ColumnMenuTextColumn]({% slug api_data-tools_columnmenutextcolumn %}),
|
|
2364
2364
|
* [ColumnMenuNumericColumn]({% slug api_data-tools_columnmenunumericcolumn %}),
|
|
@@ -2374,20 +2374,20 @@ export declare interface TreeColumnBaseProps<CellProps = CellProps, HeaderCellPr
|
|
|
2374
2374
|
/**
|
|
2375
2375
|
* Defines the component that will be rendered as an edit cell.
|
|
2376
2376
|
*/
|
|
2377
|
-
editCell?: ComponentType<
|
|
2377
|
+
editCell?: ComponentType<C>;
|
|
2378
2378
|
/**
|
|
2379
2379
|
* Defines the component that will be rendered as a header cell.
|
|
2380
2380
|
* If not set, a `HeaderCell` will be rendered by default.
|
|
2381
2381
|
*/
|
|
2382
|
-
headerCell?: ComponentType<
|
|
2382
|
+
headerCell?: ComponentType<H>;
|
|
2383
2383
|
/**
|
|
2384
2384
|
* **Deprecated**. Use `filterCell` prop instead.
|
|
2385
2385
|
*/
|
|
2386
|
-
filter?: ComponentType<
|
|
2386
|
+
filter?: ComponentType<F>;
|
|
2387
2387
|
/**
|
|
2388
2388
|
* Defines the component that will be rendered as a filter cell.
|
|
2389
2389
|
*/
|
|
2390
|
-
filterCell?: ComponentType<
|
|
2390
|
+
filterCell?: ComponentType<F>;
|
|
2391
2391
|
}
|
|
2392
2392
|
|
|
2393
2393
|
/**
|
package/package-metadata.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const e = {
|
|
|
10
10
|
name: "@progress/kendo-react-data-tools",
|
|
11
11
|
productName: "KendoReact",
|
|
12
12
|
productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
|
|
13
|
-
publishDate:
|
|
13
|
+
publishDate: 1721132222,
|
|
14
14
|
version: "",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-data-tools",
|
|
3
|
-
"version": "8.2.0-develop.
|
|
3
|
+
"version": "8.2.0-develop.13",
|
|
4
4
|
"description": "Includes React Pager & React Filter component, an intuitive interface to create complex filter descriptions. KendoReact Data Tools package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"@progress/kendo-data-query": "^1.0.0",
|
|
26
26
|
"@progress/kendo-drawing": "^1.20.1",
|
|
27
27
|
"@progress/kendo-licensing": "^1.3.4",
|
|
28
|
-
"@progress/kendo-react-animation": "8.2.0-develop.
|
|
29
|
-
"@progress/kendo-react-buttons": "8.2.0-develop.
|
|
30
|
-
"@progress/kendo-react-common": "8.2.0-develop.
|
|
31
|
-
"@progress/kendo-react-dateinputs": "8.2.0-develop.
|
|
32
|
-
"@progress/kendo-react-dropdowns": "8.2.0-develop.
|
|
33
|
-
"@progress/kendo-react-inputs": "8.2.0-develop.
|
|
34
|
-
"@progress/kendo-react-intl": "8.2.0-develop.
|
|
35
|
-
"@progress/kendo-react-popup": "8.2.0-develop.
|
|
28
|
+
"@progress/kendo-react-animation": "8.2.0-develop.13",
|
|
29
|
+
"@progress/kendo-react-buttons": "8.2.0-develop.13",
|
|
30
|
+
"@progress/kendo-react-common": "8.2.0-develop.13",
|
|
31
|
+
"@progress/kendo-react-dateinputs": "8.2.0-develop.13",
|
|
32
|
+
"@progress/kendo-react-dropdowns": "8.2.0-develop.13",
|
|
33
|
+
"@progress/kendo-react-inputs": "8.2.0-develop.13",
|
|
34
|
+
"@progress/kendo-react-intl": "8.2.0-develop.13",
|
|
35
|
+
"@progress/kendo-react-popup": "8.2.0-develop.13",
|
|
36
36
|
"@progress/kendo-svg-icons": "^3.0.0",
|
|
37
37
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
38
38
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|