@progress/kendo-vue-layout 4.3.2 → 4.3.3-dev.202404121101
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/appbar/AppBar.js +8 -10
- package/dist/es/appbar/interfaces/AppBarProps.d.ts +10 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/appbar/AppBar.js +8 -10
- package/dist/esm/appbar/interfaces/AppBarProps.d.ts +10 -2
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/appbar/AppBar.js +8 -10
- package/dist/npm/appbar/interfaces/AppBarProps.d.ts +10 -2
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +13 -13
package/dist/es/appbar/AppBar.js
CHANGED
|
@@ -37,21 +37,19 @@ var AppBarVue2 = {
|
|
|
37
37
|
},
|
|
38
38
|
computed: {
|
|
39
39
|
wrapperClass: function wrapperClass() {
|
|
40
|
-
var _a
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
var _a;
|
|
41
|
+
var _b = this.$props,
|
|
42
|
+
position = _b.position,
|
|
43
|
+
positionMode = _b.positionMode,
|
|
44
|
+
themeColor = _b.themeColor;
|
|
45
|
+
return _a = {
|
|
45
46
|
'k-appbar': true,
|
|
46
47
|
'k-appbar-top': position === 'top',
|
|
47
48
|
'k-appbar-bottom': position === 'bottom',
|
|
48
49
|
'k-appbar-static': positionMode === 'static',
|
|
49
50
|
'k-appbar-sticky': positionMode === 'sticky',
|
|
50
|
-
'k-appbar-fixed': positionMode === 'fixed'
|
|
51
|
-
|
|
52
|
-
'k-appbar-dark': themeColor === 'dark',
|
|
53
|
-
'k-appbar-inherit': themeColor === 'inherit'
|
|
54
|
-
};
|
|
51
|
+
'k-appbar-fixed': positionMode === 'fixed'
|
|
52
|
+
}, _a["k-appbar-".concat(themeColor)] = Boolean(themeColor), _a;
|
|
55
53
|
}
|
|
56
54
|
},
|
|
57
55
|
// @ts-ignore
|
|
@@ -29,9 +29,17 @@ export interface AppBarProps {
|
|
|
29
29
|
* Specifies the theme color of the AppBar ([see example]({% slug appearance_appbar %})).
|
|
30
30
|
*
|
|
31
31
|
* * The possible values are:
|
|
32
|
-
* * `inherit`
|
|
33
32
|
* * `light` (Default)
|
|
34
|
-
* *
|
|
33
|
+
* * 'primary'
|
|
34
|
+
* * 'secondary'
|
|
35
|
+
* * 'tertiary'
|
|
36
|
+
* * 'info'
|
|
37
|
+
* * 'success'
|
|
38
|
+
* * 'warning'
|
|
39
|
+
* * 'error'
|
|
40
|
+
* * 'dark'
|
|
41
|
+
* * 'inherit'
|
|
42
|
+
* * 'inverse'
|
|
35
43
|
*
|
|
36
44
|
*/
|
|
37
45
|
themeColor?: AppBarThemeColor | string;
|
|
@@ -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: 1712919086,
|
|
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
|
};
|
|
@@ -37,21 +37,19 @@ var AppBarVue2 = {
|
|
|
37
37
|
},
|
|
38
38
|
computed: {
|
|
39
39
|
wrapperClass: function wrapperClass() {
|
|
40
|
-
var _a
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
var _a;
|
|
41
|
+
var _b = this.$props,
|
|
42
|
+
position = _b.position,
|
|
43
|
+
positionMode = _b.positionMode,
|
|
44
|
+
themeColor = _b.themeColor;
|
|
45
|
+
return _a = {
|
|
45
46
|
'k-appbar': true,
|
|
46
47
|
'k-appbar-top': position === 'top',
|
|
47
48
|
'k-appbar-bottom': position === 'bottom',
|
|
48
49
|
'k-appbar-static': positionMode === 'static',
|
|
49
50
|
'k-appbar-sticky': positionMode === 'sticky',
|
|
50
|
-
'k-appbar-fixed': positionMode === 'fixed'
|
|
51
|
-
|
|
52
|
-
'k-appbar-dark': themeColor === 'dark',
|
|
53
|
-
'k-appbar-inherit': themeColor === 'inherit'
|
|
54
|
-
};
|
|
51
|
+
'k-appbar-fixed': positionMode === 'fixed'
|
|
52
|
+
}, _a["k-appbar-".concat(themeColor)] = Boolean(themeColor), _a;
|
|
55
53
|
}
|
|
56
54
|
},
|
|
57
55
|
// @ts-ignore
|
|
@@ -29,9 +29,17 @@ export interface AppBarProps {
|
|
|
29
29
|
* Specifies the theme color of the AppBar ([see example]({% slug appearance_appbar %})).
|
|
30
30
|
*
|
|
31
31
|
* * The possible values are:
|
|
32
|
-
* * `inherit`
|
|
33
32
|
* * `light` (Default)
|
|
34
|
-
* *
|
|
33
|
+
* * 'primary'
|
|
34
|
+
* * 'secondary'
|
|
35
|
+
* * 'tertiary'
|
|
36
|
+
* * 'info'
|
|
37
|
+
* * 'success'
|
|
38
|
+
* * 'warning'
|
|
39
|
+
* * 'error'
|
|
40
|
+
* * 'dark'
|
|
41
|
+
* * 'inherit'
|
|
42
|
+
* * 'inverse'
|
|
35
43
|
*
|
|
36
44
|
*/
|
|
37
45
|
themeColor?: AppBarThemeColor | string;
|
|
@@ -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: 1712919086,
|
|
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
|
};
|
|
@@ -43,21 +43,19 @@ var AppBarVue2 = {
|
|
|
43
43
|
},
|
|
44
44
|
computed: {
|
|
45
45
|
wrapperClass: function wrapperClass() {
|
|
46
|
-
var _a
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
var _a;
|
|
47
|
+
var _b = this.$props,
|
|
48
|
+
position = _b.position,
|
|
49
|
+
positionMode = _b.positionMode,
|
|
50
|
+
themeColor = _b.themeColor;
|
|
51
|
+
return _a = {
|
|
51
52
|
'k-appbar': true,
|
|
52
53
|
'k-appbar-top': position === 'top',
|
|
53
54
|
'k-appbar-bottom': position === 'bottom',
|
|
54
55
|
'k-appbar-static': positionMode === 'static',
|
|
55
56
|
'k-appbar-sticky': positionMode === 'sticky',
|
|
56
|
-
'k-appbar-fixed': positionMode === 'fixed'
|
|
57
|
-
|
|
58
|
-
'k-appbar-dark': themeColor === 'dark',
|
|
59
|
-
'k-appbar-inherit': themeColor === 'inherit'
|
|
60
|
-
};
|
|
57
|
+
'k-appbar-fixed': positionMode === 'fixed'
|
|
58
|
+
}, _a["k-appbar-".concat(themeColor)] = Boolean(themeColor), _a;
|
|
61
59
|
}
|
|
62
60
|
},
|
|
63
61
|
// @ts-ignore
|
|
@@ -29,9 +29,17 @@ export interface AppBarProps {
|
|
|
29
29
|
* Specifies the theme color of the AppBar ([see example]({% slug appearance_appbar %})).
|
|
30
30
|
*
|
|
31
31
|
* * The possible values are:
|
|
32
|
-
* * `inherit`
|
|
33
32
|
* * `light` (Default)
|
|
34
|
-
* *
|
|
33
|
+
* * 'primary'
|
|
34
|
+
* * 'secondary'
|
|
35
|
+
* * 'tertiary'
|
|
36
|
+
* * 'info'
|
|
37
|
+
* * 'success'
|
|
38
|
+
* * 'warning'
|
|
39
|
+
* * 'error'
|
|
40
|
+
* * 'dark'
|
|
41
|
+
* * 'inherit'
|
|
42
|
+
* * 'inverse'
|
|
35
43
|
*
|
|
36
44
|
*/
|
|
37
45
|
themeColor?: AppBarThemeColor | string;
|
|
@@ -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: 1712919086,
|
|
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
|
};
|
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": "4.3.
|
|
4
|
+
"version": "4.3.3-dev.202404121101",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"vue": "^2.6.12 || ^3.0.2"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@progress/kendo-vue-animation": "4.3.
|
|
49
|
-
"@progress/kendo-vue-common": "4.3.
|
|
50
|
-
"@progress/kendo-vue-popup": "4.3.
|
|
48
|
+
"@progress/kendo-vue-animation": "4.3.3-dev.202404121101",
|
|
49
|
+
"@progress/kendo-vue-common": "4.3.3-dev.202404121101",
|
|
50
|
+
"@progress/kendo-vue-popup": "4.3.3-dev.202404121101"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@progress/kendo-data-query": "^1.5.0",
|
|
@@ -55,15 +55,15 @@
|
|
|
55
55
|
"@progress/kendo-drawing": "^1.8.0",
|
|
56
56
|
"@progress/kendo-licensing": "^1.3.0",
|
|
57
57
|
"@progress/kendo-svg-icons": "^2.0.0",
|
|
58
|
-
"@progress/kendo-vue-buttons": "4.3.
|
|
59
|
-
"@progress/kendo-vue-charts": "4.3.
|
|
60
|
-
"@progress/kendo-vue-dateinputs": "4.3.
|
|
61
|
-
"@progress/kendo-vue-dropdowns": "4.3.
|
|
62
|
-
"@progress/kendo-vue-grid": "4.3.
|
|
63
|
-
"@progress/kendo-vue-indicators": "4.3.
|
|
64
|
-
"@progress/kendo-vue-inputs": "4.3.
|
|
65
|
-
"@progress/kendo-vue-intl": "4.3.
|
|
66
|
-
"@progress/kendo-vue-progressbars": "4.3.
|
|
58
|
+
"@progress/kendo-vue-buttons": "4.3.3-dev.202404121101",
|
|
59
|
+
"@progress/kendo-vue-charts": "4.3.3-dev.202404121101",
|
|
60
|
+
"@progress/kendo-vue-dateinputs": "4.3.3-dev.202404121101",
|
|
61
|
+
"@progress/kendo-vue-dropdowns": "4.3.3-dev.202404121101",
|
|
62
|
+
"@progress/kendo-vue-grid": "4.3.3-dev.202404121101",
|
|
63
|
+
"@progress/kendo-vue-indicators": "4.3.3-dev.202404121101",
|
|
64
|
+
"@progress/kendo-vue-inputs": "4.3.3-dev.202404121101",
|
|
65
|
+
"@progress/kendo-vue-intl": "4.3.3-dev.202404121101",
|
|
66
|
+
"@progress/kendo-vue-progressbars": "4.3.3-dev.202404121101"
|
|
67
67
|
},
|
|
68
68
|
"@progress": {
|
|
69
69
|
"friendlyName": "Layouts",
|