@progress/kendo-vue-layout 3.8.2 → 3.8.3-dev.202301301503

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.
@@ -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: 1674658999,
8
+ publishDate: 1675090169,
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
  };
@@ -47,12 +47,12 @@ export interface TileLayoutProps {
47
47
  items?: TileLayoutItem[];
48
48
  /**
49
49
  * The list of tiles' positions which are used when the TileLayout is in controlled mode
50
- * ([see example]({% slug tiles_tilelayout %}#toc-controlling-the-position)).
50
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-controlling-the-position)).
51
51
  */
52
52
  positions?: TilePosition[];
53
53
  /**
54
54
  * Fires when the user repositions the tile by either dragging or resizing
55
- * ([see example]({% slug tiles_tilelayout %}#toc-controlling-the-position)).
55
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-controlling-the-position)).
56
56
  */
57
57
  onReposition?: (event: TileLayoutRepositionEvent) => void;
58
58
  /**
@@ -128,7 +128,11 @@ var TileLayoutVue2 = {
128
128
  var itemContent = getTemplate.call(this, {
129
129
  h: h,
130
130
  template: item,
131
- defaultRendering: null
131
+ defaultRendering: null,
132
+ additionalProps: {
133
+ tile: tile,
134
+ index: index
135
+ }
132
136
  });
133
137
  var header = templateRendering.call(this, tile.header, getListeners.call(this));
134
138
  var headerContent = getTemplate.call(this, {
@@ -136,6 +140,8 @@ var TileLayoutVue2 = {
136
140
  template: header,
137
141
  defaultRendering: null,
138
142
  additionalProps: {
143
+ tile: tile,
144
+ index: index,
139
145
  id: tileTitleId,
140
146
  headerText: tile.headerText
141
147
  }
@@ -146,6 +152,8 @@ var TileLayoutVue2 = {
146
152
  template: body,
147
153
  defaultRendering: null,
148
154
  additionalProps: {
155
+ tile: tile,
156
+ index: index,
149
157
  bodyText: tile.bodyText
150
158
  }
151
159
  });
@@ -4,7 +4,7 @@
4
4
  export interface TileLayoutItem {
5
5
  /**
6
6
  * The position which is used when the TileLayout is in uncontrolled mode
7
- * ([see example]({% slug tiles_tilelayout %}#toc-position-and-dimensions)).
7
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-position-and-dimensions)).
8
8
  */
9
9
  defaultPosition?: TilePosition;
10
10
  /**
@@ -29,27 +29,27 @@ export interface TileLayoutItem {
29
29
  hintClass?: string;
30
30
  /**
31
31
  * Sets the title in the TileLayoutItem's header content
32
- * ([see example]({% slug tiles_tilelayout %})).
32
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
33
33
  */
34
34
  header?: any;
35
35
  /**
36
36
  * Sets the title in the TileLayoutItem's header text
37
- * ([see example]({% slug tiles_tilelayout %})).
37
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
38
38
  */
39
39
  headerText?: string;
40
40
  /**
41
41
  * Sets the content in TileLayoutItem's body content
42
- * ([see example]({% slug tiles_tilelayout %})).
42
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
43
43
  */
44
44
  body?: any;
45
45
  /**
46
46
  * Sets the content in TileLayoutItem's body text
47
- * ([see example]({% slug tiles_tilelayout %})).
47
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
48
48
  */
49
49
  bodyText?: string;
50
50
  /**
51
51
  * Overrides the default rendering of the TileLayoutItem
52
- * ([see example]({% slug tiles_tilelayout %}#toc-custom-rendering)).
52
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-custom-rendering)).
53
53
  */
54
54
  item?: any;
55
55
  /**
@@ -58,13 +58,13 @@ export interface TileLayoutItem {
58
58
  id?: any;
59
59
  /**
60
60
  * Specifies if the user is allowed to resize the TileLayoutItem and in which direction
61
- * ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
61
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-resizing)).
62
62
  * If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
63
63
  */
64
64
  resizable?: TileResizeMode | string | boolean;
65
65
  /**
66
66
  * Specifies if the user is allowed to reorder the TileLayoutItem by dragging and dropping it
67
- * ([see example]({% slug tiles_tilelayout %}#toc-reordering)).
67
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-reordering)).
68
68
  * If `reorderable` is not specified, the dragging functionality of the TileLayoutItem will be enabled.
69
69
  */
70
70
  reorderable?: boolean;
@@ -125,7 +125,7 @@ export interface TileStrictPosition extends TilePosition {
125
125
  }
126
126
  /**
127
127
  * Specifies if the user is allowed to resize the TileLayoutItem and in which direction
128
- * ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
128
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-resizing)).
129
129
  * If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
130
130
  */
131
131
  export declare type TileResizeMode = 'horizontal' | 'vertical' | boolean;
@@ -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: 1674658999,
8
+ publishDate: 1675090169,
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
  };
@@ -47,12 +47,12 @@ export interface TileLayoutProps {
47
47
  items?: TileLayoutItem[];
48
48
  /**
49
49
  * The list of tiles' positions which are used when the TileLayout is in controlled mode
50
- * ([see example]({% slug tiles_tilelayout %}#toc-controlling-the-position)).
50
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-controlling-the-position)).
51
51
  */
52
52
  positions?: TilePosition[];
53
53
  /**
54
54
  * Fires when the user repositions the tile by either dragging or resizing
55
- * ([see example]({% slug tiles_tilelayout %}#toc-controlling-the-position)).
55
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-controlling-the-position)).
56
56
  */
57
57
  onReposition?: (event: TileLayoutRepositionEvent) => void;
58
58
  /**
@@ -128,7 +128,11 @@ var TileLayoutVue2 = {
128
128
  var itemContent = getTemplate.call(this, {
129
129
  h: h,
130
130
  template: item,
131
- defaultRendering: null
131
+ defaultRendering: null,
132
+ additionalProps: {
133
+ tile: tile,
134
+ index: index
135
+ }
132
136
  });
133
137
  var header = templateRendering.call(this, tile.header, getListeners.call(this));
134
138
  var headerContent = getTemplate.call(this, {
@@ -136,6 +140,8 @@ var TileLayoutVue2 = {
136
140
  template: header,
137
141
  defaultRendering: null,
138
142
  additionalProps: {
143
+ tile: tile,
144
+ index: index,
139
145
  id: tileTitleId,
140
146
  headerText: tile.headerText
141
147
  }
@@ -146,6 +152,8 @@ var TileLayoutVue2 = {
146
152
  template: body,
147
153
  defaultRendering: null,
148
154
  additionalProps: {
155
+ tile: tile,
156
+ index: index,
149
157
  bodyText: tile.bodyText
150
158
  }
151
159
  });
@@ -4,7 +4,7 @@
4
4
  export interface TileLayoutItem {
5
5
  /**
6
6
  * The position which is used when the TileLayout is in uncontrolled mode
7
- * ([see example]({% slug tiles_tilelayout %}#toc-position-and-dimensions)).
7
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-position-and-dimensions)).
8
8
  */
9
9
  defaultPosition?: TilePosition;
10
10
  /**
@@ -29,27 +29,27 @@ export interface TileLayoutItem {
29
29
  hintClass?: string;
30
30
  /**
31
31
  * Sets the title in the TileLayoutItem's header content
32
- * ([see example]({% slug tiles_tilelayout %})).
32
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
33
33
  */
34
34
  header?: any;
35
35
  /**
36
36
  * Sets the title in the TileLayoutItem's header text
37
- * ([see example]({% slug tiles_tilelayout %})).
37
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
38
38
  */
39
39
  headerText?: string;
40
40
  /**
41
41
  * Sets the content in TileLayoutItem's body content
42
- * ([see example]({% slug tiles_tilelayout %})).
42
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
43
43
  */
44
44
  body?: any;
45
45
  /**
46
46
  * Sets the content in TileLayoutItem's body text
47
- * ([see example]({% slug tiles_tilelayout %})).
47
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
48
48
  */
49
49
  bodyText?: string;
50
50
  /**
51
51
  * Overrides the default rendering of the TileLayoutItem
52
- * ([see example]({% slug tiles_tilelayout %}#toc-custom-rendering)).
52
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-custom-rendering)).
53
53
  */
54
54
  item?: any;
55
55
  /**
@@ -58,13 +58,13 @@ export interface TileLayoutItem {
58
58
  id?: any;
59
59
  /**
60
60
  * Specifies if the user is allowed to resize the TileLayoutItem and in which direction
61
- * ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
61
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-resizing)).
62
62
  * If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
63
63
  */
64
64
  resizable?: TileResizeMode | string | boolean;
65
65
  /**
66
66
  * Specifies if the user is allowed to reorder the TileLayoutItem by dragging and dropping it
67
- * ([see example]({% slug tiles_tilelayout %}#toc-reordering)).
67
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-reordering)).
68
68
  * If `reorderable` is not specified, the dragging functionality of the TileLayoutItem will be enabled.
69
69
  */
70
70
  reorderable?: boolean;
@@ -125,7 +125,7 @@ export interface TileStrictPosition extends TilePosition {
125
125
  }
126
126
  /**
127
127
  * Specifies if the user is allowed to resize the TileLayoutItem and in which direction
128
- * ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
128
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-resizing)).
129
129
  * If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
130
130
  */
131
131
  export declare type TileResizeMode = 'horizontal' | 'vertical' | boolean;
@@ -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: 1674658999,
11
+ publishDate: 1675090169,
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
  };
@@ -47,12 +47,12 @@ export interface TileLayoutProps {
47
47
  items?: TileLayoutItem[];
48
48
  /**
49
49
  * The list of tiles' positions which are used when the TileLayout is in controlled mode
50
- * ([see example]({% slug tiles_tilelayout %}#toc-controlling-the-position)).
50
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-controlling-the-position)).
51
51
  */
52
52
  positions?: TilePosition[];
53
53
  /**
54
54
  * Fires when the user repositions the tile by either dragging or resizing
55
- * ([see example]({% slug tiles_tilelayout %}#toc-controlling-the-position)).
55
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-controlling-the-position)).
56
56
  */
57
57
  onReposition?: (event: TileLayoutRepositionEvent) => void;
58
58
  /**
@@ -134,7 +134,11 @@ var TileLayoutVue2 = {
134
134
  var itemContent = kendo_vue_common_1.getTemplate.call(this, {
135
135
  h: h,
136
136
  template: item,
137
- defaultRendering: null
137
+ defaultRendering: null,
138
+ additionalProps: {
139
+ tile: tile,
140
+ index: index
141
+ }
138
142
  });
139
143
  var header = kendo_vue_common_1.templateRendering.call(this, tile.header, kendo_vue_common_1.getListeners.call(this));
140
144
  var headerContent = kendo_vue_common_1.getTemplate.call(this, {
@@ -142,6 +146,8 @@ var TileLayoutVue2 = {
142
146
  template: header,
143
147
  defaultRendering: null,
144
148
  additionalProps: {
149
+ tile: tile,
150
+ index: index,
145
151
  id: tileTitleId,
146
152
  headerText: tile.headerText
147
153
  }
@@ -152,6 +158,8 @@ var TileLayoutVue2 = {
152
158
  template: body,
153
159
  defaultRendering: null,
154
160
  additionalProps: {
161
+ tile: tile,
162
+ index: index,
155
163
  bodyText: tile.bodyText
156
164
  }
157
165
  });
@@ -4,7 +4,7 @@
4
4
  export interface TileLayoutItem {
5
5
  /**
6
6
  * The position which is used when the TileLayout is in uncontrolled mode
7
- * ([see example]({% slug tiles_tilelayout %}#toc-position-and-dimensions)).
7
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-position-and-dimensions)).
8
8
  */
9
9
  defaultPosition?: TilePosition;
10
10
  /**
@@ -29,27 +29,27 @@ export interface TileLayoutItem {
29
29
  hintClass?: string;
30
30
  /**
31
31
  * Sets the title in the TileLayoutItem's header content
32
- * ([see example]({% slug tiles_tilelayout %})).
32
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
33
33
  */
34
34
  header?: any;
35
35
  /**
36
36
  * Sets the title in the TileLayoutItem's header text
37
- * ([see example]({% slug tiles_tilelayout %})).
37
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
38
38
  */
39
39
  headerText?: string;
40
40
  /**
41
41
  * Sets the content in TileLayoutItem's body content
42
- * ([see example]({% slug tiles_tilelayout %})).
42
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
43
43
  */
44
44
  body?: any;
45
45
  /**
46
46
  * Sets the content in TileLayoutItem's body text
47
- * ([see example]({% slug tiles_tilelayout %})).
47
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %})).
48
48
  */
49
49
  bodyText?: string;
50
50
  /**
51
51
  * Overrides the default rendering of the TileLayoutItem
52
- * ([see example]({% slug tiles_tilelayout %}#toc-custom-rendering)).
52
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-custom-rendering)).
53
53
  */
54
54
  item?: any;
55
55
  /**
@@ -58,13 +58,13 @@ export interface TileLayoutItem {
58
58
  id?: any;
59
59
  /**
60
60
  * Specifies if the user is allowed to resize the TileLayoutItem and in which direction
61
- * ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
61
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-resizing)).
62
62
  * If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
63
63
  */
64
64
  resizable?: TileResizeMode | string | boolean;
65
65
  /**
66
66
  * Specifies if the user is allowed to reorder the TileLayoutItem by dragging and dropping it
67
- * ([see example]({% slug tiles_tilelayout %}#toc-reordering)).
67
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-reordering)).
68
68
  * If `reorderable` is not specified, the dragging functionality of the TileLayoutItem will be enabled.
69
69
  */
70
70
  reorderable?: boolean;
@@ -125,7 +125,7 @@ export interface TileStrictPosition extends TilePosition {
125
125
  }
126
126
  /**
127
127
  * Specifies if the user is allowed to resize the TileLayoutItem and in which direction
128
- * ([see example]({% slug tiles_tilelayout %}#toc-resizing)).
128
+ * ([see example]({% slug tiles_position_dimensions_tilelayout %}#toc-resizing)).
129
129
  * If `resizable` is not specified, the resizing of the TileLayoutItem will be enabled for both directions.
130
130
  */
131
131
  export declare type TileResizeMode = 'horizontal' | 'vertical' | boolean;
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.8.2",
4
+ "version": "3.8.3-dev.202301301503",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -44,9 +44,9 @@
44
44
  "vue": "^2.6.12 || ^3.0.2"
45
45
  },
46
46
  "dependencies": {
47
- "@progress/kendo-vue-animation": "3.8.2",
48
- "@progress/kendo-vue-common": "3.8.2",
49
- "@progress/kendo-vue-popup": "3.8.2"
47
+ "@progress/kendo-vue-animation": "3.8.3-dev.202301301503",
48
+ "@progress/kendo-vue-common": "3.8.3-dev.202301301503",
49
+ "@progress/kendo-vue-popup": "3.8.3-dev.202301301503"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@progress/kendo-data-query": "^1.5.0",
@@ -54,15 +54,15 @@
54
54
  "@progress/kendo-drawing": "^1.8.0",
55
55
  "@progress/kendo-licensing": "^1.3.0",
56
56
  "@progress/kendo-svg-icons": "^1.0.0",
57
- "@progress/kendo-vue-buttons": "3.8.2",
58
- "@progress/kendo-vue-charts": "3.8.2",
59
- "@progress/kendo-vue-dateinputs": "3.8.2",
60
- "@progress/kendo-vue-dropdowns": "3.8.2",
61
- "@progress/kendo-vue-grid": "3.8.2",
62
- "@progress/kendo-vue-indicators": "3.8.2",
63
- "@progress/kendo-vue-inputs": "3.8.2",
64
- "@progress/kendo-vue-intl": "3.8.2",
65
- "@progress/kendo-vue-progressbars": "3.8.2"
57
+ "@progress/kendo-vue-buttons": "3.8.3-dev.202301301503",
58
+ "@progress/kendo-vue-charts": "3.8.3-dev.202301301503",
59
+ "@progress/kendo-vue-dateinputs": "3.8.3-dev.202301301503",
60
+ "@progress/kendo-vue-dropdowns": "3.8.3-dev.202301301503",
61
+ "@progress/kendo-vue-grid": "3.8.3-dev.202301301503",
62
+ "@progress/kendo-vue-indicators": "3.8.3-dev.202301301503",
63
+ "@progress/kendo-vue-inputs": "3.8.3-dev.202301301503",
64
+ "@progress/kendo-vue-intl": "3.8.3-dev.202301301503",
65
+ "@progress/kendo-vue-progressbars": "3.8.3-dev.202301301503"
66
66
  },
67
67
  "@progress": {
68
68
  "friendlyName": "Layouts",