@syncfusion/ej2-vue-navigations 24.1.46 → 24.2.3
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 +14 -0
- package/dist/ej2-vue-navigations.umd.min.js +2 -2
- package/dist/ej2-vue-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es2015.js +11 -11
- package/dist/es6/ej2-vue-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es5.js +11 -11
- package/dist/es6/ej2-vue-navigations.es5.js.map +1 -1
- package/dist/global/ej2-vue-navigations.min.js +2 -2
- package/package.json +8 -8
- package/src/accordion/accordion.component.js +1 -1
- package/src/appbar/appbar.component.js +1 -1
- package/src/breadcrumb/breadcrumb.component.js +1 -1
- package/src/carousel/carousel.component.js +1 -1
- package/src/context-menu/contextmenu.component.js +1 -1
- package/src/menu/menu.component.js +1 -1
- package/src/sidebar/sidebar.component.js +1 -1
- package/src/stepper/stepper.component.js +1 -1
- package/src/tab/tab.component.js +1 -1
- package/src/toolbar/toolbar.component.js +1 -1
- package/src/treeview/treeview.component.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-navigations@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-navigations@24.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-navigations@24.1.46",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-FNH2etdkcgDjJsdddsGRoT/21kkj+8x8INgy0NWqFWl1qy0qZbswAc4wqB6WNRU1mvp1mF6C+jQ17S13hGHyJg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-navigations",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-24.1.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-24.1.46.tgz",
|
|
23
|
+
"_shasum": "3148d29e2599297f8a9115c24623536255099af1",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-navigations@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~24.
|
|
35
|
-
"@syncfusion/ej2-navigations": "24.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~24.
|
|
34
|
+
"@syncfusion/ej2-base": "~24.2.3",
|
|
35
|
+
"@syncfusion/ej2-navigations": "24.2.3",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~24.2.3"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Vue",
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
"ci-publish": "gulp ci-publish",
|
|
71
71
|
"compile": "gulp ci-compile && gulp vue-global-script"
|
|
72
72
|
},
|
|
73
|
-
"version": "24.
|
|
73
|
+
"version": "24.2.3",
|
|
74
74
|
"sideEffects": false
|
|
75
75
|
}
|
|
@@ -28,7 +28,7 @@ export var AccordionComponent = vueDefineComponent({
|
|
|
28
28
|
provide: function () { return { custom: this.custom }; },
|
|
29
29
|
data: function () {
|
|
30
30
|
return {
|
|
31
|
-
|
|
31
|
+
ej2Instances: new Accordion({}),
|
|
32
32
|
propKeys: properties,
|
|
33
33
|
models: modelProps,
|
|
34
34
|
hasChildDirective: true,
|
|
@@ -25,7 +25,7 @@ export var AppBarComponent = vueDefineComponent({
|
|
|
25
25
|
provide: function () { return { custom: this.custom }; },
|
|
26
26
|
data: function () {
|
|
27
27
|
return {
|
|
28
|
-
|
|
28
|
+
ej2Instances: new AppBar({}),
|
|
29
29
|
propKeys: properties,
|
|
30
30
|
models: modelProps,
|
|
31
31
|
hasChildDirective: false,
|
|
@@ -28,7 +28,7 @@ export var BreadcrumbComponent = vueDefineComponent({
|
|
|
28
28
|
provide: function () { return { custom: this.custom }; },
|
|
29
29
|
data: function () {
|
|
30
30
|
return {
|
|
31
|
-
|
|
31
|
+
ej2Instances: new Breadcrumb({}),
|
|
32
32
|
propKeys: properties,
|
|
33
33
|
models: modelProps,
|
|
34
34
|
hasChildDirective: true,
|
|
@@ -28,7 +28,7 @@ export var CarouselComponent = vueDefineComponent({
|
|
|
28
28
|
provide: function () { return { custom: this.custom }; },
|
|
29
29
|
data: function () {
|
|
30
30
|
return {
|
|
31
|
-
|
|
31
|
+
ej2Instances: new Carousel({}),
|
|
32
32
|
propKeys: properties,
|
|
33
33
|
models: modelProps,
|
|
34
34
|
hasChildDirective: true,
|
|
@@ -26,7 +26,7 @@ export var ContextMenuComponent = vueDefineComponent({
|
|
|
26
26
|
provide: function () { return { custom: this.custom }; },
|
|
27
27
|
data: function () {
|
|
28
28
|
return {
|
|
29
|
-
|
|
29
|
+
ej2Instances: new ContextMenu({}),
|
|
30
30
|
propKeys: properties,
|
|
31
31
|
models: modelProps,
|
|
32
32
|
hasChildDirective: false,
|
|
@@ -26,7 +26,7 @@ export var MenuComponent = vueDefineComponent({
|
|
|
26
26
|
provide: function () { return { custom: this.custom }; },
|
|
27
27
|
data: function () {
|
|
28
28
|
return {
|
|
29
|
-
|
|
29
|
+
ej2Instances: new Menu({}),
|
|
30
30
|
propKeys: properties,
|
|
31
31
|
models: modelProps,
|
|
32
32
|
hasChildDirective: true,
|
|
@@ -27,7 +27,7 @@ export var SidebarComponent = vueDefineComponent({
|
|
|
27
27
|
provide: function () { return { custom: this.custom }; },
|
|
28
28
|
data: function () {
|
|
29
29
|
return {
|
|
30
|
-
|
|
30
|
+
ej2Instances: new Sidebar({}),
|
|
31
31
|
propKeys: properties,
|
|
32
32
|
models: modelProps,
|
|
33
33
|
hasChildDirective: false,
|
|
@@ -28,7 +28,7 @@ export var StepperComponent = vueDefineComponent({
|
|
|
28
28
|
provide: function () { return { custom: this.custom }; },
|
|
29
29
|
data: function () {
|
|
30
30
|
return {
|
|
31
|
-
|
|
31
|
+
ej2Instances: new Stepper({}),
|
|
32
32
|
propKeys: properties,
|
|
33
33
|
models: modelProps,
|
|
34
34
|
hasChildDirective: true,
|
package/src/tab/tab.component.js
CHANGED
|
@@ -26,7 +26,7 @@ export var TabComponent = vueDefineComponent({
|
|
|
26
26
|
provide: function () { return { custom: this.custom }; },
|
|
27
27
|
data: function () {
|
|
28
28
|
return {
|
|
29
|
-
|
|
29
|
+
ej2Instances: new Tab({}),
|
|
30
30
|
propKeys: properties,
|
|
31
31
|
models: modelProps,
|
|
32
32
|
hasChildDirective: true,
|
|
@@ -26,7 +26,7 @@ export var ToolbarComponent = vueDefineComponent({
|
|
|
26
26
|
provide: function () { return { custom: this.custom }; },
|
|
27
27
|
data: function () {
|
|
28
28
|
return {
|
|
29
|
-
|
|
29
|
+
ej2Instances: new Toolbar({}),
|
|
30
30
|
propKeys: properties,
|
|
31
31
|
models: modelProps,
|
|
32
32
|
hasChildDirective: true,
|
|
@@ -25,7 +25,7 @@ export var TreeViewComponent = vueDefineComponent({
|
|
|
25
25
|
provide: function () { return { custom: this.custom }; },
|
|
26
26
|
data: function () {
|
|
27
27
|
return {
|
|
28
|
-
|
|
28
|
+
ej2Instances: new TreeView({}),
|
|
29
29
|
propKeys: properties,
|
|
30
30
|
models: modelProps,
|
|
31
31
|
hasChildDirective: false,
|