@progress/kendo-vue-layout 3.7.2 → 3.7.3-dev.202211021251
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/dist/cdn/js/kendo-vue-layout.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tilelayout/interfaces/main.d.ts +135 -0
- package/dist/es/tilelayout/interfaces/main.js +1 -0
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/tilelayout/interfaces/main.d.ts +135 -0
- package/dist/esm/tilelayout/interfaces/main.js +1 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tilelayout/interfaces/main.d.ts +135 -0
- package/dist/npm/tilelayout/interfaces/main.js +2 -0
- package/package.json +11 -11
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-layout',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1667392740,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The interface for describing items that can be passed to the `items` property of the TileLayout component.
|
|
3
|
+
*/
|
|
4
|
+
export interface TileLayoutItem {
|
|
5
|
+
/**
|
|
6
|
+
* The position which is used when the TileLayout is in uncontrolled mode
|
|
7
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-position-and-dimensions)).
|
|
8
|
+
*/
|
|
9
|
+
defaultPosition?: TilePosition;
|
|
10
|
+
/**
|
|
11
|
+
* Sets additional classes to the TileLayoutItem.
|
|
12
|
+
*/
|
|
13
|
+
className?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Sets additional CSS styles to the TileLayoutItem hint element.
|
|
16
|
+
*/
|
|
17
|
+
hintStyle?: object;
|
|
18
|
+
/**
|
|
19
|
+
* Sets additional classes to the TileLayoutItem hint element.
|
|
20
|
+
*/
|
|
21
|
+
hintClassName?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Sets the title in the TileLayoutItem's header
|
|
24
|
+
* ([see example]({% slug tiles_tilelayout %})).
|
|
25
|
+
*/
|
|
26
|
+
header?: any;
|
|
27
|
+
/**
|
|
28
|
+
* Sets the content in TileLayoutItem's body
|
|
29
|
+
* ([see example]({% slug tiles_tilelayout %})).
|
|
30
|
+
*/
|
|
31
|
+
body?: any;
|
|
32
|
+
/**
|
|
33
|
+
* Overrides the default rendering of the TileLayoutItem
|
|
34
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-custom-rendering)).
|
|
35
|
+
*/
|
|
36
|
+
item?: any;
|
|
37
|
+
/**
|
|
38
|
+
* Specifies if the user is allowed to resize the TileLayoutItem and in which direction
|
|
39
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
|
|
40
|
+
* If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
|
|
41
|
+
*/
|
|
42
|
+
resizable?: TileResizeMode;
|
|
43
|
+
/**
|
|
44
|
+
* Specifies if the user is allowed to reorder the TileLayoutItem by dragging and dropping it
|
|
45
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-reordering)).
|
|
46
|
+
* If `reorderable` is not specified, the dragging functionality of the TileLayoutItem will be enabled.
|
|
47
|
+
*/
|
|
48
|
+
reorderable?: boolean;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Specifies the position of each tile.
|
|
52
|
+
*/
|
|
53
|
+
export interface TilePosition {
|
|
54
|
+
/**
|
|
55
|
+
* Defines the order index of the TileLayoutItem.
|
|
56
|
+
* If not set, items will receive a sequential order.
|
|
57
|
+
*/
|
|
58
|
+
order?: number;
|
|
59
|
+
/**
|
|
60
|
+
* (Required) Defines on which column-line the TileLayoutItem will start.
|
|
61
|
+
* It is required in order reordering and resizing functionalities to work as expected as they rely on it.
|
|
62
|
+
*/
|
|
63
|
+
col: number;
|
|
64
|
+
/**
|
|
65
|
+
* Specifies how many columns will the TileLayoutItem spans.
|
|
66
|
+
* Defaults to `1`.
|
|
67
|
+
*/
|
|
68
|
+
colSpan?: number;
|
|
69
|
+
/**
|
|
70
|
+
* Defines on which row-line the TileLayoutItem will start.
|
|
71
|
+
*/
|
|
72
|
+
row?: number;
|
|
73
|
+
/**
|
|
74
|
+
* Specifies how many rows will the TileLayoutItem spans.
|
|
75
|
+
* Defaults to `1`.
|
|
76
|
+
*/
|
|
77
|
+
rowSpan?: number;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Specifies the strict position of each tile.
|
|
81
|
+
* Used in the [TileLayoutRepositionEvent]({% slug api_layout_tilelayoutrepositionevent %}).
|
|
82
|
+
*/
|
|
83
|
+
export interface TileStrictPosition extends TilePosition {
|
|
84
|
+
/**
|
|
85
|
+
* Defines the order index of the TileLayoutItem.
|
|
86
|
+
* If not set, items will receive a sequential order.
|
|
87
|
+
*/
|
|
88
|
+
order: number;
|
|
89
|
+
/**
|
|
90
|
+
* Specifies how many rows will the TileLayoutItem spans.
|
|
91
|
+
* Defaults to `1`.
|
|
92
|
+
*/
|
|
93
|
+
rowSpan: number;
|
|
94
|
+
/**
|
|
95
|
+
* Specifies how many columns will the TileLayoutItem spans.
|
|
96
|
+
* Defaults to `1`.
|
|
97
|
+
*/
|
|
98
|
+
colSpan: number;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Specifies if the user is allowed to resize the TileLayoutItem and in which direction
|
|
102
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
|
|
103
|
+
* If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
|
|
104
|
+
*/
|
|
105
|
+
export declare type TileResizeMode = 'horizontal' | 'vertical' | boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Specifies the gaps between the tiles.
|
|
108
|
+
*/
|
|
109
|
+
export interface TileLayoutGap {
|
|
110
|
+
/**
|
|
111
|
+
* The rows gap between tiles.
|
|
112
|
+
* Defaults to `16px`.
|
|
113
|
+
*/
|
|
114
|
+
rows?: number | string;
|
|
115
|
+
/**
|
|
116
|
+
* The columns gap between tiles.
|
|
117
|
+
* Defaults to `16px`.
|
|
118
|
+
*/
|
|
119
|
+
columns?: number | string;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the TileLayout.
|
|
123
|
+
* For further reference, check [grid-auto-flow CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow) article.
|
|
124
|
+
* Defaults to `column`.
|
|
125
|
+
*/
|
|
126
|
+
export declare type TileLayoutAutoFlow = 'column' | 'row' | 'column dense' | 'row dense' | 'unset';
|
|
127
|
+
/**
|
|
128
|
+
* The arguments for the `onReposition` TileLayout event.
|
|
129
|
+
*/
|
|
130
|
+
export interface TileLayoutRepositionEvent {
|
|
131
|
+
/**
|
|
132
|
+
* The new positions of the TileLayout tiles.
|
|
133
|
+
*/
|
|
134
|
+
value: Array<TileStrictPosition>;
|
|
135
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-layout',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1667392740,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The interface for describing items that can be passed to the `items` property of the TileLayout component.
|
|
3
|
+
*/
|
|
4
|
+
export interface TileLayoutItem {
|
|
5
|
+
/**
|
|
6
|
+
* The position which is used when the TileLayout is in uncontrolled mode
|
|
7
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-position-and-dimensions)).
|
|
8
|
+
*/
|
|
9
|
+
defaultPosition?: TilePosition;
|
|
10
|
+
/**
|
|
11
|
+
* Sets additional classes to the TileLayoutItem.
|
|
12
|
+
*/
|
|
13
|
+
className?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Sets additional CSS styles to the TileLayoutItem hint element.
|
|
16
|
+
*/
|
|
17
|
+
hintStyle?: object;
|
|
18
|
+
/**
|
|
19
|
+
* Sets additional classes to the TileLayoutItem hint element.
|
|
20
|
+
*/
|
|
21
|
+
hintClassName?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Sets the title in the TileLayoutItem's header
|
|
24
|
+
* ([see example]({% slug tiles_tilelayout %})).
|
|
25
|
+
*/
|
|
26
|
+
header?: any;
|
|
27
|
+
/**
|
|
28
|
+
* Sets the content in TileLayoutItem's body
|
|
29
|
+
* ([see example]({% slug tiles_tilelayout %})).
|
|
30
|
+
*/
|
|
31
|
+
body?: any;
|
|
32
|
+
/**
|
|
33
|
+
* Overrides the default rendering of the TileLayoutItem
|
|
34
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-custom-rendering)).
|
|
35
|
+
*/
|
|
36
|
+
item?: any;
|
|
37
|
+
/**
|
|
38
|
+
* Specifies if the user is allowed to resize the TileLayoutItem and in which direction
|
|
39
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
|
|
40
|
+
* If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
|
|
41
|
+
*/
|
|
42
|
+
resizable?: TileResizeMode;
|
|
43
|
+
/**
|
|
44
|
+
* Specifies if the user is allowed to reorder the TileLayoutItem by dragging and dropping it
|
|
45
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-reordering)).
|
|
46
|
+
* If `reorderable` is not specified, the dragging functionality of the TileLayoutItem will be enabled.
|
|
47
|
+
*/
|
|
48
|
+
reorderable?: boolean;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Specifies the position of each tile.
|
|
52
|
+
*/
|
|
53
|
+
export interface TilePosition {
|
|
54
|
+
/**
|
|
55
|
+
* Defines the order index of the TileLayoutItem.
|
|
56
|
+
* If not set, items will receive a sequential order.
|
|
57
|
+
*/
|
|
58
|
+
order?: number;
|
|
59
|
+
/**
|
|
60
|
+
* (Required) Defines on which column-line the TileLayoutItem will start.
|
|
61
|
+
* It is required in order reordering and resizing functionalities to work as expected as they rely on it.
|
|
62
|
+
*/
|
|
63
|
+
col: number;
|
|
64
|
+
/**
|
|
65
|
+
* Specifies how many columns will the TileLayoutItem spans.
|
|
66
|
+
* Defaults to `1`.
|
|
67
|
+
*/
|
|
68
|
+
colSpan?: number;
|
|
69
|
+
/**
|
|
70
|
+
* Defines on which row-line the TileLayoutItem will start.
|
|
71
|
+
*/
|
|
72
|
+
row?: number;
|
|
73
|
+
/**
|
|
74
|
+
* Specifies how many rows will the TileLayoutItem spans.
|
|
75
|
+
* Defaults to `1`.
|
|
76
|
+
*/
|
|
77
|
+
rowSpan?: number;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Specifies the strict position of each tile.
|
|
81
|
+
* Used in the [TileLayoutRepositionEvent]({% slug api_layout_tilelayoutrepositionevent %}).
|
|
82
|
+
*/
|
|
83
|
+
export interface TileStrictPosition extends TilePosition {
|
|
84
|
+
/**
|
|
85
|
+
* Defines the order index of the TileLayoutItem.
|
|
86
|
+
* If not set, items will receive a sequential order.
|
|
87
|
+
*/
|
|
88
|
+
order: number;
|
|
89
|
+
/**
|
|
90
|
+
* Specifies how many rows will the TileLayoutItem spans.
|
|
91
|
+
* Defaults to `1`.
|
|
92
|
+
*/
|
|
93
|
+
rowSpan: number;
|
|
94
|
+
/**
|
|
95
|
+
* Specifies how many columns will the TileLayoutItem spans.
|
|
96
|
+
* Defaults to `1`.
|
|
97
|
+
*/
|
|
98
|
+
colSpan: number;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Specifies if the user is allowed to resize the TileLayoutItem and in which direction
|
|
102
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
|
|
103
|
+
* If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
|
|
104
|
+
*/
|
|
105
|
+
export declare type TileResizeMode = 'horizontal' | 'vertical' | boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Specifies the gaps between the tiles.
|
|
108
|
+
*/
|
|
109
|
+
export interface TileLayoutGap {
|
|
110
|
+
/**
|
|
111
|
+
* The rows gap between tiles.
|
|
112
|
+
* Defaults to `16px`.
|
|
113
|
+
*/
|
|
114
|
+
rows?: number | string;
|
|
115
|
+
/**
|
|
116
|
+
* The columns gap between tiles.
|
|
117
|
+
* Defaults to `16px`.
|
|
118
|
+
*/
|
|
119
|
+
columns?: number | string;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the TileLayout.
|
|
123
|
+
* For further reference, check [grid-auto-flow CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow) article.
|
|
124
|
+
* Defaults to `column`.
|
|
125
|
+
*/
|
|
126
|
+
export declare type TileLayoutAutoFlow = 'column' | 'row' | 'column dense' | 'row dense' | 'unset';
|
|
127
|
+
/**
|
|
128
|
+
* The arguments for the `onReposition` TileLayout event.
|
|
129
|
+
*/
|
|
130
|
+
export interface TileLayoutRepositionEvent {
|
|
131
|
+
/**
|
|
132
|
+
* The new positions of the TileLayout tiles.
|
|
133
|
+
*/
|
|
134
|
+
value: Array<TileStrictPosition>;
|
|
135
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-layout',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1667392740,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The interface for describing items that can be passed to the `items` property of the TileLayout component.
|
|
3
|
+
*/
|
|
4
|
+
export interface TileLayoutItem {
|
|
5
|
+
/**
|
|
6
|
+
* The position which is used when the TileLayout is in uncontrolled mode
|
|
7
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-position-and-dimensions)).
|
|
8
|
+
*/
|
|
9
|
+
defaultPosition?: TilePosition;
|
|
10
|
+
/**
|
|
11
|
+
* Sets additional classes to the TileLayoutItem.
|
|
12
|
+
*/
|
|
13
|
+
className?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Sets additional CSS styles to the TileLayoutItem hint element.
|
|
16
|
+
*/
|
|
17
|
+
hintStyle?: object;
|
|
18
|
+
/**
|
|
19
|
+
* Sets additional classes to the TileLayoutItem hint element.
|
|
20
|
+
*/
|
|
21
|
+
hintClassName?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Sets the title in the TileLayoutItem's header
|
|
24
|
+
* ([see example]({% slug tiles_tilelayout %})).
|
|
25
|
+
*/
|
|
26
|
+
header?: any;
|
|
27
|
+
/**
|
|
28
|
+
* Sets the content in TileLayoutItem's body
|
|
29
|
+
* ([see example]({% slug tiles_tilelayout %})).
|
|
30
|
+
*/
|
|
31
|
+
body?: any;
|
|
32
|
+
/**
|
|
33
|
+
* Overrides the default rendering of the TileLayoutItem
|
|
34
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-custom-rendering)).
|
|
35
|
+
*/
|
|
36
|
+
item?: any;
|
|
37
|
+
/**
|
|
38
|
+
* Specifies if the user is allowed to resize the TileLayoutItem and in which direction
|
|
39
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
|
|
40
|
+
* If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
|
|
41
|
+
*/
|
|
42
|
+
resizable?: TileResizeMode;
|
|
43
|
+
/**
|
|
44
|
+
* Specifies if the user is allowed to reorder the TileLayoutItem by dragging and dropping it
|
|
45
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-reordering)).
|
|
46
|
+
* If `reorderable` is not specified, the dragging functionality of the TileLayoutItem will be enabled.
|
|
47
|
+
*/
|
|
48
|
+
reorderable?: boolean;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Specifies the position of each tile.
|
|
52
|
+
*/
|
|
53
|
+
export interface TilePosition {
|
|
54
|
+
/**
|
|
55
|
+
* Defines the order index of the TileLayoutItem.
|
|
56
|
+
* If not set, items will receive a sequential order.
|
|
57
|
+
*/
|
|
58
|
+
order?: number;
|
|
59
|
+
/**
|
|
60
|
+
* (Required) Defines on which column-line the TileLayoutItem will start.
|
|
61
|
+
* It is required in order reordering and resizing functionalities to work as expected as they rely on it.
|
|
62
|
+
*/
|
|
63
|
+
col: number;
|
|
64
|
+
/**
|
|
65
|
+
* Specifies how many columns will the TileLayoutItem spans.
|
|
66
|
+
* Defaults to `1`.
|
|
67
|
+
*/
|
|
68
|
+
colSpan?: number;
|
|
69
|
+
/**
|
|
70
|
+
* Defines on which row-line the TileLayoutItem will start.
|
|
71
|
+
*/
|
|
72
|
+
row?: number;
|
|
73
|
+
/**
|
|
74
|
+
* Specifies how many rows will the TileLayoutItem spans.
|
|
75
|
+
* Defaults to `1`.
|
|
76
|
+
*/
|
|
77
|
+
rowSpan?: number;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Specifies the strict position of each tile.
|
|
81
|
+
* Used in the [TileLayoutRepositionEvent]({% slug api_layout_tilelayoutrepositionevent %}).
|
|
82
|
+
*/
|
|
83
|
+
export interface TileStrictPosition extends TilePosition {
|
|
84
|
+
/**
|
|
85
|
+
* Defines the order index of the TileLayoutItem.
|
|
86
|
+
* If not set, items will receive a sequential order.
|
|
87
|
+
*/
|
|
88
|
+
order: number;
|
|
89
|
+
/**
|
|
90
|
+
* Specifies how many rows will the TileLayoutItem spans.
|
|
91
|
+
* Defaults to `1`.
|
|
92
|
+
*/
|
|
93
|
+
rowSpan: number;
|
|
94
|
+
/**
|
|
95
|
+
* Specifies how many columns will the TileLayoutItem spans.
|
|
96
|
+
* Defaults to `1`.
|
|
97
|
+
*/
|
|
98
|
+
colSpan: number;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Specifies if the user is allowed to resize the TileLayoutItem and in which direction
|
|
102
|
+
* ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
|
|
103
|
+
* If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
|
|
104
|
+
*/
|
|
105
|
+
export declare type TileResizeMode = 'horizontal' | 'vertical' | boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Specifies the gaps between the tiles.
|
|
108
|
+
*/
|
|
109
|
+
export interface TileLayoutGap {
|
|
110
|
+
/**
|
|
111
|
+
* The rows gap between tiles.
|
|
112
|
+
* Defaults to `16px`.
|
|
113
|
+
*/
|
|
114
|
+
rows?: number | string;
|
|
115
|
+
/**
|
|
116
|
+
* The columns gap between tiles.
|
|
117
|
+
* Defaults to `16px`.
|
|
118
|
+
*/
|
|
119
|
+
columns?: number | string;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the TileLayout.
|
|
123
|
+
* For further reference, check [grid-auto-flow CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow) article.
|
|
124
|
+
* Defaults to `column`.
|
|
125
|
+
*/
|
|
126
|
+
export declare type TileLayoutAutoFlow = 'column' | 'row' | 'column dense' | 'row dense' | 'unset';
|
|
127
|
+
/**
|
|
128
|
+
* The arguments for the `onReposition` TileLayout event.
|
|
129
|
+
*/
|
|
130
|
+
export interface TileLayoutRepositionEvent {
|
|
131
|
+
/**
|
|
132
|
+
* The new positions of the TileLayout tiles.
|
|
133
|
+
*/
|
|
134
|
+
value: Array<TileStrictPosition>;
|
|
135
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-layout",
|
|
3
3
|
"description": "Kendo UI for Vue Layouts package",
|
|
4
|
-
"version": "3.7.
|
|
4
|
+
"version": "3.7.3-dev.202211021251",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -43,22 +43,22 @@
|
|
|
43
43
|
"vue": "^2.6.12 || ^3.0.2"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-vue-animation": "3.7.
|
|
47
|
-
"@progress/kendo-vue-common": "3.7.
|
|
48
|
-
"@progress/kendo-vue-popup": "3.7.
|
|
46
|
+
"@progress/kendo-vue-animation": "3.7.3-dev.202211021251",
|
|
47
|
+
"@progress/kendo-vue-common": "3.7.3-dev.202211021251",
|
|
48
|
+
"@progress/kendo-vue-popup": "3.7.3-dev.202211021251"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@progress/kendo-data-query": "^1.5.0",
|
|
52
52
|
"@progress/kendo-date-math": "^1.5.1",
|
|
53
53
|
"@progress/kendo-drawing": "^1.8.0",
|
|
54
54
|
"@progress/kendo-licensing": "^1.0.1",
|
|
55
|
-
"@progress/kendo-vue-buttons": "3.7.
|
|
56
|
-
"@progress/kendo-vue-dateinputs": "3.7.
|
|
57
|
-
"@progress/kendo-vue-dropdowns": "3.7.
|
|
58
|
-
"@progress/kendo-vue-indicators": "3.7.
|
|
59
|
-
"@progress/kendo-vue-inputs": "3.7.
|
|
60
|
-
"@progress/kendo-vue-intl": "3.7.
|
|
61
|
-
"@progress/kendo-vue-progressbars": "3.7.
|
|
55
|
+
"@progress/kendo-vue-buttons": "3.7.3-dev.202211021251",
|
|
56
|
+
"@progress/kendo-vue-dateinputs": "3.7.3-dev.202211021251",
|
|
57
|
+
"@progress/kendo-vue-dropdowns": "3.7.3-dev.202211021251",
|
|
58
|
+
"@progress/kendo-vue-indicators": "3.7.3-dev.202211021251",
|
|
59
|
+
"@progress/kendo-vue-inputs": "3.7.3-dev.202211021251",
|
|
60
|
+
"@progress/kendo-vue-intl": "3.7.3-dev.202211021251",
|
|
61
|
+
"@progress/kendo-vue-progressbars": "3.7.3-dev.202211021251"
|
|
62
62
|
},
|
|
63
63
|
"@progress": {
|
|
64
64
|
"friendlyName": "Layouts",
|