@syncfusion/ej2-vue-navigations 20.2.50 → 20.3.48
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 +36 -0
- package/README.md +14 -0
- package/appbar.d.ts +4 -0
- package/appbar.js +4 -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 +224 -106
- package/dist/es6/ej2-vue-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es5.js +233 -106
- 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 -9
- package/src/accordion/accordion.component.d.ts +0 -1
- package/src/accordion/accordion.component.js +3 -4
- package/src/accordion/items.directive.d.ts +0 -1
- package/src/accordion/items.directive.js +5 -6
- package/src/appbar/appbar.component.d.ts +35 -0
- package/src/appbar/appbar.component.js +142 -0
- package/src/appbar/index.d.ts +1 -0
- package/src/appbar/index.js +1 -0
- package/src/breadcrumb/breadcrumb.component.d.ts +0 -1
- package/src/breadcrumb/breadcrumb.component.js +3 -4
- package/src/breadcrumb/items.directive.d.ts +0 -1
- package/src/breadcrumb/items.directive.js +5 -6
- package/src/carousel/carousel.component.d.ts +0 -1
- package/src/carousel/carousel.component.js +4 -5
- package/src/carousel/items.directive.d.ts +0 -1
- package/src/carousel/items.directive.js +5 -6
- package/src/context-menu/contextmenu.component.d.ts +0 -1
- package/src/context-menu/contextmenu.component.js +3 -4
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/menu/items.directive.d.ts +0 -1
- package/src/menu/items.directive.js +5 -6
- package/src/menu/menu.component.d.ts +0 -1
- package/src/menu/menu.component.js +3 -4
- package/src/sidebar/sidebar.component.d.ts +0 -1
- package/src/sidebar/sidebar.component.js +3 -4
- package/src/tab/items.directive.d.ts +0 -1
- package/src/tab/items.directive.js +5 -6
- package/src/tab/tab.component.d.ts +1 -1
- package/src/tab/tab.component.js +6 -4
- package/src/toolbar/items.directive.d.ts +0 -1
- package/src/toolbar/items.directive.js +5 -6
- package/src/toolbar/toolbar.component.d.ts +0 -1
- package/src/toolbar/toolbar.component.js +3 -4
- package/src/treeview/treeview.component.d.ts +0 -1
- package/src/treeview/treeview.component.js +3 -4
- package/styles/accordion/bootstrap-dark.css +1 -0
- package/styles/accordion/bootstrap.css +1 -0
- package/styles/accordion/bootstrap4.css +1 -0
- package/styles/accordion/bootstrap5-dark.css +2 -0
- package/styles/accordion/bootstrap5.css +2 -0
- package/styles/accordion/fabric-dark.css +1 -0
- package/styles/accordion/fabric.css +1 -0
- package/styles/accordion/fluent-dark.css +1 -0
- package/styles/accordion/fluent.css +1 -0
- package/styles/accordion/highcontrast-light.css +1 -0
- package/styles/accordion/highcontrast.css +1 -0
- package/styles/accordion/material-dark.css +1 -0
- package/styles/accordion/material.css +1 -0
- package/styles/accordion/tailwind-dark.css +1 -0
- package/styles/accordion/tailwind.css +1 -0
- package/styles/appbar/bootstrap-dark.css +244 -0
- package/styles/appbar/bootstrap-dark.scss +1 -0
- package/styles/appbar/bootstrap.css +244 -0
- package/styles/appbar/bootstrap.scss +1 -0
- package/styles/appbar/bootstrap4.css +244 -0
- package/styles/appbar/bootstrap4.scss +1 -0
- package/styles/appbar/bootstrap5-dark.css +244 -0
- package/styles/appbar/bootstrap5-dark.scss +1 -0
- package/styles/appbar/bootstrap5.css +244 -0
- package/styles/appbar/bootstrap5.scss +1 -0
- package/styles/appbar/fabric-dark.css +244 -0
- package/styles/appbar/fabric-dark.scss +1 -0
- package/styles/appbar/fabric.css +244 -0
- package/styles/appbar/fabric.scss +1 -0
- package/styles/appbar/fluent-dark.css +244 -0
- package/styles/appbar/fluent-dark.scss +1 -0
- package/styles/appbar/fluent.css +244 -0
- package/styles/appbar/fluent.scss +1 -0
- package/styles/appbar/highcontrast-light.css +244 -0
- package/styles/appbar/highcontrast-light.scss +1 -0
- package/styles/appbar/highcontrast.css +244 -0
- package/styles/appbar/highcontrast.scss +1 -0
- package/styles/appbar/material-dark.css +245 -0
- package/styles/appbar/material-dark.scss +1 -0
- package/styles/appbar/material.css +245 -0
- package/styles/appbar/material.scss +1 -0
- package/styles/appbar/tailwind-dark.css +245 -0
- package/styles/appbar/tailwind-dark.scss +1 -0
- package/styles/appbar/tailwind.css +245 -0
- package/styles/appbar/tailwind.scss +1 -0
- package/styles/bootstrap-dark.css +340 -21
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +345 -26
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +348 -29
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +360 -36
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +360 -36
- package/styles/bootstrap5.scss +1 -0
- package/styles/carousel/bootstrap-dark.css +46 -11
- package/styles/carousel/bootstrap.css +46 -11
- package/styles/carousel/bootstrap4.css +46 -11
- package/styles/carousel/bootstrap5-dark.css +46 -11
- package/styles/carousel/bootstrap5.css +46 -11
- package/styles/carousel/fabric-dark.css +46 -11
- package/styles/carousel/fabric.css +46 -11
- package/styles/carousel/fluent-dark.css +46 -11
- package/styles/carousel/fluent.css +46 -11
- package/styles/carousel/highcontrast-light.css +46 -11
- package/styles/carousel/highcontrast.css +46 -11
- package/styles/carousel/material-dark.css +46 -11
- package/styles/carousel/material.css +46 -11
- package/styles/carousel/tailwind-dark.css +46 -11
- package/styles/carousel/tailwind.css +46 -11
- package/styles/context-menu/bootstrap4.css +2 -2
- package/styles/context-menu/bootstrap5-dark.css +3 -3
- package/styles/context-menu/bootstrap5.css +3 -3
- package/styles/context-menu/fluent-dark.css +1 -1
- package/styles/context-menu/fluent.css +1 -1
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +340 -21
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +340 -21
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +352 -33
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +352 -33
- package/styles/fluent.scss +1 -0
- package/styles/h-scroll/bootstrap-dark.css +0 -2
- package/styles/h-scroll/bootstrap.css +0 -2
- package/styles/h-scroll/bootstrap4.css +0 -2
- package/styles/h-scroll/bootstrap5-dark.css +0 -2
- package/styles/h-scroll/bootstrap5.css +0 -2
- package/styles/h-scroll/fabric-dark.css +0 -2
- package/styles/h-scroll/fabric.css +0 -2
- package/styles/h-scroll/fluent-dark.css +0 -2
- package/styles/h-scroll/fluent.css +0 -2
- package/styles/h-scroll/highcontrast-light.css +0 -2
- package/styles/h-scroll/highcontrast.css +0 -2
- package/styles/h-scroll/material-dark.css +0 -2
- package/styles/h-scroll/material.css +0 -2
- package/styles/h-scroll/tailwind-dark.css +0 -2
- package/styles/h-scroll/tailwind.css +0 -2
- package/styles/highcontrast-light.css +339 -20
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +339 -20
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +339 -20
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +339 -20
- package/styles/material.scss +1 -0
- package/styles/menu/bootstrap-dark.css +22 -0
- package/styles/menu/bootstrap.css +22 -0
- package/styles/menu/bootstrap4.css +22 -0
- package/styles/menu/bootstrap5-dark.css +23 -1
- package/styles/menu/bootstrap5.css +23 -1
- package/styles/menu/fabric-dark.css +22 -0
- package/styles/menu/fabric.css +22 -0
- package/styles/menu/fluent-dark.css +23 -1
- package/styles/menu/fluent.css +23 -1
- package/styles/menu/highcontrast-light.css +22 -0
- package/styles/menu/highcontrast.css +22 -0
- package/styles/menu/material-dark.css +22 -0
- package/styles/menu/material.css +22 -0
- package/styles/menu/tailwind-dark.css +23 -1
- package/styles/menu/tailwind.css +23 -1
- package/styles/pager/bootstrap-dark.css +5 -3
- package/styles/pager/bootstrap.css +10 -8
- package/styles/pager/bootstrap4.css +11 -9
- package/styles/pager/bootstrap5-dark.css +14 -12
- package/styles/pager/bootstrap5.css +14 -12
- package/styles/pager/fabric-dark.css +5 -3
- package/styles/pager/fabric.css +5 -3
- package/styles/pager/fluent-dark.css +6 -4
- package/styles/pager/fluent.css +6 -4
- package/styles/pager/highcontrast-light.css +4 -2
- package/styles/pager/highcontrast.css +4 -2
- package/styles/pager/material-dark.css +4 -2
- package/styles/pager/material.css +4 -2
- package/styles/pager/tailwind-dark.css +19 -17
- package/styles/pager/tailwind.css +19 -17
- 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 +4 -0
- package/styles/sidebar/fluent.css +4 -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 +5 -2
- package/styles/tab/bootstrap5.css +5 -2
- package/styles/tab/fabric-dark.css +1 -1
- package/styles/tab/fabric.css +1 -1
- package/styles/tab/fluent-dark.css +5 -5
- package/styles/tab/fluent.css +5 -5
- package/styles/tab/highcontrast-light.css +1 -1
- package/styles/tab/highcontrast.css +1 -1
- package/styles/tab/material-dark.css +1 -1
- package/styles/tab/material.css +1 -1
- package/styles/tab/tailwind-dark.css +1 -1
- package/styles/tab/tailwind.css +1 -1
- package/styles/tailwind-dark.css +359 -38
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +359 -38
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/bootstrap-dark.css +10 -2
- package/styles/toolbar/bootstrap.css +10 -2
- package/styles/toolbar/bootstrap4.css +10 -2
- package/styles/toolbar/bootstrap5-dark.css +12 -3
- package/styles/toolbar/bootstrap5.css +12 -3
- package/styles/toolbar/fabric-dark.css +10 -2
- package/styles/toolbar/fabric.css +10 -2
- package/styles/toolbar/fluent-dark.css +15 -7
- package/styles/toolbar/fluent.css +15 -7
- package/styles/toolbar/highcontrast-light.css +10 -2
- package/styles/toolbar/highcontrast.css +10 -2
- package/styles/toolbar/material-dark.css +10 -2
- package/styles/toolbar/material.css +10 -2
- package/styles/toolbar/tailwind-dark.css +11 -3
- package/styles/toolbar/tailwind.css +11 -3
- package/styles/treeview/bootstrap-dark.css +6 -0
- package/styles/treeview/bootstrap.css +6 -0
- package/styles/treeview/bootstrap4.css +6 -0
- package/styles/treeview/bootstrap5-dark.css +6 -0
- package/styles/treeview/bootstrap5.css +6 -0
- package/styles/treeview/fabric-dark.css +6 -0
- package/styles/treeview/fabric.css +6 -0
- package/styles/treeview/fluent-dark.css +6 -0
- package/styles/treeview/fluent.css +6 -0
- package/styles/treeview/highcontrast-light.css +6 -0
- package/styles/treeview/highcontrast.css +6 -0
- package/styles/treeview/material-dark.css +6 -0
- package/styles/treeview/material.css +6 -0
- package/styles/treeview/tailwind-dark.css +7 -0
- package/styles/treeview/tailwind.css +7 -0
- package/styles/v-scroll/bootstrap-dark.css +0 -2
- package/styles/v-scroll/bootstrap.css +0 -2
- package/styles/v-scroll/bootstrap4.css +0 -2
- package/styles/v-scroll/bootstrap5-dark.css +0 -2
- package/styles/v-scroll/bootstrap5.css +0 -2
- package/styles/v-scroll/fabric-dark.css +0 -2
- package/styles/v-scroll/fabric.css +0 -2
- package/styles/v-scroll/fluent-dark.css +0 -2
- package/styles/v-scroll/fluent.css +0 -2
- package/styles/v-scroll/highcontrast-light.css +0 -2
- package/styles/v-scroll/highcontrast.css +0 -2
- package/styles/v-scroll/material-dark.css +0 -2
- package/styles/v-scroll/material.css +0 -2
- package/styles/v-scroll/tailwind-dark.css +0 -2
- package/styles/v-scroll/tailwind.css +0 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Accordion, Breadcrumb, Carousel, ContextMenu, Menu, Sidebar, Tab, Toolbar, TreeView } from '@syncfusion/ej2-navigations';
|
|
2
|
-
import { ComponentBase, EJComponentDecorator, allVue, getProps, gh } from '@syncfusion/ej2-vue-base';
|
|
1
|
+
import { Accordion, AppBar, Breadcrumb, Carousel, ContextMenu, Menu, Sidebar, Tab, Toolbar, TreeView } from '@syncfusion/ej2-navigations';
|
|
2
|
+
import { ComponentBase, EJComponentDecorator, allVue, getProps, gh, isExecute } from '@syncfusion/ej2-vue-base';
|
|
3
3
|
import { Vue } from 'vue-class-component';
|
|
4
4
|
import { getValue, isNullOrUndefined, isUndefined } from '@syncfusion/ej2-base';
|
|
5
5
|
import Vue$1 from 'vue';
|
|
@@ -24,7 +24,6 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
|
|
|
24
24
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
25
25
|
};
|
|
26
26
|
import { Options } from 'vue-class-component';
|
|
27
|
-
var isExecute = gh ? false : true;
|
|
28
27
|
var vueImport;
|
|
29
28
|
if (!isExecute || parseInt(allVue.version) < 3) {
|
|
30
29
|
vueImport = Vue;
|
|
@@ -38,18 +37,18 @@ var AccordionItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
38
37
|
return _super.call(this, arguments) || this;
|
|
39
38
|
}
|
|
40
39
|
AccordionItemsDirective.prototype.render = function (createElement) {
|
|
41
|
-
if (
|
|
42
|
-
var h = gh
|
|
40
|
+
if (!isExecute) {
|
|
41
|
+
var h = !isExecute ? gh : createElement;
|
|
43
42
|
var slots = null;
|
|
44
43
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
45
|
-
slots =
|
|
44
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
46
45
|
}
|
|
47
46
|
return h('div', { class: 'e-directive' }, slots);
|
|
48
47
|
}
|
|
49
48
|
return;
|
|
50
49
|
};
|
|
51
50
|
AccordionItemsDirective.prototype.updated = function () {
|
|
52
|
-
if (
|
|
51
|
+
if (!isExecute && this.custom) {
|
|
53
52
|
this.custom();
|
|
54
53
|
}
|
|
55
54
|
};
|
|
@@ -140,7 +139,6 @@ for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
|
140
139
|
var props_1 = modelProps_1[_i];
|
|
141
140
|
emitProbs.push('update:' + props_1);
|
|
142
141
|
}
|
|
143
|
-
var isExecute$1 = gh ? false : true;
|
|
144
142
|
/**
|
|
145
143
|
* Represents the VueJS Accordion Component.
|
|
146
144
|
* ```html
|
|
@@ -157,7 +155,7 @@ var AccordionComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
157
155
|
_this.hasInjectedModules = false;
|
|
158
156
|
_this.tagMapper = { "e-accordionitems": "e-accordionitem" };
|
|
159
157
|
_this.tagNameMapper = { "e-accordionitems": "e-items" };
|
|
160
|
-
_this.isVue3 = !isExecute
|
|
158
|
+
_this.isVue3 = !isExecute;
|
|
161
159
|
_this.ej2Instances = new Accordion({});
|
|
162
160
|
_this.ej2Instances._trigger = _this.ej2Instances.trigger;
|
|
163
161
|
_this.ej2Instances.trigger = _this.trigger;
|
|
@@ -217,14 +215,14 @@ var AccordionComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
217
215
|
}
|
|
218
216
|
};
|
|
219
217
|
AccordionComponent.prototype.trigger = function (eventName, eventProp, successHandler) {
|
|
220
|
-
if (!isExecute
|
|
218
|
+
if (!isExecute) {
|
|
221
219
|
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
222
220
|
}
|
|
223
221
|
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
|
|
224
222
|
var key = this.models.toString().match(/checked|value/) || [];
|
|
225
223
|
var propKey = key[0];
|
|
226
224
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
227
|
-
if (!isExecute
|
|
225
|
+
if (!isExecute) {
|
|
228
226
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
229
227
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
230
228
|
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
@@ -241,7 +239,7 @@ var AccordionComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
241
239
|
var key = this.models.toString().match(/currentView|selectedDate/) || [];
|
|
242
240
|
var propKey = key[0];
|
|
243
241
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
244
|
-
if (!isExecute
|
|
242
|
+
if (!isExecute) {
|
|
245
243
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
246
244
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
247
245
|
}
|
|
@@ -256,10 +254,10 @@ var AccordionComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
256
254
|
}
|
|
257
255
|
};
|
|
258
256
|
AccordionComponent.prototype.render = function (createElement) {
|
|
259
|
-
var h = gh
|
|
257
|
+
var h = !isExecute ? gh : createElement;
|
|
260
258
|
var slots = null;
|
|
261
259
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
262
|
-
slots =
|
|
260
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
263
261
|
}
|
|
264
262
|
return h('div', slots);
|
|
265
263
|
};
|
|
@@ -290,7 +288,7 @@ var AccordionComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
290
288
|
model: {
|
|
291
289
|
event: 'modelchanged'
|
|
292
290
|
}
|
|
293
|
-
}, isExecute
|
|
291
|
+
}, isExecute)
|
|
294
292
|
,Options({
|
|
295
293
|
props: props,
|
|
296
294
|
watch: watch,
|
|
@@ -333,9 +331,8 @@ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
333
331
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
334
332
|
};
|
|
335
333
|
// {{VueImport}}
|
|
336
|
-
var isExecute$2 = gh ? false : true;
|
|
337
334
|
var vueImport$1;
|
|
338
|
-
if (!isExecute
|
|
335
|
+
if (!isExecute || parseInt(allVue.version) < 3) {
|
|
339
336
|
vueImport$1 = Vue;
|
|
340
337
|
}
|
|
341
338
|
else {
|
|
@@ -347,18 +344,18 @@ var ItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
347
344
|
return _super.call(this, arguments) || this;
|
|
348
345
|
}
|
|
349
346
|
ItemsDirective.prototype.render = function (createElement) {
|
|
350
|
-
if (
|
|
351
|
-
var h = gh
|
|
347
|
+
if (!isExecute) {
|
|
348
|
+
var h = !isExecute ? gh : createElement;
|
|
352
349
|
var slots = null;
|
|
353
350
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
354
|
-
slots =
|
|
351
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
355
352
|
}
|
|
356
353
|
return h('div', { class: 'e-directive' }, slots);
|
|
357
354
|
}
|
|
358
355
|
return;
|
|
359
356
|
};
|
|
360
357
|
ItemsDirective.prototype.updated = function () {
|
|
361
|
-
if (
|
|
358
|
+
if (!isExecute && this.custom) {
|
|
362
359
|
this.custom();
|
|
363
360
|
}
|
|
364
361
|
};
|
|
@@ -366,7 +363,7 @@ var ItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
366
363
|
return 'e-items';
|
|
367
364
|
};
|
|
368
365
|
ItemsDirective = __decorate$2([
|
|
369
|
-
EJComponentDecorator({}, isExecute
|
|
366
|
+
EJComponentDecorator({}, isExecute)
|
|
370
367
|
,Options({
|
|
371
368
|
inject: {
|
|
372
369
|
custom: {
|
|
@@ -407,7 +404,7 @@ var ItemDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
407
404
|
return 'e-item';
|
|
408
405
|
};
|
|
409
406
|
ItemDirective = __decorate$2([
|
|
410
|
-
EJComponentDecorator({}, isExecute
|
|
407
|
+
EJComponentDecorator({}, isExecute)
|
|
411
408
|
], ItemDirective);
|
|
412
409
|
return ItemDirective;
|
|
413
410
|
}(vueImport$1));
|
|
@@ -449,7 +446,6 @@ for (var _i$1 = 0, modelProps_1$1 = modelProps$1; _i$1 < modelProps_1$1.length;
|
|
|
449
446
|
var props_1$1 = modelProps_1$1[_i$1];
|
|
450
447
|
emitProbs$1.push('update:' + props_1$1);
|
|
451
448
|
}
|
|
452
|
-
var isExecute$3 = gh ? false : true;
|
|
453
449
|
/**
|
|
454
450
|
* Represents the VueJS Toolbar Component.
|
|
455
451
|
* ```html
|
|
@@ -466,7 +462,7 @@ var ToolbarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
466
462
|
_this.hasInjectedModules = false;
|
|
467
463
|
_this.tagMapper = { "e-items": "e-item" };
|
|
468
464
|
_this.tagNameMapper = {};
|
|
469
|
-
_this.isVue3 = !isExecute
|
|
465
|
+
_this.isVue3 = !isExecute;
|
|
470
466
|
_this.ej2Instances = new Toolbar({});
|
|
471
467
|
_this.bindProperties();
|
|
472
468
|
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
@@ -524,10 +520,10 @@ var ToolbarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
524
520
|
}
|
|
525
521
|
};
|
|
526
522
|
ToolbarComponent.prototype.render = function (createElement) {
|
|
527
|
-
var h = gh
|
|
523
|
+
var h = !isExecute ? gh : createElement;
|
|
528
524
|
var slots = null;
|
|
529
525
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
530
|
-
slots =
|
|
526
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
531
527
|
}
|
|
532
528
|
return h('div', slots);
|
|
533
529
|
};
|
|
@@ -555,7 +551,7 @@ var ToolbarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
555
551
|
ToolbarComponent = __decorate$3([
|
|
556
552
|
EJComponentDecorator({
|
|
557
553
|
props: properties$1
|
|
558
|
-
}, isExecute
|
|
554
|
+
}, isExecute)
|
|
559
555
|
,Options({
|
|
560
556
|
props: props,
|
|
561
557
|
watch: watch,
|
|
@@ -609,7 +605,6 @@ for (var _i$2 = 0, modelProps_1$2 = modelProps$2; _i$2 < modelProps_1$2.length;
|
|
|
609
605
|
var props_1$2 = modelProps_1$2[_i$2];
|
|
610
606
|
emitProbs$2.push('update:' + props_1$2);
|
|
611
607
|
}
|
|
612
|
-
var isExecute$4 = gh ? false : true;
|
|
613
608
|
/**
|
|
614
609
|
* Represents the Essential JS 2 VueJS ContextMenu Component.
|
|
615
610
|
* ```html
|
|
@@ -627,7 +622,7 @@ var ContextMenuComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
627
622
|
_this.hasInjectedModules = false;
|
|
628
623
|
_this.tagMapper = {};
|
|
629
624
|
_this.tagNameMapper = {};
|
|
630
|
-
_this.isVue3 = !isExecute
|
|
625
|
+
_this.isVue3 = !isExecute;
|
|
631
626
|
_this.ej2Instances = new ContextMenu({});
|
|
632
627
|
_this.bindProperties();
|
|
633
628
|
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
@@ -685,10 +680,10 @@ var ContextMenuComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
685
680
|
}
|
|
686
681
|
};
|
|
687
682
|
ContextMenuComponent.prototype.render = function (createElement) {
|
|
688
|
-
var h = gh
|
|
683
|
+
var h = !isExecute ? gh : createElement;
|
|
689
684
|
var slots = null;
|
|
690
685
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
691
|
-
slots =
|
|
686
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
692
687
|
}
|
|
693
688
|
return h('ul', slots);
|
|
694
689
|
};
|
|
@@ -728,7 +723,7 @@ var ContextMenuComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
728
723
|
ContextMenuComponent = __decorate$4([
|
|
729
724
|
EJComponentDecorator({
|
|
730
725
|
props: properties$2
|
|
731
|
-
}, isExecute
|
|
726
|
+
}, isExecute)
|
|
732
727
|
,Options({
|
|
733
728
|
props: props,
|
|
734
729
|
watch: watch,
|
|
@@ -769,9 +764,8 @@ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
769
764
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
770
765
|
};
|
|
771
766
|
// {{VueImport}}
|
|
772
|
-
var isExecute$5 = gh ? false : true;
|
|
773
767
|
var vueImport$2;
|
|
774
|
-
if (!isExecute
|
|
768
|
+
if (!isExecute || parseInt(allVue.version) < 3) {
|
|
775
769
|
vueImport$2 = Vue;
|
|
776
770
|
}
|
|
777
771
|
else {
|
|
@@ -783,18 +777,18 @@ var BreadcrumbItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
783
777
|
return _super.call(this, arguments) || this;
|
|
784
778
|
}
|
|
785
779
|
BreadcrumbItemsDirective.prototype.render = function (createElement) {
|
|
786
|
-
if (
|
|
787
|
-
var h = gh
|
|
780
|
+
if (!isExecute) {
|
|
781
|
+
var h = !isExecute ? gh : createElement;
|
|
788
782
|
var slots = null;
|
|
789
783
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
790
|
-
slots =
|
|
784
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
791
785
|
}
|
|
792
786
|
return h('div', { class: 'e-directive' }, slots);
|
|
793
787
|
}
|
|
794
788
|
return;
|
|
795
789
|
};
|
|
796
790
|
BreadcrumbItemsDirective.prototype.updated = function () {
|
|
797
|
-
if (
|
|
791
|
+
if (!isExecute && this.custom) {
|
|
798
792
|
this.custom();
|
|
799
793
|
}
|
|
800
794
|
};
|
|
@@ -802,7 +796,7 @@ var BreadcrumbItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
802
796
|
return 'e-breadcrumb-items';
|
|
803
797
|
};
|
|
804
798
|
BreadcrumbItemsDirective = __decorate$5([
|
|
805
|
-
EJComponentDecorator({}, isExecute
|
|
799
|
+
EJComponentDecorator({}, isExecute)
|
|
806
800
|
,Options({
|
|
807
801
|
inject: {
|
|
808
802
|
custom: {
|
|
@@ -843,7 +837,7 @@ var BreadcrumbItemDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
843
837
|
return 'e-breadcrumb-item';
|
|
844
838
|
};
|
|
845
839
|
BreadcrumbItemDirective = __decorate$5([
|
|
846
|
-
EJComponentDecorator({}, isExecute
|
|
840
|
+
EJComponentDecorator({}, isExecute)
|
|
847
841
|
], BreadcrumbItemDirective);
|
|
848
842
|
return BreadcrumbItemDirective;
|
|
849
843
|
}(vueImport$2));
|
|
@@ -885,7 +879,6 @@ for (var _i$3 = 0, modelProps_1$3 = modelProps$3; _i$3 < modelProps_1$3.length;
|
|
|
885
879
|
var props_1$3 = modelProps_1$3[_i$3];
|
|
886
880
|
emitProbs$3.push('update:' + props_1$3);
|
|
887
881
|
}
|
|
888
|
-
var isExecute$6 = gh ? false : true;
|
|
889
882
|
/**
|
|
890
883
|
* Represents the VueJS Breadcrumb Component.
|
|
891
884
|
* ```html
|
|
@@ -902,7 +895,7 @@ var BreadcrumbComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
902
895
|
_this.hasInjectedModules = false;
|
|
903
896
|
_this.tagMapper = { "e-breadcrumb-items": "e-breadcrumb-item" };
|
|
904
897
|
_this.tagNameMapper = { "e-breadcrumb-items": "e-items" };
|
|
905
|
-
_this.isVue3 = !isExecute
|
|
898
|
+
_this.isVue3 = !isExecute;
|
|
906
899
|
_this.ej2Instances = new Breadcrumb({});
|
|
907
900
|
_this.ej2Instances._trigger = _this.ej2Instances.trigger;
|
|
908
901
|
_this.ej2Instances.trigger = _this.trigger;
|
|
@@ -962,14 +955,14 @@ var BreadcrumbComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
962
955
|
}
|
|
963
956
|
};
|
|
964
957
|
BreadcrumbComponent.prototype.trigger = function (eventName, eventProp, successHandler) {
|
|
965
|
-
if (!isExecute
|
|
958
|
+
if (!isExecute) {
|
|
966
959
|
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
967
960
|
}
|
|
968
961
|
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
|
|
969
962
|
var key = this.models.toString().match(/checked|value/) || [];
|
|
970
963
|
var propKey = key[0];
|
|
971
964
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
972
|
-
if (!isExecute
|
|
965
|
+
if (!isExecute) {
|
|
973
966
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
974
967
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
975
968
|
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
@@ -986,7 +979,7 @@ var BreadcrumbComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
986
979
|
var key = this.models.toString().match(/currentView|selectedDate/) || [];
|
|
987
980
|
var propKey = key[0];
|
|
988
981
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
989
|
-
if (!isExecute
|
|
982
|
+
if (!isExecute) {
|
|
990
983
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
991
984
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
992
985
|
}
|
|
@@ -1001,10 +994,10 @@ var BreadcrumbComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1001
994
|
}
|
|
1002
995
|
};
|
|
1003
996
|
BreadcrumbComponent.prototype.render = function (createElement) {
|
|
1004
|
-
var h = gh
|
|
997
|
+
var h = !isExecute ? gh : createElement;
|
|
1005
998
|
var slots = null;
|
|
1006
999
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
1007
|
-
slots =
|
|
1000
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
1008
1001
|
}
|
|
1009
1002
|
return h('nav', slots);
|
|
1010
1003
|
};
|
|
@@ -1017,7 +1010,7 @@ var BreadcrumbComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1017
1010
|
model: {
|
|
1018
1011
|
event: 'modelchanged'
|
|
1019
1012
|
}
|
|
1020
|
-
}, isExecute
|
|
1013
|
+
}, isExecute)
|
|
1021
1014
|
,Options({
|
|
1022
1015
|
props: props,
|
|
1023
1016
|
watch: watch,
|
|
@@ -1060,9 +1053,8 @@ var __decorate$7 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
1060
1053
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1061
1054
|
};
|
|
1062
1055
|
// {{VueImport}}
|
|
1063
|
-
var isExecute$7 = gh ? false : true;
|
|
1064
1056
|
var vueImport$3;
|
|
1065
|
-
if (!isExecute
|
|
1057
|
+
if (!isExecute || parseInt(allVue.version) < 3) {
|
|
1066
1058
|
vueImport$3 = Vue;
|
|
1067
1059
|
}
|
|
1068
1060
|
else {
|
|
@@ -1074,18 +1066,18 @@ var CarouselItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
1074
1066
|
return _super.call(this, arguments) || this;
|
|
1075
1067
|
}
|
|
1076
1068
|
CarouselItemsDirective.prototype.render = function (createElement) {
|
|
1077
|
-
if (
|
|
1078
|
-
var h = gh
|
|
1069
|
+
if (!isExecute) {
|
|
1070
|
+
var h = !isExecute ? gh : createElement;
|
|
1079
1071
|
var slots = null;
|
|
1080
1072
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
1081
|
-
slots =
|
|
1073
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
1082
1074
|
}
|
|
1083
1075
|
return h('div', { class: 'e-directive' }, slots);
|
|
1084
1076
|
}
|
|
1085
1077
|
return;
|
|
1086
1078
|
};
|
|
1087
1079
|
CarouselItemsDirective.prototype.updated = function () {
|
|
1088
|
-
if (
|
|
1080
|
+
if (!isExecute && this.custom) {
|
|
1089
1081
|
this.custom();
|
|
1090
1082
|
}
|
|
1091
1083
|
};
|
|
@@ -1093,7 +1085,7 @@ var CarouselItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
1093
1085
|
return 'e-carousel-items';
|
|
1094
1086
|
};
|
|
1095
1087
|
CarouselItemsDirective = __decorate$7([
|
|
1096
|
-
EJComponentDecorator({}, isExecute
|
|
1088
|
+
EJComponentDecorator({}, isExecute)
|
|
1097
1089
|
,Options({
|
|
1098
1090
|
inject: {
|
|
1099
1091
|
custom: {
|
|
@@ -1134,7 +1126,7 @@ var CarouselItemDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
1134
1126
|
return 'e-carousel-item';
|
|
1135
1127
|
};
|
|
1136
1128
|
CarouselItemDirective = __decorate$7([
|
|
1137
|
-
EJComponentDecorator({}, isExecute
|
|
1129
|
+
EJComponentDecorator({}, isExecute)
|
|
1138
1130
|
], CarouselItemDirective);
|
|
1139
1131
|
return CarouselItemDirective;
|
|
1140
1132
|
}(vueImport$3));
|
|
@@ -1165,7 +1157,7 @@ var __decorate$8 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
1165
1157
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1166
1158
|
};
|
|
1167
1159
|
// {{VueImport}}
|
|
1168
|
-
var properties$4 = ['isLazyUpdate', 'plugins', 'animationEffect', 'autoPlay', 'buttonsVisibility', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableTouchSwipe', 'height', 'htmlAttributes', 'indicatorsTemplate', 'interval', 'itemTemplate', 'items', 'locale', 'loop', 'nextButtonTemplate', 'pauseOnHover', 'playButtonTemplate', 'previousButtonTemplate', 'selectedIndex', 'showIndicators', 'showPlayButton', 'width', 'slideChanged', 'slideChanging'];
|
|
1160
|
+
var properties$4 = ['isLazyUpdate', 'plugins', 'animationEffect', 'autoPlay', 'buttonsVisibility', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableTouchSwipe', 'height', 'htmlAttributes', 'indicatorsTemplate', 'interval', 'itemTemplate', 'items', 'locale', 'loop', 'nextButtonTemplate', 'partialVisible', 'pauseOnHover', 'playButtonTemplate', 'previousButtonTemplate', 'selectedIndex', 'showIndicators', 'showPlayButton', 'width', 'slideChanged', 'slideChanging'];
|
|
1169
1161
|
var modelProps$4 = ['selectedIndex'];
|
|
1170
1162
|
var testProp$4 = getProps({ props: properties$4 });
|
|
1171
1163
|
var props$4 = testProp$4[0];
|
|
@@ -1176,7 +1168,6 @@ for (var _i$4 = 0, modelProps_1$4 = modelProps$4; _i$4 < modelProps_1$4.length;
|
|
|
1176
1168
|
var props_1$4 = modelProps_1$4[_i$4];
|
|
1177
1169
|
emitProbs$4.push('update:' + props_1$4);
|
|
1178
1170
|
}
|
|
1179
|
-
var isExecute$8 = gh ? false : true;
|
|
1180
1171
|
/**
|
|
1181
1172
|
* Represents the VueJS Carousel Component.
|
|
1182
1173
|
* ```html
|
|
@@ -1193,7 +1184,7 @@ var CarouselComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1193
1184
|
_this.hasInjectedModules = false;
|
|
1194
1185
|
_this.tagMapper = { "e-carousel-items": "e-carousel-item" };
|
|
1195
1186
|
_this.tagNameMapper = { "e-carousel-items": "e-items" };
|
|
1196
|
-
_this.isVue3 = !isExecute
|
|
1187
|
+
_this.isVue3 = !isExecute;
|
|
1197
1188
|
_this.ej2Instances = new Carousel({});
|
|
1198
1189
|
_this.ej2Instances._trigger = _this.ej2Instances.trigger;
|
|
1199
1190
|
_this.ej2Instances.trigger = _this.trigger;
|
|
@@ -1253,14 +1244,14 @@ var CarouselComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1253
1244
|
}
|
|
1254
1245
|
};
|
|
1255
1246
|
CarouselComponent.prototype.trigger = function (eventName, eventProp, successHandler) {
|
|
1256
|
-
if (!isExecute
|
|
1247
|
+
if (!isExecute) {
|
|
1257
1248
|
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
1258
1249
|
}
|
|
1259
1250
|
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
|
|
1260
1251
|
var key = this.models.toString().match(/checked|value/) || [];
|
|
1261
1252
|
var propKey = key[0];
|
|
1262
1253
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
1263
|
-
if (!isExecute
|
|
1254
|
+
if (!isExecute) {
|
|
1264
1255
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
1265
1256
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
1266
1257
|
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
@@ -1277,7 +1268,7 @@ var CarouselComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1277
1268
|
var key = this.models.toString().match(/currentView|selectedDate/) || [];
|
|
1278
1269
|
var propKey = key[0];
|
|
1279
1270
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
1280
|
-
if (!isExecute
|
|
1271
|
+
if (!isExecute) {
|
|
1281
1272
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
1282
1273
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
1283
1274
|
}
|
|
@@ -1292,10 +1283,10 @@ var CarouselComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1292
1283
|
}
|
|
1293
1284
|
};
|
|
1294
1285
|
CarouselComponent.prototype.render = function (createElement) {
|
|
1295
|
-
var h = gh
|
|
1286
|
+
var h = !isExecute ? gh : createElement;
|
|
1296
1287
|
var slots = null;
|
|
1297
1288
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
1298
|
-
slots =
|
|
1289
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
1299
1290
|
}
|
|
1300
1291
|
return h('div', slots);
|
|
1301
1292
|
};
|
|
@@ -1320,7 +1311,7 @@ var CarouselComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1320
1311
|
model: {
|
|
1321
1312
|
event: 'modelchanged'
|
|
1322
1313
|
}
|
|
1323
|
-
}, isExecute
|
|
1314
|
+
}, isExecute)
|
|
1324
1315
|
,Options({
|
|
1325
1316
|
props: props,
|
|
1326
1317
|
watch: watch,
|
|
@@ -1363,9 +1354,8 @@ var __decorate$9 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
1363
1354
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1364
1355
|
};
|
|
1365
1356
|
// {{VueImport}}
|
|
1366
|
-
var isExecute$9 = gh ? false : true;
|
|
1367
1357
|
var vueImport$4;
|
|
1368
|
-
if (!isExecute
|
|
1358
|
+
if (!isExecute || parseInt(allVue.version) < 3) {
|
|
1369
1359
|
vueImport$4 = Vue;
|
|
1370
1360
|
}
|
|
1371
1361
|
else {
|
|
@@ -1377,18 +1367,18 @@ var TabItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
1377
1367
|
return _super.call(this, arguments) || this;
|
|
1378
1368
|
}
|
|
1379
1369
|
TabItemsDirective.prototype.render = function (createElement) {
|
|
1380
|
-
if (
|
|
1381
|
-
var h = gh
|
|
1370
|
+
if (!isExecute) {
|
|
1371
|
+
var h = !isExecute ? gh : createElement;
|
|
1382
1372
|
var slots = null;
|
|
1383
1373
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
1384
|
-
slots =
|
|
1374
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
1385
1375
|
}
|
|
1386
1376
|
return h('div', { class: 'e-directive' }, slots);
|
|
1387
1377
|
}
|
|
1388
1378
|
return;
|
|
1389
1379
|
};
|
|
1390
1380
|
TabItemsDirective.prototype.updated = function () {
|
|
1391
|
-
if (
|
|
1381
|
+
if (!isExecute && this.custom) {
|
|
1392
1382
|
this.custom();
|
|
1393
1383
|
}
|
|
1394
1384
|
};
|
|
@@ -1396,7 +1386,7 @@ var TabItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
1396
1386
|
return 'e-tabitems';
|
|
1397
1387
|
};
|
|
1398
1388
|
TabItemsDirective = __decorate$9([
|
|
1399
|
-
EJComponentDecorator({}, isExecute
|
|
1389
|
+
EJComponentDecorator({}, isExecute)
|
|
1400
1390
|
,Options({
|
|
1401
1391
|
inject: {
|
|
1402
1392
|
custom: {
|
|
@@ -1437,7 +1427,7 @@ var TabItemDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
1437
1427
|
return 'e-tabitem';
|
|
1438
1428
|
};
|
|
1439
1429
|
TabItemDirective = __decorate$9([
|
|
1440
|
-
EJComponentDecorator({}, isExecute
|
|
1430
|
+
EJComponentDecorator({}, isExecute)
|
|
1441
1431
|
], TabItemDirective);
|
|
1442
1432
|
return TabItemDirective;
|
|
1443
1433
|
}(vueImport$4));
|
|
@@ -1479,7 +1469,6 @@ for (var _i$5 = 0, modelProps_1$5 = modelProps$5; _i$5 < modelProps_1$5.length;
|
|
|
1479
1469
|
var props_1$5 = modelProps_1$5[_i$5];
|
|
1480
1470
|
emitProbs$5.push('update:' + props_1$5);
|
|
1481
1471
|
}
|
|
1482
|
-
var isExecute$10 = gh ? false : true;
|
|
1483
1472
|
/**
|
|
1484
1473
|
* Represents the VueJS Tab Component.
|
|
1485
1474
|
* ```html
|
|
@@ -1496,7 +1485,7 @@ var TabComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1496
1485
|
_this.hasInjectedModules = false;
|
|
1497
1486
|
_this.tagMapper = { "e-tabitems": "e-tabitem" };
|
|
1498
1487
|
_this.tagNameMapper = { "e-tabitems": "e-items" };
|
|
1499
|
-
_this.isVue3 = !isExecute
|
|
1488
|
+
_this.isVue3 = !isExecute;
|
|
1500
1489
|
_this.ej2Instances = new Tab({});
|
|
1501
1490
|
_this.bindProperties();
|
|
1502
1491
|
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
@@ -1554,10 +1543,10 @@ var TabComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1554
1543
|
}
|
|
1555
1544
|
};
|
|
1556
1545
|
TabComponent.prototype.render = function (createElement) {
|
|
1557
|
-
var h = gh
|
|
1546
|
+
var h = !isExecute ? gh : createElement;
|
|
1558
1547
|
var slots = null;
|
|
1559
1548
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
1560
|
-
slots =
|
|
1549
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
1561
1550
|
}
|
|
1562
1551
|
return h('div', slots);
|
|
1563
1552
|
};
|
|
@@ -1585,6 +1574,9 @@ var TabComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1585
1574
|
TabComponent.prototype.refreshActiveTab = function () {
|
|
1586
1575
|
return this.ej2Instances.refreshActiveTab();
|
|
1587
1576
|
};
|
|
1577
|
+
TabComponent.prototype.refreshActiveTabBorder = function () {
|
|
1578
|
+
return this.ej2Instances.refreshActiveTabBorder();
|
|
1579
|
+
};
|
|
1588
1580
|
TabComponent.prototype.removeTab = function (index) {
|
|
1589
1581
|
return this.ej2Instances.removeTab(index);
|
|
1590
1582
|
};
|
|
@@ -1594,7 +1586,7 @@ var TabComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1594
1586
|
TabComponent = __decorate$10([
|
|
1595
1587
|
EJComponentDecorator({
|
|
1596
1588
|
props: properties$5
|
|
1597
|
-
}, isExecute
|
|
1589
|
+
}, isExecute)
|
|
1598
1590
|
,Options({
|
|
1599
1591
|
props: props,
|
|
1600
1592
|
watch: watch,
|
|
@@ -1648,7 +1640,6 @@ for (var _i$6 = 0, modelProps_1$6 = modelProps$6; _i$6 < modelProps_1$6.length;
|
|
|
1648
1640
|
var props_1$6 = modelProps_1$6[_i$6];
|
|
1649
1641
|
emitProbs$6.push('update:' + props_1$6);
|
|
1650
1642
|
}
|
|
1651
|
-
var isExecute$11 = gh ? false : true;
|
|
1652
1643
|
/**
|
|
1653
1644
|
* Represents the EJ2 VueJS TreeView Component.
|
|
1654
1645
|
* ```html
|
|
@@ -1665,7 +1656,7 @@ var TreeViewComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1665
1656
|
_this.hasInjectedModules = false;
|
|
1666
1657
|
_this.tagMapper = {};
|
|
1667
1658
|
_this.tagNameMapper = {};
|
|
1668
|
-
_this.isVue3 = !isExecute
|
|
1659
|
+
_this.isVue3 = !isExecute;
|
|
1669
1660
|
_this.ej2Instances = new TreeView({});
|
|
1670
1661
|
_this.bindProperties();
|
|
1671
1662
|
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
@@ -1723,10 +1714,10 @@ var TreeViewComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1723
1714
|
}
|
|
1724
1715
|
};
|
|
1725
1716
|
TreeViewComponent.prototype.render = function (createElement) {
|
|
1726
|
-
var h = gh
|
|
1717
|
+
var h = !isExecute ? gh : createElement;
|
|
1727
1718
|
var slots = null;
|
|
1728
1719
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
1729
|
-
slots =
|
|
1720
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
1730
1721
|
}
|
|
1731
1722
|
return h('div', slots);
|
|
1732
1723
|
};
|
|
@@ -1787,7 +1778,7 @@ var TreeViewComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1787
1778
|
TreeViewComponent = __decorate$11([
|
|
1788
1779
|
EJComponentDecorator({
|
|
1789
1780
|
props: properties$6
|
|
1790
|
-
}, isExecute
|
|
1781
|
+
}, isExecute)
|
|
1791
1782
|
,Options({
|
|
1792
1783
|
props: props,
|
|
1793
1784
|
watch: watch,
|
|
@@ -1839,7 +1830,6 @@ for (var _i$7 = 0, modelProps_1$7 = modelProps$7; _i$7 < modelProps_1$7.length;
|
|
|
1839
1830
|
var props_1$7 = modelProps_1$7[_i$7];
|
|
1840
1831
|
emitProbs$7.push('update:' + props_1$7);
|
|
1841
1832
|
}
|
|
1842
|
-
var isExecute$12 = gh ? false : true;
|
|
1843
1833
|
/**
|
|
1844
1834
|
* Represents the Essential JS 2 VueJS Sidebar Component.
|
|
1845
1835
|
* ```html
|
|
@@ -1856,7 +1846,7 @@ var SidebarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1856
1846
|
_this.hasInjectedModules = false;
|
|
1857
1847
|
_this.tagMapper = {};
|
|
1858
1848
|
_this.tagNameMapper = {};
|
|
1859
|
-
_this.isVue3 = !isExecute
|
|
1849
|
+
_this.isVue3 = !isExecute;
|
|
1860
1850
|
_this.ej2Instances = new Sidebar({});
|
|
1861
1851
|
_this.ej2Instances._trigger = _this.ej2Instances.trigger;
|
|
1862
1852
|
_this.ej2Instances.trigger = _this.trigger;
|
|
@@ -1916,14 +1906,14 @@ var SidebarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1916
1906
|
}
|
|
1917
1907
|
};
|
|
1918
1908
|
SidebarComponent.prototype.trigger = function (eventName, eventProp, successHandler) {
|
|
1919
|
-
if (!isExecute
|
|
1909
|
+
if (!isExecute) {
|
|
1920
1910
|
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
1921
1911
|
}
|
|
1922
1912
|
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
|
|
1923
1913
|
var key = this.models.toString().match(/checked|value/) || [];
|
|
1924
1914
|
var propKey = key[0];
|
|
1925
1915
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
1926
|
-
if (!isExecute
|
|
1916
|
+
if (!isExecute) {
|
|
1927
1917
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
1928
1918
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
1929
1919
|
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
@@ -1940,7 +1930,7 @@ var SidebarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1940
1930
|
var key = this.models.toString().match(/currentView|selectedDate/) || [];
|
|
1941
1931
|
var propKey = key[0];
|
|
1942
1932
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
1943
|
-
if (!isExecute
|
|
1933
|
+
if (!isExecute) {
|
|
1944
1934
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
1945
1935
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
1946
1936
|
}
|
|
@@ -1955,10 +1945,10 @@ var SidebarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1955
1945
|
}
|
|
1956
1946
|
};
|
|
1957
1947
|
SidebarComponent.prototype.render = function (createElement) {
|
|
1958
|
-
var h = gh
|
|
1948
|
+
var h = !isExecute ? gh : createElement;
|
|
1959
1949
|
var slots = null;
|
|
1960
1950
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
1961
|
-
slots =
|
|
1951
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
1962
1952
|
}
|
|
1963
1953
|
return h('div', slots);
|
|
1964
1954
|
};
|
|
@@ -1980,7 +1970,7 @@ var SidebarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1980
1970
|
model: {
|
|
1981
1971
|
event: 'modelchanged'
|
|
1982
1972
|
}
|
|
1983
|
-
}, isExecute
|
|
1973
|
+
}, isExecute)
|
|
1984
1974
|
,Options({
|
|
1985
1975
|
props: props,
|
|
1986
1976
|
watch: watch,
|
|
@@ -2021,9 +2011,8 @@ var __decorate$13 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
2021
2011
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
2022
2012
|
};
|
|
2023
2013
|
// {{VueImport}}
|
|
2024
|
-
var isExecute$13 = gh ? false : true;
|
|
2025
2014
|
var vueImport$5;
|
|
2026
|
-
if (!isExecute
|
|
2015
|
+
if (!isExecute || parseInt(allVue.version) < 3) {
|
|
2027
2016
|
vueImport$5 = Vue;
|
|
2028
2017
|
}
|
|
2029
2018
|
else {
|
|
@@ -2035,18 +2024,18 @@ var MenuItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
2035
2024
|
return _super.call(this, arguments) || this;
|
|
2036
2025
|
}
|
|
2037
2026
|
MenuItemsDirective.prototype.render = function (createElement) {
|
|
2038
|
-
if (
|
|
2039
|
-
var h = gh
|
|
2027
|
+
if (!isExecute) {
|
|
2028
|
+
var h = !isExecute ? gh : createElement;
|
|
2040
2029
|
var slots = null;
|
|
2041
2030
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
2042
|
-
slots =
|
|
2031
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
2043
2032
|
}
|
|
2044
2033
|
return h('div', { class: 'e-directive' }, slots);
|
|
2045
2034
|
}
|
|
2046
2035
|
return;
|
|
2047
2036
|
};
|
|
2048
2037
|
MenuItemsDirective.prototype.updated = function () {
|
|
2049
|
-
if (
|
|
2038
|
+
if (!isExecute && this.custom) {
|
|
2050
2039
|
this.custom();
|
|
2051
2040
|
}
|
|
2052
2041
|
};
|
|
@@ -2054,7 +2043,7 @@ var MenuItemsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
2054
2043
|
return 'e-menu-items';
|
|
2055
2044
|
};
|
|
2056
2045
|
MenuItemsDirective = __decorate$13([
|
|
2057
|
-
EJComponentDecorator({}, isExecute
|
|
2046
|
+
EJComponentDecorator({}, isExecute)
|
|
2058
2047
|
,Options({
|
|
2059
2048
|
inject: {
|
|
2060
2049
|
custom: {
|
|
@@ -2083,7 +2072,7 @@ var MenuItemDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
2083
2072
|
return 'e-';
|
|
2084
2073
|
};
|
|
2085
2074
|
MenuItemDirective = __decorate$13([
|
|
2086
|
-
EJComponentDecorator({}, isExecute
|
|
2075
|
+
EJComponentDecorator({}, isExecute)
|
|
2087
2076
|
], MenuItemDirective);
|
|
2088
2077
|
return MenuItemDirective;
|
|
2089
2078
|
}(vueImport$5));
|
|
@@ -2125,7 +2114,6 @@ for (var _i$8 = 0, modelProps_1$8 = modelProps$8; _i$8 < modelProps_1$8.length;
|
|
|
2125
2114
|
var props_1$8 = modelProps_1$8[_i$8];
|
|
2126
2115
|
emitProbs$8.push('update:' + props_1$8);
|
|
2127
2116
|
}
|
|
2128
|
-
var isExecute$14 = gh ? false : true;
|
|
2129
2117
|
/**
|
|
2130
2118
|
* Represents the Essential JS 2 VueJS Menu Component.
|
|
2131
2119
|
* ```html
|
|
@@ -2142,7 +2130,7 @@ var MenuComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
2142
2130
|
_this.hasInjectedModules = false;
|
|
2143
2131
|
_this.tagMapper = { "e-menu-items": "e-" };
|
|
2144
2132
|
_this.tagNameMapper = { "e-menu-items": "e-items" };
|
|
2145
|
-
_this.isVue3 = !isExecute
|
|
2133
|
+
_this.isVue3 = !isExecute;
|
|
2146
2134
|
_this.ej2Instances = new Menu({});
|
|
2147
2135
|
_this.bindProperties();
|
|
2148
2136
|
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
@@ -2200,10 +2188,10 @@ var MenuComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
2200
2188
|
}
|
|
2201
2189
|
};
|
|
2202
2190
|
MenuComponent.prototype.render = function (createElement) {
|
|
2203
|
-
var h = gh
|
|
2191
|
+
var h = !isExecute ? gh : createElement;
|
|
2204
2192
|
var slots = null;
|
|
2205
2193
|
if (!isNullOrUndefined(this.$slots.default)) {
|
|
2206
|
-
slots =
|
|
2194
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
2207
2195
|
}
|
|
2208
2196
|
return h('ul', slots);
|
|
2209
2197
|
};
|
|
@@ -2243,7 +2231,7 @@ var MenuComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
2243
2231
|
MenuComponent = __decorate$14([
|
|
2244
2232
|
EJComponentDecorator({
|
|
2245
2233
|
props: properties$8
|
|
2246
|
-
}, isExecute
|
|
2234
|
+
}, isExecute)
|
|
2247
2235
|
,Options({
|
|
2248
2236
|
props: props,
|
|
2249
2237
|
watch: watch,
|
|
@@ -2266,6 +2254,145 @@ var MenuPlugin = {
|
|
|
2266
2254
|
}
|
|
2267
2255
|
};
|
|
2268
2256
|
|
|
2269
|
-
|
|
2257
|
+
var __extends$15 = (undefined && undefined.__extends) || (function () {
|
|
2258
|
+
var extendStatics = function (d, b) {
|
|
2259
|
+
extendStatics = Object.setPrototypeOf ||
|
|
2260
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
2261
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
2262
|
+
return extendStatics(d, b);
|
|
2263
|
+
};
|
|
2264
|
+
return function (d, b) {
|
|
2265
|
+
extendStatics(d, b);
|
|
2266
|
+
function __() { this.constructor = d; }
|
|
2267
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
2268
|
+
};
|
|
2269
|
+
})();
|
|
2270
|
+
var __decorate$15 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
2271
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
2272
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
2273
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
2274
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
2275
|
+
};
|
|
2276
|
+
// {{VueImport}}
|
|
2277
|
+
var properties$9 = ['isLazyUpdate', 'plugins', 'colorMode', 'cssClass', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'isSticky', 'locale', 'mode', 'position', 'created', 'destroyed'];
|
|
2278
|
+
var modelProps$9 = [];
|
|
2279
|
+
var testProp$9 = getProps({ props: properties$9 });
|
|
2280
|
+
var props$9 = testProp$9[0];
|
|
2281
|
+
var watch$9 = testProp$9[1];
|
|
2282
|
+
var emitProbs$9 = Object.keys(watch$9);
|
|
2283
|
+
emitProbs$9.push('modelchanged', 'update:modelValue');
|
|
2284
|
+
for (var _i$9 = 0, modelProps_1$9 = modelProps$9; _i$9 < modelProps_1$9.length; _i$9++) {
|
|
2285
|
+
var props_1$9 = modelProps_1$9[_i$9];
|
|
2286
|
+
emitProbs$9.push('update:' + props_1$9);
|
|
2287
|
+
}
|
|
2288
|
+
/**
|
|
2289
|
+
* Represents the Essential JS 2 VueJS AppBar Component.
|
|
2290
|
+
* ```html
|
|
2291
|
+
* <ejs-appbar></ejs-appbar>
|
|
2292
|
+
* ```
|
|
2293
|
+
*/
|
|
2294
|
+
var AppBarComponent = /** @__PURE__ @class */ (function (_super) {
|
|
2295
|
+
__extends$15(AppBarComponent, _super);
|
|
2296
|
+
function AppBarComponent() {
|
|
2297
|
+
var _this = _super.call(this, arguments) || this;
|
|
2298
|
+
_this.propKeys = properties$9;
|
|
2299
|
+
_this.models = modelProps$9;
|
|
2300
|
+
_this.hasChildDirective = false;
|
|
2301
|
+
_this.hasInjectedModules = false;
|
|
2302
|
+
_this.tagMapper = {};
|
|
2303
|
+
_this.tagNameMapper = {};
|
|
2304
|
+
_this.isVue3 = !isExecute;
|
|
2305
|
+
_this.ej2Instances = new AppBar({});
|
|
2306
|
+
_this.bindProperties();
|
|
2307
|
+
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
2308
|
+
_this.ej2Instances.setProperties = _this.setProperties;
|
|
2309
|
+
_this.ej2Instances.clearTemplate = _this.clearTemplate;
|
|
2310
|
+
_this.updated = _this.updated;
|
|
2311
|
+
return _this;
|
|
2312
|
+
}
|
|
2313
|
+
AppBarComponent.prototype.clearTemplate = function (templateNames) {
|
|
2314
|
+
if (!templateNames) {
|
|
2315
|
+
templateNames = Object.keys(this.templateCollection || {});
|
|
2316
|
+
}
|
|
2317
|
+
if (templateNames.length && this.templateCollection) {
|
|
2318
|
+
for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {
|
|
2319
|
+
var tempName = templateNames_1[_i];
|
|
2320
|
+
var elementCollection = this.templateCollection[tempName];
|
|
2321
|
+
if (elementCollection && elementCollection.length) {
|
|
2322
|
+
for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {
|
|
2323
|
+
var ele = elementCollection_1[_a];
|
|
2324
|
+
var destroy = getValue('__vue__.$destroy', ele);
|
|
2325
|
+
if (destroy) {
|
|
2326
|
+
ele.__vue__.$destroy();
|
|
2327
|
+
}
|
|
2328
|
+
if (ele.innerHTML) {
|
|
2329
|
+
ele.innerHTML = '';
|
|
2330
|
+
}
|
|
2331
|
+
}
|
|
2332
|
+
delete this.templateCollection[tempName];
|
|
2333
|
+
}
|
|
2334
|
+
}
|
|
2335
|
+
}
|
|
2336
|
+
};
|
|
2337
|
+
AppBarComponent.prototype.setProperties = function (prop, muteOnChange) {
|
|
2338
|
+
var _this = this;
|
|
2339
|
+
if (this.isVue3) {
|
|
2340
|
+
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
2341
|
+
}
|
|
2342
|
+
if (this.ej2Instances && this.ej2Instances._setProperties) {
|
|
2343
|
+
this.ej2Instances._setProperties(prop, muteOnChange);
|
|
2344
|
+
}
|
|
2345
|
+
if (prop && this.models && this.models.length) {
|
|
2346
|
+
Object.keys(prop).map(function (key) {
|
|
2347
|
+
_this.models.map(function (model) {
|
|
2348
|
+
if ((key === model) && !(/datasource/i.test(key))) {
|
|
2349
|
+
if (_this.isVue3) {
|
|
2350
|
+
_this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);
|
|
2351
|
+
}
|
|
2352
|
+
else {
|
|
2353
|
+
_this.$emit('update:' + key, prop[key]);
|
|
2354
|
+
_this.$emit('modelchanged', prop[key]);
|
|
2355
|
+
}
|
|
2356
|
+
}
|
|
2357
|
+
});
|
|
2358
|
+
});
|
|
2359
|
+
}
|
|
2360
|
+
};
|
|
2361
|
+
AppBarComponent.prototype.render = function (createElement) {
|
|
2362
|
+
var h = !isExecute ? gh : createElement;
|
|
2363
|
+
var slots = null;
|
|
2364
|
+
if (!isNullOrUndefined(this.$slots.default)) {
|
|
2365
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
2366
|
+
}
|
|
2367
|
+
return h('header', slots);
|
|
2368
|
+
};
|
|
2369
|
+
AppBarComponent.prototype.custom = function () {
|
|
2370
|
+
this.updated();
|
|
2371
|
+
};
|
|
2372
|
+
AppBarComponent = __decorate$15([
|
|
2373
|
+
EJComponentDecorator({
|
|
2374
|
+
props: properties$9
|
|
2375
|
+
}, isExecute)
|
|
2376
|
+
,Options({
|
|
2377
|
+
props: props,
|
|
2378
|
+
watch: watch,
|
|
2379
|
+
emits: emitProbs,
|
|
2380
|
+
provide: function provide() {
|
|
2381
|
+
return {
|
|
2382
|
+
custom: this.custom
|
|
2383
|
+
};
|
|
2384
|
+
}
|
|
2385
|
+
})
|
|
2386
|
+
], AppBarComponent);
|
|
2387
|
+
return AppBarComponent;
|
|
2388
|
+
}(ComponentBase));
|
|
2389
|
+
var AppBarPlugin = {
|
|
2390
|
+
name: 'ejs-appbar',
|
|
2391
|
+
install: function (Vue$$1) {
|
|
2392
|
+
Vue$$1.component(AppBarPlugin.name, AppBarComponent);
|
|
2393
|
+
}
|
|
2394
|
+
};
|
|
2395
|
+
|
|
2396
|
+
export { AccordionItemsDirective, AccordionItemDirective, AccordionItemsPlugin, AccordionItemPlugin, AccordionComponent, AccordionPlugin, ItemsDirective, ItemDirective, ItemsPlugin, ItemPlugin, ToolbarComponent, ToolbarPlugin, ContextMenuComponent, ContextMenuPlugin, BreadcrumbItemsDirective, BreadcrumbItemDirective, BreadcrumbItemsPlugin, BreadcrumbItemPlugin, BreadcrumbComponent, BreadcrumbPlugin, CarouselItemsDirective, CarouselItemDirective, CarouselItemsPlugin, CarouselItemPlugin, CarouselComponent, CarouselPlugin, TabItemsDirective, TabItemDirective, TabItemsPlugin, TabItemPlugin, TabComponent, TabPlugin, TreeViewComponent, TreeViewPlugin, SidebarComponent, SidebarPlugin, MenuItemsDirective, MenuItemDirective, MenuItemsPlugin, MenuItemPlugin, MenuComponent, MenuPlugin, AppBarComponent, AppBarPlugin };
|
|
2270
2397
|
export * from '@syncfusion/ej2-navigations';
|
|
2271
2398
|
//# sourceMappingURL=ej2-vue-navigations.es5.js.map
|