@syncfusion/ej2-vue-navigations 24.1.46 → 24.2.4
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 +22 -0
- package/README.md +23 -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
|
@@ -87,7 +87,7 @@ let AccordionComponent = vueDefineComponent({
|
|
|
87
87
|
provide() { return { custom: this.custom }; },
|
|
88
88
|
data() {
|
|
89
89
|
return {
|
|
90
|
-
|
|
90
|
+
ej2Instances: new Accordion({}),
|
|
91
91
|
propKeys: properties,
|
|
92
92
|
models: modelProps,
|
|
93
93
|
hasChildDirective: true,
|
|
@@ -316,7 +316,7 @@ let ToolbarComponent = vueDefineComponent({
|
|
|
316
316
|
provide() { return { custom: this.custom }; },
|
|
317
317
|
data() {
|
|
318
318
|
return {
|
|
319
|
-
|
|
319
|
+
ej2Instances: new Toolbar({}),
|
|
320
320
|
propKeys: properties$1,
|
|
321
321
|
models: modelProps$1,
|
|
322
322
|
hasChildDirective: true,
|
|
@@ -446,7 +446,7 @@ let ContextMenuComponent = vueDefineComponent({
|
|
|
446
446
|
provide() { return { custom: this.custom }; },
|
|
447
447
|
data() {
|
|
448
448
|
return {
|
|
449
|
-
|
|
449
|
+
ej2Instances: new ContextMenu({}),
|
|
450
450
|
propKeys: properties$2,
|
|
451
451
|
models: modelProps$2,
|
|
452
452
|
hasChildDirective: false,
|
|
@@ -645,7 +645,7 @@ let BreadcrumbComponent = vueDefineComponent({
|
|
|
645
645
|
provide() { return { custom: this.custom }; },
|
|
646
646
|
data() {
|
|
647
647
|
return {
|
|
648
|
-
|
|
648
|
+
ej2Instances: new Breadcrumb({}),
|
|
649
649
|
propKeys: properties$3,
|
|
650
650
|
models: modelProps$3,
|
|
651
651
|
hasChildDirective: true,
|
|
@@ -857,7 +857,7 @@ let CarouselComponent = vueDefineComponent({
|
|
|
857
857
|
provide() { return { custom: this.custom }; },
|
|
858
858
|
data() {
|
|
859
859
|
return {
|
|
860
|
-
|
|
860
|
+
ej2Instances: new Carousel({}),
|
|
861
861
|
propKeys: properties$4,
|
|
862
862
|
models: modelProps$4,
|
|
863
863
|
hasChildDirective: true,
|
|
@@ -1080,7 +1080,7 @@ let TabComponent = vueDefineComponent({
|
|
|
1080
1080
|
provide() { return { custom: this.custom }; },
|
|
1081
1081
|
data() {
|
|
1082
1082
|
return {
|
|
1083
|
-
|
|
1083
|
+
ej2Instances: new Tab({}),
|
|
1084
1084
|
propKeys: properties$5,
|
|
1085
1085
|
models: modelProps$5,
|
|
1086
1086
|
hasChildDirective: true,
|
|
@@ -1221,7 +1221,7 @@ let TreeViewComponent = vueDefineComponent({
|
|
|
1221
1221
|
provide() { return { custom: this.custom }; },
|
|
1222
1222
|
data() {
|
|
1223
1223
|
return {
|
|
1224
|
-
|
|
1224
|
+
ej2Instances: new TreeView({}),
|
|
1225
1225
|
propKeys: properties$6,
|
|
1226
1226
|
models: modelProps$6,
|
|
1227
1227
|
hasChildDirective: false,
|
|
@@ -1382,7 +1382,7 @@ let SidebarComponent = vueDefineComponent({
|
|
|
1382
1382
|
provide() { return { custom: this.custom }; },
|
|
1383
1383
|
data() {
|
|
1384
1384
|
return {
|
|
1385
|
-
|
|
1385
|
+
ej2Instances: new Sidebar({}),
|
|
1386
1386
|
propKeys: properties$7,
|
|
1387
1387
|
models: modelProps$7,
|
|
1388
1388
|
hasChildDirective: false,
|
|
@@ -1588,7 +1588,7 @@ let MenuComponent = vueDefineComponent({
|
|
|
1588
1588
|
provide() { return { custom: this.custom }; },
|
|
1589
1589
|
data() {
|
|
1590
1590
|
return {
|
|
1591
|
-
|
|
1591
|
+
ej2Instances: new Menu({}),
|
|
1592
1592
|
propKeys: properties$8,
|
|
1593
1593
|
models: modelProps$8,
|
|
1594
1594
|
hasChildDirective: true,
|
|
@@ -1729,7 +1729,7 @@ let AppBarComponent = vueDefineComponent({
|
|
|
1729
1729
|
provide() { return { custom: this.custom }; },
|
|
1730
1730
|
data() {
|
|
1731
1731
|
return {
|
|
1732
|
-
|
|
1732
|
+
ej2Instances: new AppBar({}),
|
|
1733
1733
|
propKeys: properties$9,
|
|
1734
1734
|
models: modelProps$9,
|
|
1735
1735
|
hasChildDirective: false,
|
|
@@ -1898,7 +1898,7 @@ let StepperComponent = vueDefineComponent({
|
|
|
1898
1898
|
provide() { return { custom: this.custom }; },
|
|
1899
1899
|
data() {
|
|
1900
1900
|
return {
|
|
1901
|
-
|
|
1901
|
+
ej2Instances: new Stepper({}),
|
|
1902
1902
|
propKeys: properties$10,
|
|
1903
1903
|
models: modelProps$10,
|
|
1904
1904
|
hasChildDirective: true,
|