@syncfusion/ej2-vue-navigations 24.1.41 → 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 +34 -0
- package/README.md +1 -1
- 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 +13 -13
- package/dist/es6/ej2-vue-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es5.js +13 -13
- 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/stepper/steps.directive.d.ts +2 -2
- package/src/stepper/steps.directive.js +2 -2
- package/src/tab/tab.component.js +1 -1
- package/src/toolbar/toolbar.component.js +1 -1
- package/src/treeview/treeview.component.js +1 -1
|
@@ -88,7 +88,7 @@ var AccordionComponent = vueDefineComponent({
|
|
|
88
88
|
provide: function () { return { custom: this.custom }; },
|
|
89
89
|
data: function () {
|
|
90
90
|
return {
|
|
91
|
-
|
|
91
|
+
ej2Instances: new Accordion({}),
|
|
92
92
|
propKeys: properties,
|
|
93
93
|
models: modelProps,
|
|
94
94
|
hasChildDirective: true,
|
|
@@ -321,7 +321,7 @@ var ToolbarComponent = vueDefineComponent({
|
|
|
321
321
|
provide: function () { return { custom: this.custom }; },
|
|
322
322
|
data: function () {
|
|
323
323
|
return {
|
|
324
|
-
|
|
324
|
+
ej2Instances: new Toolbar({}),
|
|
325
325
|
propKeys: properties$1,
|
|
326
326
|
models: modelProps$1,
|
|
327
327
|
hasChildDirective: true,
|
|
@@ -455,7 +455,7 @@ var ContextMenuComponent = vueDefineComponent({
|
|
|
455
455
|
provide: function () { return { custom: this.custom }; },
|
|
456
456
|
data: function () {
|
|
457
457
|
return {
|
|
458
|
-
|
|
458
|
+
ej2Instances: new ContextMenu({}),
|
|
459
459
|
propKeys: properties$2,
|
|
460
460
|
models: modelProps$2,
|
|
461
461
|
hasChildDirective: false,
|
|
@@ -658,7 +658,7 @@ var BreadcrumbComponent = vueDefineComponent({
|
|
|
658
658
|
provide: function () { return { custom: this.custom }; },
|
|
659
659
|
data: function () {
|
|
660
660
|
return {
|
|
661
|
-
|
|
661
|
+
ej2Instances: new Breadcrumb({}),
|
|
662
662
|
propKeys: properties$3,
|
|
663
663
|
models: modelProps$3,
|
|
664
664
|
hasChildDirective: true,
|
|
@@ -874,7 +874,7 @@ var CarouselComponent = vueDefineComponent({
|
|
|
874
874
|
provide: function () { return { custom: this.custom }; },
|
|
875
875
|
data: function () {
|
|
876
876
|
return {
|
|
877
|
-
|
|
877
|
+
ej2Instances: new Carousel({}),
|
|
878
878
|
propKeys: properties$4,
|
|
879
879
|
models: modelProps$4,
|
|
880
880
|
hasChildDirective: true,
|
|
@@ -1101,7 +1101,7 @@ var TabComponent = vueDefineComponent({
|
|
|
1101
1101
|
provide: function () { return { custom: this.custom }; },
|
|
1102
1102
|
data: function () {
|
|
1103
1103
|
return {
|
|
1104
|
-
|
|
1104
|
+
ej2Instances: new Tab({}),
|
|
1105
1105
|
propKeys: properties$5,
|
|
1106
1106
|
models: modelProps$5,
|
|
1107
1107
|
hasChildDirective: true,
|
|
@@ -1246,7 +1246,7 @@ var TreeViewComponent = vueDefineComponent({
|
|
|
1246
1246
|
provide: function () { return { custom: this.custom }; },
|
|
1247
1247
|
data: function () {
|
|
1248
1248
|
return {
|
|
1249
|
-
|
|
1249
|
+
ej2Instances: new TreeView({}),
|
|
1250
1250
|
propKeys: properties$6,
|
|
1251
1251
|
models: modelProps$6,
|
|
1252
1252
|
hasChildDirective: false,
|
|
@@ -1411,7 +1411,7 @@ var SidebarComponent = vueDefineComponent({
|
|
|
1411
1411
|
provide: function () { return { custom: this.custom }; },
|
|
1412
1412
|
data: function () {
|
|
1413
1413
|
return {
|
|
1414
|
-
|
|
1414
|
+
ej2Instances: new Sidebar({}),
|
|
1415
1415
|
propKeys: properties$7,
|
|
1416
1416
|
models: modelProps$7,
|
|
1417
1417
|
hasChildDirective: false,
|
|
@@ -1621,7 +1621,7 @@ var MenuComponent = vueDefineComponent({
|
|
|
1621
1621
|
provide: function () { return { custom: this.custom }; },
|
|
1622
1622
|
data: function () {
|
|
1623
1623
|
return {
|
|
1624
|
-
|
|
1624
|
+
ej2Instances: new Menu({}),
|
|
1625
1625
|
propKeys: properties$8,
|
|
1626
1626
|
models: modelProps$8,
|
|
1627
1627
|
hasChildDirective: true,
|
|
@@ -1766,7 +1766,7 @@ var AppBarComponent = vueDefineComponent({
|
|
|
1766
1766
|
provide: function () { return { custom: this.custom }; },
|
|
1767
1767
|
data: function () {
|
|
1768
1768
|
return {
|
|
1769
|
-
|
|
1769
|
+
ej2Instances: new AppBar({}),
|
|
1770
1770
|
propKeys: properties$9,
|
|
1771
1771
|
models: modelProps$9,
|
|
1772
1772
|
hasChildDirective: false,
|
|
@@ -1889,8 +1889,8 @@ var StepsPlugin = {
|
|
|
1889
1889
|
* ```html
|
|
1890
1890
|
* <ejs-stepper>
|
|
1891
1891
|
* <e-steps>
|
|
1892
|
-
* <e-step :
|
|
1893
|
-
* <e-step :
|
|
1892
|
+
* <e-step :iconCss='e-icons e-folder' :text='Step 1' />
|
|
1893
|
+
* <e-step :iconCss='e-icons e-folder' :text='Step 2' />
|
|
1894
1894
|
* </e-steps>
|
|
1895
1895
|
* </ejs-stepper>
|
|
1896
1896
|
* ```
|
|
@@ -1939,7 +1939,7 @@ var StepperComponent = vueDefineComponent({
|
|
|
1939
1939
|
provide: function () { return { custom: this.custom }; },
|
|
1940
1940
|
data: function () {
|
|
1941
1941
|
return {
|
|
1942
|
-
|
|
1942
|
+
ej2Instances: new Stepper({}),
|
|
1943
1943
|
propKeys: properties$10,
|
|
1944
1944
|
models: modelProps$10,
|
|
1945
1945
|
hasChildDirective: true,
|