@progress/kendo-vue-layout 3.10.2 → 3.11.0-dev.202305230751
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/bottomnavigation/BottomNavigation.js +9 -1
- package/dist/es/bottomnavigation/BottomNavigationItem.js +7 -2
- package/dist/es/bottomnavigation/BottomNavigationProps.d.ts +4 -0
- package/dist/es/drawer/DrawerContent.d.ts +4 -4
- package/dist/es/drawer/DrawerContent.js +4 -4
- package/dist/es/drawer/DrawerItem.js +9 -6
- package/dist/es/drawer/interfaces/DrawerItemProps.d.ts +5 -0
- package/dist/es/expansionpanel/ExpansionPanel.js +14 -11
- package/dist/es/expansionpanel/interfaces.d.ts +9 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/panelbar/PanelBarItem.js +7 -3
- package/dist/es/panelbar/interfaces/PanelBarItemProps.d.ts +5 -0
- package/dist/es/panelbar/interfaces/PanelBarItemProps.js +1 -0
- package/dist/es/splitter/Splitter.js +10 -7
- package/dist/es/splitter/SplitterBar.d.ts +1 -3
- package/dist/es/splitter/SplitterBar.js +22 -13
- package/dist/es/stepper/Step.js +32 -11
- package/dist/es/stepper/Stepper.d.ts +5 -5
- package/dist/es/stepper/Stepper.js +5 -5
- package/dist/es/stepper/interfaces/StepProps.d.ts +21 -0
- package/dist/esm/bottomnavigation/BottomNavigation.js +9 -1
- package/dist/esm/bottomnavigation/BottomNavigationItem.js +7 -2
- package/dist/esm/bottomnavigation/BottomNavigationProps.d.ts +4 -0
- package/dist/esm/drawer/DrawerContent.d.ts +4 -4
- package/dist/esm/drawer/DrawerContent.js +4 -4
- package/dist/esm/drawer/DrawerItem.js +9 -6
- package/dist/esm/drawer/interfaces/DrawerItemProps.d.ts +5 -0
- package/dist/esm/expansionpanel/ExpansionPanel.js +14 -11
- package/dist/esm/expansionpanel/interfaces.d.ts +9 -0
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/panelbar/PanelBarItem.js +7 -3
- package/dist/esm/panelbar/interfaces/PanelBarItemProps.d.ts +5 -0
- package/dist/esm/panelbar/interfaces/PanelBarItemProps.js +1 -0
- package/dist/esm/splitter/Splitter.js +10 -7
- package/dist/esm/splitter/SplitterBar.d.ts +1 -3
- package/dist/esm/splitter/SplitterBar.js +22 -13
- package/dist/esm/stepper/Step.js +32 -11
- package/dist/esm/stepper/Stepper.d.ts +5 -5
- package/dist/esm/stepper/Stepper.js +5 -5
- package/dist/esm/stepper/interfaces/StepProps.d.ts +21 -0
- package/dist/npm/bottomnavigation/BottomNavigation.js +9 -1
- package/dist/npm/bottomnavigation/BottomNavigationItem.js +7 -2
- package/dist/npm/bottomnavigation/BottomNavigationProps.d.ts +4 -0
- package/dist/npm/drawer/DrawerContent.d.ts +4 -4
- package/dist/npm/drawer/DrawerContent.js +4 -4
- package/dist/npm/drawer/DrawerItem.js +8 -5
- package/dist/npm/drawer/interfaces/DrawerItemProps.d.ts +5 -0
- package/dist/npm/expansionpanel/ExpansionPanel.js +13 -10
- package/dist/npm/expansionpanel/interfaces.d.ts +9 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/panelbar/PanelBarItem.js +7 -3
- package/dist/npm/panelbar/interfaces/PanelBarItemProps.d.ts +5 -0
- package/dist/npm/panelbar/interfaces/PanelBarItemProps.js +1 -0
- package/dist/npm/splitter/Splitter.js +9 -6
- package/dist/npm/splitter/SplitterBar.d.ts +1 -3
- package/dist/npm/splitter/SplitterBar.js +22 -13
- package/dist/npm/stepper/Step.js +31 -10
- package/dist/npm/stepper/Stepper.d.ts +5 -5
- package/dist/npm/stepper/Stepper.js +5 -5
- package/dist/npm/stepper/interfaces/StepProps.d.ts +21 -0
- package/package.json +13 -13
|
@@ -418,24 +418,24 @@ exports.StepperVue2 = StepperVue2;
|
|
|
418
418
|
* items: [
|
|
419
419
|
* {
|
|
420
420
|
* label: "Cart",
|
|
421
|
-
* icon: "
|
|
421
|
+
* icon: "cart",
|
|
422
422
|
* },
|
|
423
423
|
* {
|
|
424
424
|
* label: "Delivery Address",
|
|
425
|
-
* icon: "
|
|
425
|
+
* icon: "marker-pin-target",
|
|
426
426
|
* },
|
|
427
427
|
* {
|
|
428
428
|
* label: "Payment Method",
|
|
429
|
-
* icon: "
|
|
429
|
+
* icon: "dollar",
|
|
430
430
|
* },
|
|
431
431
|
* {
|
|
432
432
|
* label: "Preview",
|
|
433
|
-
* icon: "
|
|
433
|
+
* icon: "preview",
|
|
434
434
|
* optional: true,
|
|
435
435
|
* },
|
|
436
436
|
* {
|
|
437
437
|
* label: "Finish Order",
|
|
438
|
-
* icon: "
|
|
438
|
+
* icon: "track-changes-accept",
|
|
439
439
|
* },
|
|
440
440
|
* ]
|
|
441
441
|
* }
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SVGIcon } from '@progress/kendo-vue-common';
|
|
1
2
|
/**
|
|
2
3
|
* Represents the props of the [Kendo UI for Vue Step component]({% slug overview_stepper %}).
|
|
3
4
|
*/
|
|
@@ -31,6 +32,26 @@ export interface StepProps {
|
|
|
31
32
|
* ([see example]({% slug display_modes_stepper %})).
|
|
32
33
|
*/
|
|
33
34
|
icon?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Defines an SVGIcon to be rendered within the Step.
|
|
37
|
+
*/
|
|
38
|
+
svgIcon?: SVGIcon;
|
|
39
|
+
/**
|
|
40
|
+
* Defines the name for an success icon in a Kendo UI for Vue theme.
|
|
41
|
+
*/
|
|
42
|
+
successIcon: String;
|
|
43
|
+
/**
|
|
44
|
+
* Defines an success SVGIcon to be rendered within the Step.
|
|
45
|
+
*/
|
|
46
|
+
successSvgIcon: Object;
|
|
47
|
+
/**
|
|
48
|
+
* Defines the name for an error icon in a Kendo UI for Vue theme.
|
|
49
|
+
*/
|
|
50
|
+
errorIcon: String;
|
|
51
|
+
/**
|
|
52
|
+
* Defines an error SVGIcon to be rendered within the Step.
|
|
53
|
+
*/
|
|
54
|
+
errorSvgIcon: Object;
|
|
34
55
|
/**
|
|
35
56
|
* Sets the index of the Step that is used to identify it.
|
|
36
57
|
*/
|
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.
|
|
4
|
+
"version": "3.11.0-dev.202305230751",
|
|
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": "3.
|
|
49
|
-
"@progress/kendo-vue-common": "3.
|
|
50
|
-
"@progress/kendo-vue-popup": "3.
|
|
48
|
+
"@progress/kendo-vue-animation": "3.11.0-dev.202305230751",
|
|
49
|
+
"@progress/kendo-vue-common": "3.11.0-dev.202305230751",
|
|
50
|
+
"@progress/kendo-vue-popup": "3.11.0-dev.202305230751"
|
|
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": "^1.0.0",
|
|
58
|
-
"@progress/kendo-vue-buttons": "3.
|
|
59
|
-
"@progress/kendo-vue-charts": "3.
|
|
60
|
-
"@progress/kendo-vue-dateinputs": "3.
|
|
61
|
-
"@progress/kendo-vue-dropdowns": "3.
|
|
62
|
-
"@progress/kendo-vue-grid": "3.
|
|
63
|
-
"@progress/kendo-vue-indicators": "3.
|
|
64
|
-
"@progress/kendo-vue-inputs": "3.
|
|
65
|
-
"@progress/kendo-vue-intl": "3.
|
|
66
|
-
"@progress/kendo-vue-progressbars": "3.
|
|
58
|
+
"@progress/kendo-vue-buttons": "3.11.0-dev.202305230751",
|
|
59
|
+
"@progress/kendo-vue-charts": "3.11.0-dev.202305230751",
|
|
60
|
+
"@progress/kendo-vue-dateinputs": "3.11.0-dev.202305230751",
|
|
61
|
+
"@progress/kendo-vue-dropdowns": "3.11.0-dev.202305230751",
|
|
62
|
+
"@progress/kendo-vue-grid": "3.11.0-dev.202305230751",
|
|
63
|
+
"@progress/kendo-vue-indicators": "3.11.0-dev.202305230751",
|
|
64
|
+
"@progress/kendo-vue-inputs": "3.11.0-dev.202305230751",
|
|
65
|
+
"@progress/kendo-vue-intl": "3.11.0-dev.202305230751",
|
|
66
|
+
"@progress/kendo-vue-progressbars": "3.11.0-dev.202305230751"
|
|
67
67
|
},
|
|
68
68
|
"@progress": {
|
|
69
69
|
"friendlyName": "Layouts",
|