@syncfusion/ej2-vue-navigations 20.1.48 → 20.1.51
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/CHANGELOG.md +54 -2
- package/README.md +17 -2
- package/carousel.d.ts +4 -0
- package/carousel.js +4 -0
- package/dist/ej2-vue-navigations.umd.min.js +11 -2
- package/dist/es6/ej2-vue-navigations.es2015.js +373 -92
- package/dist/es6/ej2-vue-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es5.js +411 -109
- package/dist/es6/ej2-vue-navigations.es5.js.map +1 -1
- package/dist/global/ej2-vue-navigations.min.js +2 -2
- package/package.json +11 -15
- package/src/accordion/accordion.component.d.ts +1 -1
- package/src/accordion/accordion.component.js +1 -1
- package/src/carousel/carousel.component.d.ts +43 -0
- package/src/carousel/carousel.component.js +202 -0
- package/src/carousel/index.d.ts +2 -0
- package/src/carousel/index.js +2 -0
- package/src/carousel/items.directive.d.ts +33 -0
- package/src/carousel/items.directive.js +110 -0
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
- package/styles/accordion/bootstrap-dark.css +48 -63
- package/styles/accordion/bootstrap.css +48 -63
- package/styles/accordion/bootstrap4.css +48 -63
- package/styles/accordion/bootstrap5-dark.css +51 -66
- package/styles/accordion/bootstrap5.css +51 -66
- package/styles/accordion/fabric-dark.css +50 -65
- package/styles/accordion/fabric.css +50 -65
- package/styles/accordion/fluent-dark.css +395 -0
- package/styles/accordion/fluent-dark.scss +1 -0
- package/styles/accordion/fluent.css +395 -0
- package/styles/accordion/fluent.scss +1 -0
- package/styles/accordion/highcontrast-light.css +49 -64
- package/styles/accordion/highcontrast.css +49 -64
- package/styles/accordion/material-dark.css +49 -64
- package/styles/accordion/material.css +49 -64
- package/styles/accordion/tailwind-dark.css +52 -67
- package/styles/accordion/tailwind.css +52 -67
- package/styles/bootstrap-dark.css +309 -68
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +309 -68
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +309 -68
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +414 -170
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +414 -170
- package/styles/bootstrap5.scss +1 -0
- package/styles/breadcrumb/bootstrap-dark.css +9 -1
- package/styles/breadcrumb/bootstrap.css +9 -1
- package/styles/breadcrumb/bootstrap4.css +9 -1
- package/styles/breadcrumb/bootstrap5-dark.css +11 -3
- package/styles/breadcrumb/bootstrap5.css +11 -3
- package/styles/breadcrumb/fabric-dark.css +9 -3
- package/styles/breadcrumb/fabric.css +9 -3
- package/styles/breadcrumb/fluent-dark.css +444 -0
- package/styles/breadcrumb/fluent-dark.scss +1 -0
- package/styles/breadcrumb/fluent.css +444 -0
- package/styles/breadcrumb/fluent.scss +1 -0
- package/styles/breadcrumb/highcontrast-light.css +9 -3
- package/styles/breadcrumb/highcontrast.css +9 -3
- package/styles/breadcrumb/material-dark.css +9 -1
- package/styles/breadcrumb/material.css +9 -1
- package/styles/breadcrumb/tailwind-dark.css +27 -10
- package/styles/breadcrumb/tailwind.css +26 -9
- package/styles/carousel/bootstrap-dark.css +236 -0
- package/styles/carousel/bootstrap-dark.scss +1 -0
- package/styles/carousel/bootstrap.css +236 -0
- package/styles/carousel/bootstrap.scss +1 -0
- package/styles/carousel/bootstrap4.css +236 -0
- package/styles/carousel/bootstrap4.scss +1 -0
- package/styles/carousel/bootstrap5-dark.css +236 -0
- package/styles/carousel/bootstrap5-dark.scss +1 -0
- package/styles/carousel/bootstrap5.css +236 -0
- package/styles/carousel/bootstrap5.scss +1 -0
- package/styles/carousel/fabric-dark.css +236 -0
- package/styles/carousel/fabric-dark.scss +1 -0
- package/styles/carousel/fabric.css +236 -0
- package/styles/carousel/fabric.scss +1 -0
- package/styles/carousel/fluent-dark.css +236 -0
- package/styles/carousel/fluent-dark.scss +1 -0
- package/styles/carousel/fluent.css +236 -0
- package/styles/carousel/fluent.scss +1 -0
- package/styles/carousel/highcontrast-light.css +236 -0
- package/styles/carousel/highcontrast-light.scss +1 -0
- package/styles/carousel/highcontrast.css +236 -0
- package/styles/carousel/highcontrast.scss +1 -0
- package/styles/carousel/material-dark.css +237 -0
- package/styles/carousel/material-dark.scss +1 -0
- package/styles/carousel/material.css +237 -0
- package/styles/carousel/material.scss +1 -0
- package/styles/carousel/tailwind-dark.css +237 -0
- package/styles/carousel/tailwind-dark.scss +1 -0
- package/styles/carousel/tailwind.css +237 -0
- package/styles/carousel/tailwind.scss +1 -0
- package/styles/context-menu/bootstrap-dark.css +5 -0
- package/styles/context-menu/bootstrap.css +5 -0
- package/styles/context-menu/bootstrap4.css +5 -0
- package/styles/context-menu/bootstrap5-dark.css +16 -8
- package/styles/context-menu/bootstrap5.css +16 -8
- package/styles/context-menu/fabric-dark.css +5 -0
- package/styles/context-menu/fabric.css +5 -0
- package/styles/context-menu/fluent-dark.css +388 -0
- package/styles/context-menu/fluent-dark.scss +1 -0
- package/styles/context-menu/fluent.css +388 -0
- package/styles/context-menu/fluent.scss +1 -0
- package/styles/context-menu/highcontrast-light.css +5 -0
- package/styles/context-menu/highcontrast.css +5 -0
- package/styles/context-menu/material-dark.css +5 -0
- package/styles/context-menu/material.css +5 -0
- package/styles/context-menu/tailwind-dark.css +11 -4
- package/styles/context-menu/tailwind.css +11 -4
- package/styles/fabric-dark.css +311 -72
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +311 -72
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +10263 -0
- package/styles/fluent-dark.scss +11 -0
- package/styles/fluent.css +10263 -0
- package/styles/fluent.scss +11 -0
- package/styles/h-scroll/bootstrap-dark.css +0 -1
- package/styles/h-scroll/bootstrap.css +0 -1
- package/styles/h-scroll/bootstrap4.css +0 -1
- package/styles/h-scroll/bootstrap5-dark.css +10 -11
- package/styles/h-scroll/bootstrap5.css +10 -11
- package/styles/h-scroll/fabric-dark.css +0 -1
- package/styles/h-scroll/fabric.css +0 -1
- package/styles/h-scroll/fluent-dark.css +326 -0
- package/styles/h-scroll/fluent-dark.scss +1 -0
- package/styles/h-scroll/fluent.css +326 -0
- package/styles/h-scroll/fluent.scss +1 -0
- package/styles/h-scroll/highcontrast-light.css +0 -1
- package/styles/h-scroll/highcontrast.css +0 -1
- package/styles/h-scroll/material-dark.css +3 -4
- package/styles/h-scroll/material.css +0 -1
- package/styles/h-scroll/tailwind-dark.css +8 -9
- package/styles/h-scroll/tailwind.css +8 -9
- package/styles/highcontrast-light.css +310 -71
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +311 -72
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +313 -72
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +310 -69
- package/styles/material.scss +1 -0
- package/styles/menu/bootstrap-dark.css +1 -2
- package/styles/menu/bootstrap.css +1 -2
- package/styles/menu/bootstrap4.css +1 -2
- package/styles/menu/bootstrap5-dark.css +23 -24
- package/styles/menu/bootstrap5.css +23 -24
- package/styles/menu/fabric-dark.css +1 -2
- package/styles/menu/fabric.css +1 -2
- package/styles/menu/fluent-dark.css +1261 -0
- package/styles/menu/fluent-dark.scss +1 -0
- package/styles/menu/fluent.css +1261 -0
- package/styles/menu/fluent.scss +1 -0
- package/styles/menu/highcontrast-light.css +1 -2
- package/styles/menu/highcontrast.css +1 -2
- package/styles/menu/material-dark.css +1 -2
- package/styles/menu/material.css +1 -2
- package/styles/menu/tailwind-dark.css +18 -18
- package/styles/menu/tailwind.css +18 -18
- package/styles/sidebar/bootstrap-dark.css +4 -0
- package/styles/sidebar/bootstrap.css +4 -0
- package/styles/sidebar/bootstrap4.css +4 -0
- package/styles/sidebar/bootstrap5-dark.css +4 -0
- package/styles/sidebar/bootstrap5.css +4 -0
- package/styles/sidebar/fabric-dark.css +4 -0
- package/styles/sidebar/fabric.css +4 -0
- package/styles/sidebar/fluent-dark.css +158 -0
- package/styles/sidebar/fluent-dark.scss +1 -0
- package/styles/sidebar/fluent.css +158 -0
- package/styles/sidebar/fluent.scss +1 -0
- package/styles/sidebar/highcontrast-light.css +4 -0
- package/styles/sidebar/highcontrast.css +4 -0
- package/styles/sidebar/material-dark.css +4 -0
- package/styles/sidebar/material.css +4 -0
- package/styles/sidebar/tailwind-dark.css +4 -0
- package/styles/sidebar/tailwind.css +4 -0
- package/styles/tab/bootstrap-dark.css +1 -1
- package/styles/tab/bootstrap.css +1 -1
- package/styles/tab/bootstrap4.css +1 -1
- package/styles/tab/bootstrap5-dark.css +23 -23
- package/styles/tab/bootstrap5.css +23 -23
- package/styles/tab/fabric-dark.css +1 -1
- package/styles/tab/fabric.css +1 -1
- package/styles/tab/fluent-dark.css +4394 -0
- package/styles/tab/fluent-dark.scss +1 -0
- package/styles/tab/fluent.css +4394 -0
- package/styles/tab/fluent.scss +1 -0
- package/styles/tab/highcontrast-light.css +1 -1
- package/styles/tab/highcontrast.css +2 -2
- package/styles/tab/material-dark.css +1 -1
- package/styles/tab/material.css +1 -1
- package/styles/tab/tailwind-dark.css +43 -45
- package/styles/tab/tailwind.css +43 -45
- package/styles/tailwind-dark.css +428 -177
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +427 -176
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/bootstrap-dark.css +4 -0
- package/styles/toolbar/bootstrap.css +4 -0
- package/styles/toolbar/bootstrap4.css +4 -0
- package/styles/toolbar/bootstrap5-dark.css +35 -31
- package/styles/toolbar/bootstrap5.css +35 -31
- package/styles/toolbar/fabric-dark.css +4 -0
- package/styles/toolbar/fabric.css +4 -0
- package/styles/toolbar/fluent-dark.css +1365 -0
- package/styles/toolbar/fluent-dark.scss +1 -0
- package/styles/toolbar/fluent.css +1365 -0
- package/styles/toolbar/fluent.scss +1 -0
- package/styles/toolbar/highcontrast-light.css +4 -0
- package/styles/toolbar/highcontrast.css +4 -0
- package/styles/toolbar/material-dark.css +4 -0
- package/styles/toolbar/material.css +4 -0
- package/styles/toolbar/tailwind-dark.css +10 -6
- package/styles/toolbar/tailwind.css +10 -6
- package/styles/treeview/bootstrap5-dark.css +4 -4
- package/styles/treeview/bootstrap5.css +4 -4
- package/styles/treeview/fluent-dark.css +1039 -0
- package/styles/treeview/fluent-dark.scss +1 -0
- package/styles/treeview/fluent.css +1039 -0
- package/styles/treeview/fluent.scss +1 -0
- package/styles/treeview/tailwind-dark.css +13 -14
- package/styles/treeview/tailwind.css +13 -14
- package/styles/v-scroll/fluent-dark.css +247 -0
- package/styles/v-scroll/fluent-dark.scss +1 -0
- package/styles/v-scroll/fluent.css +247 -0
- package/styles/v-scroll/fluent.scss +1 -0
- package/styles/v-scroll/tailwind-dark.css +4 -4
- package/styles/v-scroll/tailwind.css +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,52 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### TreeView
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I371505` - The issue with "The TreeView checked node state doesn't update properly for nested levels when loadOnDemand is enabled" has been resolved.
|
|
10
|
+
|
|
11
|
+
### Tab
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#F174269` - Tab throws script error while adding items with `headerTemplate` has been fixed.
|
|
16
|
+
|
|
17
|
+
## 20.1.48 (2022-04-12)
|
|
18
|
+
|
|
19
|
+
### Menu
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#I371293` - Resolved the "Context menu not closed properly when the two separate context menu binded in the DOM" in menu component.
|
|
24
|
+
- `#I369007` - An issue with "Script error throws when we remove items with hamburger mode in mobile view" has been resolved.
|
|
25
|
+
|
|
26
|
+
### Toolbar
|
|
27
|
+
|
|
28
|
+
#### Bug Fixes
|
|
29
|
+
|
|
30
|
+
- `#I372768` - An issue with the toolbar scrollable buttons accessibility issue has been fixed.
|
|
31
|
+
|
|
32
|
+
## 20.1.47 (2022-04-04)
|
|
33
|
+
|
|
34
|
+
### Carousel
|
|
35
|
+
|
|
36
|
+
The Carousel component allows users to display images with content, links, etc., like a slide show. Typical uses of carousels include scrolling news headlines, featured articles on home pages, and image galleries.
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
- **Rendering** - The Carousel component can be rendered based on the items collection and data binding.
|
|
40
|
+
- **Animation** - Supports animation effects for moving previous/next item of Carousel.
|
|
41
|
+
- **Template Support** - The Carousel component items and buttons can also be rendered with custom templates.
|
|
42
|
+
- **Keyboard Support** - By default, the Carousel allows interaction with commands by using keyboard shortcuts.
|
|
43
|
+
- **Accessibility** - The Carousel provides built-in compliance with the `WAI-ARIA` specifications and it is achieved through attributes.
|
|
44
|
+
|
|
45
|
+
### Tab
|
|
46
|
+
|
|
47
|
+
#### Bug Fixes
|
|
48
|
+
|
|
49
|
+
- `SF-369202, #F173364` - An issue with another tab item content is rendered in newly added tab item content has been fixed.
|
|
50
|
+
|
|
5
51
|
## 19.4.55 (2022-03-08)
|
|
6
52
|
|
|
7
53
|
### Menu
|
|
@@ -10,6 +56,12 @@
|
|
|
10
56
|
|
|
11
57
|
- `#I368643` - Resolved theme related issue in menu component.
|
|
12
58
|
|
|
59
|
+
### Tab
|
|
60
|
+
|
|
61
|
+
#### Bug Fixes
|
|
62
|
+
|
|
63
|
+
- `SF-369303` - An issue with hiding tab item dynamically with `visible` property not working has been fixed.
|
|
64
|
+
|
|
13
65
|
## 19.4.53 (2022-02-22)
|
|
14
66
|
|
|
15
67
|
### Sidebar
|
|
@@ -32,7 +84,7 @@
|
|
|
32
84
|
|
|
33
85
|
#### Bug Fixes
|
|
34
86
|
|
|
35
|
-
- Issue with
|
|
87
|
+
- Issue with `setItem` method has been fixed.
|
|
36
88
|
|
|
37
89
|
## 19.4.47 (2022-01-25)
|
|
38
90
|
|
|
@@ -68,7 +120,7 @@
|
|
|
68
120
|
|
|
69
121
|
#### Bug Fixes
|
|
70
122
|
|
|
71
|
-
- `#I346314` - Issue with stopPropagation not works for context menu has been resolved.
|
|
123
|
+
- `#I346314` - Issue with `stopPropagation` not works for context menu has been resolved.
|
|
72
124
|
|
|
73
125
|
## 19.4.38 (2021-12-17)
|
|
74
126
|
|
package/README.md
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
# ej2-vue-navigations
|
|
3
2
|
|
|
4
3
|

|
|
@@ -33,6 +32,13 @@ Following list of components are available in the package
|
|
|
33
32
|
* [View Online Demos](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_campaign=breadcrumb#/material/breadcrumb/default.html)
|
|
34
33
|
* [Product Page](https://www.syncfusion.com/vue-ui-components/vue-breadcrumb)
|
|
35
34
|
|
|
35
|
+
* Carousel - The Carousel component allows users to display images with content, links, etc., like a slide show. Typical uses of carousels include scrolling news headlines, featured articles on home pages, and image galleries.
|
|
36
|
+
|
|
37
|
+
* [Getting Started](https://ej2.syncfusion.com/vue/documentation/carousel/getting-started?lang=typescript&utm_source=npm&utm_campaign=carousel)
|
|
38
|
+
* [API References](https://ej2.syncfusion.com/vue/documentation/api/carousel?utm_source=npm&utm_campaign=carousel)
|
|
39
|
+
* [View Online Demos](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_campaign=carousel#/material/carousel/default.html)
|
|
40
|
+
* [Product Page](https://www.syncfusion.com/vue-ui-components/vue-carousel)
|
|
41
|
+
|
|
36
42
|
* ContextMenu - Graphical user interface that appears on the user right click/touch hold action. It has the support to provide nested level menu items.
|
|
37
43
|
|
|
38
44
|
* [Getting Started](https://ej2.syncfusion.com/vue/documentation/context-menu/getting-started?lang=typescript&utm_source=npm&utm_campaign=context-menu)
|
|
@@ -110,6 +116,14 @@ Sidebar component is used in the following samples.
|
|
|
110
116
|
4. **Overflow Mode** - Used to limit the number of breadcrumb items to be displayed.
|
|
111
117
|
5. **Accessibility** - Provided with built-in accessibility support that helps to access all the Breadcrumb component features through the keyboard, screen readers, or other assistive technology devices.
|
|
112
118
|
|
|
119
|
+
### Carousel
|
|
120
|
+
|
|
121
|
+
1. **Rendering** - The Carousel component can be rendered based on the items collection and data binding.
|
|
122
|
+
2. **Animation** - Supports animation effects for moving previous/next item of Carousel.
|
|
123
|
+
3. **Template Support** - The Carousel component items and buttons can also be rendered with custom templates.
|
|
124
|
+
4. **Keyboard Support** - By default, the Carousel allows interaction with commands by using keyboard shortcuts.
|
|
125
|
+
5. **Accessibility** - The Carousel provides built-in compliance with the `WAI-ARIA` specifications and it is achieved through attributes.
|
|
126
|
+
|
|
113
127
|
### ContextMenu
|
|
114
128
|
|
|
115
129
|
1. **Separator** - Supports menu items grouping by using the Separator.
|
|
@@ -170,10 +184,11 @@ Product support is available for through following mediums.
|
|
|
170
184
|
* Ask your query in [Stack Overflow](https://stackoverflow.com/?utm_source=npm&utm_campaign=navigation) with tag `syncfusion` and `ej2`.
|
|
171
185
|
|
|
172
186
|
## License
|
|
187
|
+
|
|
173
188
|
Check the license detail [here](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license?utm_source=npm&utm_campaign=navigation).
|
|
174
189
|
|
|
175
190
|
## Changelog
|
|
176
191
|
|
|
177
192
|
Check the changelog [here](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/components/navigations/CHANGELOG.md?utm_source=npm&utm_campaign=navigation)
|
|
178
193
|
|
|
179
|
-
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
|
194
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
package/carousel.d.ts
ADDED
package/carousel.js
ADDED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-navigations.umd.min.js
|
|
3
|
-
* version : 20.1.
|
|
3
|
+
* version : 20.1.51
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -9,7 +9,16 @@
|
|
|
9
9
|
*/
|
|
10
10
|
/*!
|
|
11
11
|
* filename: ej2-vue-navigations.umd.min.js
|
|
12
|
-
* version :
|
|
12
|
+
* version : 20.1.47
|
|
13
|
+
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
14
|
+
* Use of this code is subject to the terms of our license.
|
|
15
|
+
* A copy of the current license can be obtained at any time by e-mailing
|
|
16
|
+
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
17
|
+
* applicable laws.
|
|
18
|
+
*/
|
|
19
|
+
/*!
|
|
20
|
+
* filename: ej2-vue-navigations.umd.min.js
|
|
21
|
+
* version : 19.4.38
|
|
13
22
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
14
23
|
* Use of this code is subject to the terms of our license.
|
|
15
24
|
* A copy of the current license can be obtained at any time by e-mailing
|