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

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: 1674816533,
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
  /**
@@ -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: 1674816533,
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
  /**
@@ -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: 1674816533,
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
  /**
@@ -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.202301271102",
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.202301271102",
48
+ "@progress/kendo-vue-common": "3.8.3-dev.202301271102",
49
+ "@progress/kendo-vue-popup": "3.8.3-dev.202301271102"
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.202301271102",
58
+ "@progress/kendo-vue-charts": "3.8.3-dev.202301271102",
59
+ "@progress/kendo-vue-dateinputs": "3.8.3-dev.202301271102",
60
+ "@progress/kendo-vue-dropdowns": "3.8.3-dev.202301271102",
61
+ "@progress/kendo-vue-grid": "3.8.3-dev.202301271102",
62
+ "@progress/kendo-vue-indicators": "3.8.3-dev.202301271102",
63
+ "@progress/kendo-vue-inputs": "3.8.3-dev.202301271102",
64
+ "@progress/kendo-vue-intl": "3.8.3-dev.202301271102",
65
+ "@progress/kendo-vue-progressbars": "3.8.3-dev.202301271102"
66
66
  },
67
67
  "@progress": {
68
68
  "friendlyName": "Layouts",