@syncfusion/ej2-vue-ribbon 24.2.3 → 25.1.35
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 +7 -4
- package/README.md +5 -1
- package/dist/ej2-vue-ribbon.umd.min.js +2 -2
- package/dist/ej2-vue-ribbon.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-ribbon.es2015.js +70 -78
- package/dist/es6/ej2-vue-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-ribbon.es5.js +70 -78
- package/dist/es6/ej2-vue-ribbon.es5.js.map +1 -1
- package/dist/global/ej2-vue-ribbon.min.js +2 -2
- package/package.json +9 -9
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/ribbon/collections.directive.d.ts +0 -20
- package/src/ribbon/collections.directive.js +0 -20
- package/src/ribbon/contextualtabs.directive.d.ts +24 -0
- package/src/ribbon/contextualtabs.directive.js +60 -0
- package/src/ribbon/groups.directive.d.ts +0 -16
- package/src/ribbon/groups.directive.js +0 -16
- package/src/ribbon/index.d.ts +1 -0
- package/src/ribbon/index.js +1 -0
- package/src/ribbon/items.directive.d.ts +0 -24
- package/src/ribbon/items.directive.js +0 -24
- package/src/ribbon/ribbon.component.d.ts +46 -3
- package/src/ribbon/ribbon.component.js +13 -7
- package/src/ribbon/tabs.directive.d.ts +0 -12
- package/src/ribbon/tabs.directive.js +0 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,14 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## 24.1.44 (2024-01-03)
|
|
6
|
-
|
|
7
5
|
### Ribbon
|
|
8
6
|
|
|
9
|
-
####
|
|
7
|
+
#### Features
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
- **Gallery item** - In addition to the existing built-in items, a new item, gallery, has been added to the Ribbon control. It allows users to perform specific actions by displaying a collection of related items, including icons, content, or images. Check out the demo [here](https://ej2.syncfusion.com/demos/#/material3/ribbon/gallery.html).
|
|
10
|
+
- **Contextual tabs** - The Ribbon control now supports addition of contextual tabs, allows users to display the ribbon tabs on demand based on their needs. Similar to the normal ribbon tabs, it supports adding all built-in and custom ribbon items to execute specific actions. Check out the demo [here](https://ej2.syncfusion.com/demos/#/material3/ribbon/contextual-tab.html).
|
|
11
|
+
- **KeyTips support** - The KeyTips feature enables users to quickly access the tabs or ribbon items by using defined unique key tips (up to 3 characters). To show the KeyTips, press Alt + Windows/Command keys, and close or traverse back by pressing the Esc key. Check out the demo [here](https://ej2.syncfusion.com/demos/#/material3/ribbon/keytip.html).
|
|
12
12
|
|
|
13
|
+
- **Gallery item** - In addition to the existing built-in items, a new item, gallery, has been added to the Ribbon component. It allows users to perform specific actions by displaying a collection of related items, including icons, content, or images. Check out the demo [here](https://ej2.syncfusion.com/vue/demos/#/material3/ribbon/gallery.html).
|
|
14
|
+
- **Contextual tabs** - The Ribbon component now supports addition of contextual tabs, allows users to display the ribbon tabs on demand based on their needs. Similar to the normal ribbon tabs, it supports adding all built-in and custom ribbon items to execute specific actions. Check out the demo [here](https://ej2.syncfusion.com/vue/demos/#/material3/ribbon/contextual-tab.html).
|
|
15
|
+
- **KeyTips support** - The KeyTips feature enables users to quickly access the tabs or ribbon items by using defined unique key tips (up to 3 characters). To show the KeyTips, press Alt + Windows/Command keys, and close or traverse back by pressing the Esc key. Check out the demo [here](https://ej2.syncfusion.com/vue/demos/#/material3/ribbon/keytip.html).
|
|
13
16
|
|
|
14
17
|
## 24.1.41 (2023-12-18)
|
|
15
18
|
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Trusted by the world's leading companies
|
|
|
18
18
|
<img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/syncfusion/syncfusion-trusted-companies.webp" alt="Bootstrap logo">
|
|
19
19
|
</a>
|
|
20
20
|
</p>
|
|
21
|
-
|
|
21
|
+
|
|
22
22
|
## Setup
|
|
23
23
|
|
|
24
24
|
To install the Ribbon and its dependent packages, use the following command.
|
|
@@ -41,6 +41,9 @@ Ribbon component is also offered in the following list of frameworks.
|
|
|
41
41
|
* [Tooltip](https://ej2.syncfusion.com/vue/documentation/ribbon/tooltip): Provide additional information when a user hovers over a ribbon item, improving user experience and increasing the usability of the application.
|
|
42
42
|
* [File menu](https://ej2.syncfusion.com/vue/documentation/ribbon/file-menu): A built-in menu that to add file related actions easily.
|
|
43
43
|
* [Backstage](https://ej2.syncfusion.com/vue/documentation/ribbon/backstage): It is an extension of traditional file menu for displaying information, based on the user interactions with backstage options.
|
|
44
|
+
* `Gallery`: In addition to the existing items, a new item gallery has been added to the Ribbon component which allows users to perform specific actions by displaying a collection of related items including icons, content, or images.
|
|
45
|
+
* `Contextual Tabs`: It allows users to show ribbon tabs on demand when needed, by adding built-in and custom items to perform specific actions just like regular ribbon tabs.
|
|
46
|
+
* `KeyTips`: It enables users to quickly access the tabs or ribbon items by using unique key tips (up to 3 characters), activated with `Alt + Windows/Command keys` and closed or navigated back with the `Esc` key.
|
|
44
47
|
* [Templates](https://ej2.syncfusion.com/vue/documentation/ribbon/help-pane-template): Customize ribbon items and the help pane content using templates.
|
|
45
48
|
|
|
46
49
|
## Support
|
|
@@ -62,3 +65,4 @@ Product support is available through the following mediums.
|
|
|
62
65
|
See [LICENSE FILE](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license) for more info.
|
|
63
66
|
|
|
64
67
|
© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
|
68
|
+
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-ribbon.umd.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 25.1.35
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. 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
|
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
8
|
* applicable laws.
|
|
9
9
|
*/
|
|
10
|
-
!function(e,
|
|
10
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@syncfusion/ej2-ribbon"),require("@syncfusion/ej2-vue-base"),require("@syncfusion/ej2-base")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-ribbon","@syncfusion/ej2-vue-base","@syncfusion/ej2-base"],t):t(e.ej={},e.ej2Ribbon,e.ej2VueBase,e.ej2Base)}(this,function(e,t,n,i){"use strict";var o=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return i.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-ribbon-items"}}}),s={name:"e-ribbon-items",install:function(e){e.component(s.name,o)}},u=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-ribbon-item"}}}),a={name:"e-ribbon-item",install:function(e){e.component(a.name,u)}},r=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return i.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-ribbon-collections"}}}),c={name:"e-ribbon-collections",install:function(e){e.component(c.name,r)}},l=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-ribbon-collection"}}}),b={name:"e-ribbon-collection",install:function(e){e.component(b.name,l)}},m=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return i.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-ribbon-groups"}}}),d={name:"e-ribbon-groups",install:function(e){e.component(d.name,m)}},f=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-ribbon-group"}}}),h={name:"e-ribbon-group",install:function(e){e.component(h.name,f)}},p=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return i.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-ribbon-tabs"}}}),g={name:"e-ribbon-tabs",install:function(e){e.component(g.name,p)}},v=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-ribbon-tab"}}}),I={name:"e-ribbon-tab",install:function(e){e.component(I.name,v)}},j=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return i.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-ribbon-contextual-tabs"}}}),T={name:"e-ribbon-contextual-tabs",install:function(e){e.component(T.name,j)}},x=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-ribbon-contextual-tab"}}}),C={name:"e-ribbon-contextual-tab",install:function(e){e.component(C.name,x)}},R=["isLazyUpdate","plugins","activeLayout","backStageMenu","contextualTabs","cssClass","enableKeyTips","enablePersistence","enableRtl","fileMenu","helpPaneTemplate","hideLayoutSwitcher","isMinimized","launcherIconCss","layoutSwitcherKeyTip","locale","selectedTab","tabAnimation","tabs","width","created","launcherIconClick","overflowPopupClose","overflowPopupOpen","ribbonCollapsing","ribbonExpanding","tabSelected","tabSelecting"],y=[],E=n.getProps({props:R}),P=E[0],$=E[1],D=Object.keys($);D.push("modelchanged","update:modelValue");for(var G=0,w=y;G<w.length;G++){var _=w[G];D.push("update:"+_)}var O=n.vueDefineComponent({name:"RibbonComponent",mixins:[n.ComponentBase],props:P,watch:$,emits:D,provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.Ribbon({}),propKeys:R,models:y,hasChildDirective:!0,hasInjectedModules:!0,tagMapper:{"e-ribbon-tabs":{"e-ribbon-tab":{"e-ribbon-groups":{"e-ribbon-group":{"e-ribbon-collections":{"e-ribbon-collection":{"e-ribbon-items":"e-ribbon-item"}}}}}},"e-ribbon-contextual-tabs":{"e-ribbon-contextual-tab":{"e-ribbon-tabs":{"e-ribbon-tab":{"e-ribbon-groups":{"e-ribbon-group":{"e-ribbon-collections":{"e-ribbon-collection":{"e-ribbon-items":"e-ribbon-item"}}}}}}}}},tagNameMapper:{"e-ribbon-items":"e-items","e-ribbon-collections":"e-collections","e-ribbon-groups":"e-groups","e-ribbon-tabs":"e-tabs","e-ribbon-contextual-tabs":"e-contextualTabs"},isVue3:!n.isExecute,templateCollection:{}}},created:function(){this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=n.isExecute?e:n.gh,o=null;return i.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",o)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,n=e;t<n.length;t++){var o=n[t],s=this.templateCollection[o];if(s&&s.length){for(var u=0,a=s;u<a.length;u++){var r=a[u];i.getValue("__vue__.$destroy",r)&&r.__vue__.$destroy(),r.innerHTML&&(r.innerHTML="")}delete this.templateCollection[o]}}},setProperties:function(e,t){var n=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){n.models.map(function(i){t!==i||/datasource/i.test(t)||(n.isVue3?n.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(n.$emit("update:"+t,e[t]),n.$emit("modelchanged",e[t])))})})},custom:function(){this.updated()},addCollection:function(e,t,n,i){return this.ej2Instances.addCollection(e,t,n,i)},addGroup:function(e,t,n,i){return this.ej2Instances.addGroup(e,t,n,i)},addItem:function(e,t,n,i){return this.ej2Instances.addItem(e,t,n,i)},addTab:function(e,t,n){return this.ej2Instances.addTab(e,t,n)},disableGroup:function(e){return this.ej2Instances.disableGroup(e)},disableItem:function(e){return this.ej2Instances.disableItem(e)},disableTab:function(e){return this.ej2Instances.disableTab(e)},enableGroup:function(e){return this.ej2Instances.enableGroup(e)},enableItem:function(e){return this.ej2Instances.enableItem(e)},enableTab:function(e){return this.ej2Instances.enableTab(e)},getItem:function(e){return this.ej2Instances.getItem(e)},hideGroup:function(e){return this.ej2Instances.hideGroup(e)},hideItem:function(e){return this.ej2Instances.hideItem(e)},hideTab:function(e,t){return this.ej2Instances.hideTab(e,t)},refreshLayout:function(){return this.ej2Instances.refreshLayout()},removeCollection:function(e){return this.ej2Instances.removeCollection(e)},removeGroup:function(e){return this.ej2Instances.removeGroup(e)},removeItem:function(e){return this.ej2Instances.removeItem(e)},removeTab:function(e){return this.ej2Instances.removeTab(e)},selectTab:function(e){return this.ej2Instances.selectTab(e)},showGroup:function(e){return this.ej2Instances.showGroup(e)},showItem:function(e){return this.ej2Instances.showItem(e)},showTab:function(e,t){return this.ej2Instances.showTab(e,t)},updateCollection:function(e){return this.ej2Instances.updateCollection(e)},updateGroup:function(e){return this.ej2Instances.updateGroup(e)},updateItem:function(e){return this.ej2Instances.updateItem(e)},updateTab:function(e){return this.ej2Instances.updateTab(e)}}}),M={name:"ejs-ribbon",install:function(e){e.component(M.name,O),e.component(I.name,v),e.component(g.name,p),e.component(h.name,f),e.component(d.name,m),e.component(b.name,l),e.component(c.name,r),e.component(a.name,u),e.component(s.name,o),e.component(C.name,x),e.component(T.name,j)}};e.RibbonItemsDirective=o,e.RibbonItemDirective=u,e.RibbonItemsPlugin=s,e.RibbonItemPlugin=a,e.RibbonCollectionsDirective=r,e.RibbonCollectionDirective=l,e.RibbonCollectionsPlugin=c,e.RibbonCollectionPlugin=b,e.RibbonGroupsDirective=m,e.RibbonGroupDirective=f,e.RibbonGroupsPlugin=d,e.RibbonGroupPlugin=h,e.RibbonTabsDirective=p,e.RibbonTabDirective=v,e.RibbonTabsPlugin=g,e.RibbonTabPlugin=I,e.RibbonContextualTabsDirective=j,e.RibbonContextualTabDirective=x,e.RibbonContextualTabsPlugin=T,e.RibbonContextualTabPlugin=C,e.RibbonComponent=O,e.RibbonPlugin=M,Object.keys(t).forEach(function(n){e[n]=t[n]}),Object.defineProperty(e,"__esModule",{value:!0})});
|
|
11
11
|
//# sourceMappingURL=ej2-vue-ribbon.umd.min.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-vue-ribbon.umd.min.js","sources":["../src/ribbon/items.directive.js","../src/ribbon/collections.directive.js","../src/ribbon/groups.directive.js","../src/ribbon/tabs.directive.js","../src/ribbon/ribbon.component.js"],"sourcesContent":["import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonItemsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-items';\n }\n }\n});\nexport var RibbonItemsPlugin = {\n name: 'e-ribbon-items',\n install: function (Vue) {\n Vue.component(RibbonItemsPlugin.name, RibbonItemsDirective);\n }\n};\n/**\n * `e-ribbon-item` directive represent a item in the VueJS Ribbon.\n * ```vue\n * <ejs-ribbon>\n * <e-ribbon-tabs>\n * <e-ribbon-tab></e-ribbon-tab>\n * <e-ribbon-tab>\n * <e-ribbon-groups>\n * <e-ribbon-group>\n * <e-ribbon-collections>\n * <e-ribbon-collection>\n * <e-ribbon-items>\n * <e-ribbon-item></e-ribbon-item>\n * <e-ribbon-item></e-ribbon-item>\n * </e-ribbon-items>\n * </e-ribbon-collection>\n * </e-ribbon-collections>\n * </e-ribbon-group>\n * </e-ribbon-groups>\n * </e-ribbon-tab>\n * </e-ribbon-tabs>\n * </ejs-ribbon>\n * ```\n */\nexport var RibbonItemDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-item';\n }\n }\n});\nexport var RibbonItemPlugin = {\n name: 'e-ribbon-item',\n install: function (Vue) {\n Vue.component(RibbonItemPlugin.name, RibbonItemDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonCollectionsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-collections';\n }\n }\n});\nexport var RibbonCollectionsPlugin = {\n name: 'e-ribbon-collections',\n install: function (Vue) {\n Vue.component(RibbonCollectionsPlugin.name, RibbonCollectionsDirective);\n }\n};\n/**\n * `e-ribbon-collection` directive represent a collection in the VueJS Ribbon.\n * ```vue\n * <ejs-ribbon>\n * <e-ribbon-tabs>\n * <e-ribbon-tab></e-ribbon-tab>\n * <e-ribbon-tab>\n * <e-ribbon-groups>\n * <e-ribbon-group>\n * <e-ribbon-collections>\n * <e-ribbon-collection></e-ribbon-collection>\n * <e-ribbon-collection></e-ribbon-collection>\n * </e-ribbon-collections>\n * </e-ribbon-group>\n * </e-ribbon-groups>\n * </e-ribbon-tab>\n * </e-ribbon-tabs>\n * </ejs-ribbon>\n * ```\n */\nexport var RibbonCollectionDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-collection';\n }\n }\n});\nexport var RibbonCollectionPlugin = {\n name: 'e-ribbon-collection',\n install: function (Vue) {\n Vue.component(RibbonCollectionPlugin.name, RibbonCollectionDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonGroupsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-groups';\n }\n }\n});\nexport var RibbonGroupsPlugin = {\n name: 'e-ribbon-groups',\n install: function (Vue) {\n Vue.component(RibbonGroupsPlugin.name, RibbonGroupsDirective);\n }\n};\n/**\n * `e-ribbon-group` directive represent a group in the VueJS Ribbon.\n * ```vue\n * <ejs-ribbon>\n * <e-ribbon-tabs>\n * <e-ribbon-tab></e-ribbon-tab>\n * <e-ribbon-tab>\n * <e-ribbon-groups>\n * <e-ribbon-group></e-ribbon-group>\n * <e-ribbon-group></e-ribbon-group>\n * </e-ribbon-groups>\n * </e-ribbon-tab>\n * </e-ribbon-tabs>\n * </ejs-ribbon>\n * ```\n */\nexport var RibbonGroupDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-group';\n }\n }\n});\nexport var RibbonGroupPlugin = {\n name: 'e-ribbon-group',\n install: function (Vue) {\n Vue.component(RibbonGroupPlugin.name, RibbonGroupDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonTabsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-tabs';\n }\n }\n});\nexport var RibbonTabsPlugin = {\n name: 'e-ribbon-tabs',\n install: function (Vue) {\n Vue.component(RibbonTabsPlugin.name, RibbonTabsDirective);\n }\n};\n/**\n * `e-ribbon-tab` directive represent a column of the VueJS Ribbon.\n * It must be contained in a Ribbon component(`ejs-ribbon`).\n * ```vue\n * <ejs-ribbon>\n * <e-ribbon-tabs>\n * <e-ribbon-tab></e-ribbon-tab>\n * <e-ribbon-tab></e-ribbon-tab>\n * </e-ribbon-tabs>\n * </ejs-ribbon>\n * ```\n */\nexport var RibbonTabDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-tab';\n }\n }\n});\nexport var RibbonTabPlugin = {\n name: 'e-ribbon-tab',\n install: function (Vue) {\n Vue.component(RibbonTabPlugin.name, RibbonTabDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { Ribbon } from '@syncfusion/ej2-ribbon';\nimport { RibbonItemsDirective, RibbonItemDirective, RibbonItemsPlugin, RibbonItemPlugin } from './items.directive';\nimport { RibbonCollectionsDirective, RibbonCollectionDirective, RibbonCollectionsPlugin, RibbonCollectionPlugin } from './collections.directive';\nimport { RibbonGroupsDirective, RibbonGroupDirective, RibbonGroupsPlugin, RibbonGroupPlugin } from './groups.directive';\nimport { RibbonTabsDirective, RibbonTabDirective, RibbonTabsPlugin, RibbonTabPlugin } from './tabs.directive';\nexport var properties = ['isLazyUpdate', 'plugins', 'activeLayout', 'backStageMenu', 'cssClass', 'enablePersistence', 'enableRtl', 'fileMenu', 'helpPaneTemplate', 'hideLayoutSwitcher', 'isMinimized', 'launcherIconCss', 'locale', 'selectedTab', 'tabAnimation', 'tabs', 'width', 'created', 'launcherIconClick', 'overflowPopupClose', 'overflowPopupOpen', 'ribbonCollapsing', 'ribbonExpanding', 'tabSelected', 'tabSelecting'];\nexport var modelProps = [];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * Represents the Essential JS 2 VueJS Ribbon Component\n * ```vue\n * <ejs-ribbon></ejs-ribbon>\n * ```\n */\nexport var RibbonComponent = vueDefineComponent({\n name: 'RibbonComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instances: new Ribbon({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: true,\n hasInjectedModules: true,\n tagMapper: { \"e-ribbon-tabs\": { \"e-ribbon-tab\": { \"e-ribbon-groups\": { \"e-ribbon-group\": { \"e-ribbon-collections\": { \"e-ribbon-collection\": { \"e-ribbon-items\": \"e-ribbon-item\" } } } } } } },\n tagNameMapper: { \"e-ribbon-items\": \"e-items\", \"e-ribbon-collections\": \"e-collections\", \"e-ribbon-groups\": \"e-groups\", \"e-ribbon-tabs\": \"e-tabs\" },\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n custom: function () {\n this.updated();\n },\n addCollection: function (groupId, collection, targetId, isAfter) {\n return this.ej2Instances.addCollection(groupId, collection, targetId, isAfter);\n },\n addGroup: function (tabId, group, targetId, isAfter) {\n return this.ej2Instances.addGroup(tabId, group, targetId, isAfter);\n },\n addItem: function (collectionId, item, targetId, isAfter) {\n return this.ej2Instances.addItem(collectionId, item, targetId, isAfter);\n },\n addTab: function (tab, targetId, isAfter) {\n return this.ej2Instances.addTab(tab, targetId, isAfter);\n },\n disableGroup: function (groupID) {\n return this.ej2Instances.disableGroup(groupID);\n },\n disableItem: function (itemId) {\n return this.ej2Instances.disableItem(itemId);\n },\n disableTab: function (tabId) {\n return this.ej2Instances.disableTab(tabId);\n },\n enableGroup: function (groupID) {\n return this.ej2Instances.enableGroup(groupID);\n },\n enableItem: function (itemId) {\n return this.ej2Instances.enableItem(itemId);\n },\n enableTab: function (tabId) {\n return this.ej2Instances.enableTab(tabId);\n },\n hideGroup: function (groupID) {\n return this.ej2Instances.hideGroup(groupID);\n },\n hideItem: function (itemId) {\n return this.ej2Instances.hideItem(itemId);\n },\n hideTab: function (tabId) {\n return this.ej2Instances.hideTab(tabId);\n },\n refreshLayout: function () {\n return this.ej2Instances.refreshLayout();\n },\n removeCollection: function (collectionId) {\n return this.ej2Instances.removeCollection(collectionId);\n },\n removeGroup: function (groupId) {\n return this.ej2Instances.removeGroup(groupId);\n },\n removeItem: function (itemId) {\n return this.ej2Instances.removeItem(itemId);\n },\n removeTab: function (tabId) {\n return this.ej2Instances.removeTab(tabId);\n },\n selectTab: function (tabId) {\n return this.ej2Instances.selectTab(tabId);\n },\n showGroup: function (groupID) {\n return this.ej2Instances.showGroup(groupID);\n },\n showItem: function (itemId) {\n return this.ej2Instances.showItem(itemId);\n },\n showTab: function (tabId) {\n return this.ej2Instances.showTab(tabId);\n },\n updateCollection: function (collection) {\n return this.ej2Instances.updateCollection(collection);\n },\n updateGroup: function (group) {\n return this.ej2Instances.updateGroup(group);\n },\n updateItem: function (item) {\n return this.ej2Instances.updateItem(item);\n },\n updateTab: function (tab) {\n return this.ej2Instances.updateTab(tab);\n },\n }\n});\nexport var RibbonPlugin = {\n name: 'ejs-ribbon',\n install: function (Vue) {\n Vue.component(RibbonPlugin.name, RibbonComponent);\n Vue.component(RibbonTabPlugin.name, RibbonTabDirective);\n Vue.component(RibbonTabsPlugin.name, RibbonTabsDirective);\n Vue.component(RibbonGroupPlugin.name, RibbonGroupDirective);\n Vue.component(RibbonGroupsPlugin.name, RibbonGroupsDirective);\n Vue.component(RibbonCollectionPlugin.name, RibbonCollectionDirective);\n Vue.component(RibbonCollectionsPlugin.name, RibbonCollectionsDirective);\n Vue.component(RibbonItemPlugin.name, RibbonItemDirective);\n Vue.component(RibbonItemsPlugin.name, RibbonItemsDirective);\n }\n};\n"],"names":["RibbonItemsDirective","vueDefineComponent","inject","custom","default","render","createElement","isExecute","h","gh","slots","isNullOrUndefined","this","$slots","class","updated","methods","getTag","RibbonItemsPlugin","name","install","Vue","component","RibbonItemDirective","RibbonItemPlugin","RibbonCollectionsDirective","RibbonCollectionsPlugin","RibbonCollectionDirective","RibbonCollectionPlugin","RibbonGroupsDirective","RibbonGroupsPlugin","RibbonGroupDirective","RibbonGroupPlugin","RibbonTabsDirective","RibbonTabsPlugin","RibbonTabDirective","RibbonTabPlugin","properties","modelProps","testProp","getProps","props","watch","emitProbs","Object","keys","push","_i","modelProps_1","length","props_1","RibbonComponent","mixins","ComponentBase","emits","provide","data","ej2Instances","Ribbon","propKeys","models","hasChildDirective","hasInjectedModules","tagMapper","e-ribbon-tabs","e-ribbon-tab","e-ribbon-groups","e-ribbon-group","e-ribbon-collections","e-ribbon-collection","e-ribbon-items","tagNameMapper","isVue3","templateCollection","created","bindProperties","_setProperties","setProperties","clearTemplate","templateNames","templateNames_1","tempName","elementCollection","_a","elementCollection_1","ele","getValue","__vue__","$destroy","innerHTML","prop","muteOnChange","_this","referModels","map","key","model","test","vueInstance","$emit","addCollection","groupId","collection","targetId","isAfter","addGroup","tabId","group","addItem","collectionId","item","addTab","tab","disableGroup","groupID","disableItem","itemId","disableTab","enableGroup","enableItem","enableTab","hideGroup","hideItem","hideTab","refreshLayout","removeCollection","removeGroup","removeItem","removeTab","selectTab","showGroup","showItem","showTab","updateCollection","updateGroup","updateItem","updateTab","RibbonPlugin"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ej2-vue-ribbon.umd.min.js","sources":["../src/ribbon/items.directive.js","../src/ribbon/collections.directive.js","../src/ribbon/groups.directive.js","../src/ribbon/tabs.directive.js","../src/ribbon/contextualtabs.directive.js","../src/ribbon/ribbon.component.js"],"sourcesContent":["import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonItemsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-items';\n }\n }\n});\nexport var RibbonItemsPlugin = {\n name: 'e-ribbon-items',\n install: function (Vue) {\n Vue.component(RibbonItemsPlugin.name, RibbonItemsDirective);\n }\n};\nexport var RibbonItemDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-item';\n }\n }\n});\nexport var RibbonItemPlugin = {\n name: 'e-ribbon-item',\n install: function (Vue) {\n Vue.component(RibbonItemPlugin.name, RibbonItemDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonCollectionsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-collections';\n }\n }\n});\nexport var RibbonCollectionsPlugin = {\n name: 'e-ribbon-collections',\n install: function (Vue) {\n Vue.component(RibbonCollectionsPlugin.name, RibbonCollectionsDirective);\n }\n};\nexport var RibbonCollectionDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-collection';\n }\n }\n});\nexport var RibbonCollectionPlugin = {\n name: 'e-ribbon-collection',\n install: function (Vue) {\n Vue.component(RibbonCollectionPlugin.name, RibbonCollectionDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonGroupsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-groups';\n }\n }\n});\nexport var RibbonGroupsPlugin = {\n name: 'e-ribbon-groups',\n install: function (Vue) {\n Vue.component(RibbonGroupsPlugin.name, RibbonGroupsDirective);\n }\n};\nexport var RibbonGroupDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-group';\n }\n }\n});\nexport var RibbonGroupPlugin = {\n name: 'e-ribbon-group',\n install: function (Vue) {\n Vue.component(RibbonGroupPlugin.name, RibbonGroupDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonTabsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-tabs';\n }\n }\n});\nexport var RibbonTabsPlugin = {\n name: 'e-ribbon-tabs',\n install: function (Vue) {\n Vue.component(RibbonTabsPlugin.name, RibbonTabsDirective);\n }\n};\nexport var RibbonTabDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-tab';\n }\n }\n});\nexport var RibbonTabPlugin = {\n name: 'e-ribbon-tab',\n install: function (Vue) {\n Vue.component(RibbonTabPlugin.name, RibbonTabDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var RibbonContextualTabsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-contextual-tabs';\n }\n }\n});\nexport var RibbonContextualTabsPlugin = {\n name: 'e-ribbon-contextual-tabs',\n install: function (Vue) {\n Vue.component(RibbonContextualTabsPlugin.name, RibbonContextualTabsDirective);\n }\n};\n/**\n * `e-ribbon-contextual-tab` directive represent a contextual tab of the VueJS Ribbon.\n * It must be contained in a Ribbon component(`ejs-ribbon`).\n * ```vue\n * <ejs-ribbon>\n * <e-ribbon-contextual-tabs>\n * <e-ribbon-contextual-tab></e-ribbon-contextual-tab>\n * <e-ribbon-contextual-tab></e-ribbon-contextual-tab>\n * </e-ribbon-contextual-tabs>\n * </ejs-ribbon>\n * ```\n */\nexport var RibbonContextualTabDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-ribbon-contextual-tab';\n }\n }\n});\nexport var RibbonContextualTabPlugin = {\n name: 'e-ribbon-contextual-tab',\n install: function (Vue) {\n Vue.component(RibbonContextualTabPlugin.name, RibbonContextualTabDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { Ribbon } from '@syncfusion/ej2-ribbon';\nimport { RibbonItemsDirective, RibbonItemDirective, RibbonItemsPlugin, RibbonItemPlugin } from './items.directive';\nimport { RibbonCollectionsDirective, RibbonCollectionDirective, RibbonCollectionsPlugin, RibbonCollectionPlugin } from './collections.directive';\nimport { RibbonGroupsDirective, RibbonGroupDirective, RibbonGroupsPlugin, RibbonGroupPlugin } from './groups.directive';\nimport { RibbonTabsDirective, RibbonTabDirective, RibbonTabsPlugin, RibbonTabPlugin } from './tabs.directive';\nimport { RibbonContextualTabsDirective, RibbonContextualTabDirective, RibbonContextualTabsPlugin, RibbonContextualTabPlugin } from './contextualtabs.directive';\nexport var properties = ['isLazyUpdate', 'plugins', 'activeLayout', 'backStageMenu', 'contextualTabs', 'cssClass', 'enableKeyTips', 'enablePersistence', 'enableRtl', 'fileMenu', 'helpPaneTemplate', 'hideLayoutSwitcher', 'isMinimized', 'launcherIconCss', 'layoutSwitcherKeyTip', 'locale', 'selectedTab', 'tabAnimation', 'tabs', 'width', 'created', 'launcherIconClick', 'overflowPopupClose', 'overflowPopupOpen', 'ribbonCollapsing', 'ribbonExpanding', 'tabSelected', 'tabSelecting'];\nexport var modelProps = [];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * Represents the Essential JS 2 VueJS Ribbon Component\n * ```vue\n * <ejs-ribbon></ejs-ribbon>\n * ```\n */\nexport var RibbonComponent = vueDefineComponent({\n name: 'RibbonComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instances: new Ribbon({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: true,\n hasInjectedModules: true,\n tagMapper: { \"e-ribbon-tabs\": { \"e-ribbon-tab\": { \"e-ribbon-groups\": { \"e-ribbon-group\": { \"e-ribbon-collections\": { \"e-ribbon-collection\": { \"e-ribbon-items\": \"e-ribbon-item\" } } } } } }, \"e-ribbon-contextual-tabs\": { \"e-ribbon-contextual-tab\": { \"e-ribbon-tabs\": { \"e-ribbon-tab\": { \"e-ribbon-groups\": { \"e-ribbon-group\": { \"e-ribbon-collections\": { \"e-ribbon-collection\": { \"e-ribbon-items\": \"e-ribbon-item\" } } } } } } } } },\n tagNameMapper: { \"e-ribbon-items\": \"e-items\", \"e-ribbon-collections\": \"e-collections\", \"e-ribbon-groups\": \"e-groups\", \"e-ribbon-tabs\": \"e-tabs\", \"e-ribbon-contextual-tabs\": \"e-contextualTabs\" },\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n custom: function () {\n this.updated();\n },\n addCollection: function (groupId, collection, targetId, isAfter) {\n return this.ej2Instances.addCollection(groupId, collection, targetId, isAfter);\n },\n addGroup: function (tabId, group, targetId, isAfter) {\n return this.ej2Instances.addGroup(tabId, group, targetId, isAfter);\n },\n addItem: function (collectionId, item, targetId, isAfter) {\n return this.ej2Instances.addItem(collectionId, item, targetId, isAfter);\n },\n addTab: function (tab, targetId, isAfter) {\n return this.ej2Instances.addTab(tab, targetId, isAfter);\n },\n disableGroup: function (groupID) {\n return this.ej2Instances.disableGroup(groupID);\n },\n disableItem: function (itemId) {\n return this.ej2Instances.disableItem(itemId);\n },\n disableTab: function (tabId) {\n return this.ej2Instances.disableTab(tabId);\n },\n enableGroup: function (groupID) {\n return this.ej2Instances.enableGroup(groupID);\n },\n enableItem: function (itemId) {\n return this.ej2Instances.enableItem(itemId);\n },\n enableTab: function (tabId) {\n return this.ej2Instances.enableTab(tabId);\n },\n getItem: function (itemId) {\n return this.ej2Instances.getItem(itemId);\n },\n hideGroup: function (groupID) {\n return this.ej2Instances.hideGroup(groupID);\n },\n hideItem: function (itemId) {\n return this.ej2Instances.hideItem(itemId);\n },\n hideTab: function (tabId, isContextual) {\n return this.ej2Instances.hideTab(tabId, isContextual);\n },\n refreshLayout: function () {\n return this.ej2Instances.refreshLayout();\n },\n removeCollection: function (collectionId) {\n return this.ej2Instances.removeCollection(collectionId);\n },\n removeGroup: function (groupId) {\n return this.ej2Instances.removeGroup(groupId);\n },\n removeItem: function (itemId) {\n return this.ej2Instances.removeItem(itemId);\n },\n removeTab: function (tabId) {\n return this.ej2Instances.removeTab(tabId);\n },\n selectTab: function (tabId) {\n return this.ej2Instances.selectTab(tabId);\n },\n showGroup: function (groupID) {\n return this.ej2Instances.showGroup(groupID);\n },\n showItem: function (itemId) {\n return this.ej2Instances.showItem(itemId);\n },\n showTab: function (tabId, isContextual) {\n return this.ej2Instances.showTab(tabId, isContextual);\n },\n updateCollection: function (collection) {\n return this.ej2Instances.updateCollection(collection);\n },\n updateGroup: function (group) {\n return this.ej2Instances.updateGroup(group);\n },\n updateItem: function (item) {\n return this.ej2Instances.updateItem(item);\n },\n updateTab: function (tab) {\n return this.ej2Instances.updateTab(tab);\n },\n }\n});\nexport var RibbonPlugin = {\n name: 'ejs-ribbon',\n install: function (Vue) {\n Vue.component(RibbonPlugin.name, RibbonComponent);\n Vue.component(RibbonTabPlugin.name, RibbonTabDirective);\n Vue.component(RibbonTabsPlugin.name, RibbonTabsDirective);\n Vue.component(RibbonGroupPlugin.name, RibbonGroupDirective);\n Vue.component(RibbonGroupsPlugin.name, RibbonGroupsDirective);\n Vue.component(RibbonCollectionPlugin.name, RibbonCollectionDirective);\n Vue.component(RibbonCollectionsPlugin.name, RibbonCollectionsDirective);\n Vue.component(RibbonItemPlugin.name, RibbonItemDirective);\n Vue.component(RibbonItemsPlugin.name, RibbonItemsDirective);\n Vue.component(RibbonContextualTabPlugin.name, RibbonContextualTabDirective);\n Vue.component(RibbonContextualTabsPlugin.name, RibbonContextualTabsDirective);\n }\n};\n"],"names":["RibbonItemsDirective","vueDefineComponent","inject","custom","default","render","createElement","isExecute","h","gh","slots","isNullOrUndefined","this","$slots","class","updated","methods","getTag","RibbonItemsPlugin","name","install","Vue","component","RibbonItemDirective","RibbonItemPlugin","RibbonCollectionsDirective","RibbonCollectionsPlugin","RibbonCollectionDirective","RibbonCollectionPlugin","RibbonGroupsDirective","RibbonGroupsPlugin","RibbonGroupDirective","RibbonGroupPlugin","RibbonTabsDirective","RibbonTabsPlugin","RibbonTabDirective","RibbonTabPlugin","RibbonContextualTabsDirective","RibbonContextualTabsPlugin","RibbonContextualTabDirective","RibbonContextualTabPlugin","properties","modelProps","testProp","getProps","props","watch","emitProbs","Object","keys","push","_i","modelProps_1","length","props_1","RibbonComponent","mixins","ComponentBase","emits","provide","data","ej2Instances","Ribbon","propKeys","models","hasChildDirective","hasInjectedModules","tagMapper","e-ribbon-tabs","e-ribbon-tab","e-ribbon-groups","e-ribbon-group","e-ribbon-collections","e-ribbon-collection","e-ribbon-items","e-ribbon-contextual-tabs","e-ribbon-contextual-tab","tagNameMapper","isVue3","templateCollection","created","bindProperties","_setProperties","setProperties","clearTemplate","templateNames","templateNames_1","tempName","elementCollection","_a","elementCollection_1","ele","getValue","__vue__","$destroy","innerHTML","prop","muteOnChange","_this","referModels","map","key","model","test","vueInstance","$emit","addCollection","groupId","collection","targetId","isAfter","addGroup","tabId","group","addItem","collectionId","item","addTab","tab","disableGroup","groupID","disableItem","itemId","disableTab","enableGroup","enableItem","enableTab","getItem","hideGroup","hideItem","hideTab","isContextual","refreshLayout","removeCollection","removeGroup","removeItem","removeTab","selectTab","showGroup","showItem","showTab","updateCollection","updateGroup","updateItem","updateTab","RibbonPlugin"],"mappings":"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"}
|
|
@@ -32,30 +32,6 @@ const RibbonItemsPlugin = {
|
|
|
32
32
|
Vue.component(RibbonItemsPlugin.name, RibbonItemsDirective);
|
|
33
33
|
}
|
|
34
34
|
};
|
|
35
|
-
/**
|
|
36
|
-
* `e-ribbon-item` directive represent a item in the VueJS Ribbon.
|
|
37
|
-
* ```vue
|
|
38
|
-
* <ejs-ribbon>
|
|
39
|
-
* <e-ribbon-tabs>
|
|
40
|
-
* <e-ribbon-tab></e-ribbon-tab>
|
|
41
|
-
* <e-ribbon-tab>
|
|
42
|
-
* <e-ribbon-groups>
|
|
43
|
-
* <e-ribbon-group>
|
|
44
|
-
* <e-ribbon-collections>
|
|
45
|
-
* <e-ribbon-collection>
|
|
46
|
-
* <e-ribbon-items>
|
|
47
|
-
* <e-ribbon-item></e-ribbon-item>
|
|
48
|
-
* <e-ribbon-item></e-ribbon-item>
|
|
49
|
-
* </e-ribbon-items>
|
|
50
|
-
* </e-ribbon-collection>
|
|
51
|
-
* </e-ribbon-collections>
|
|
52
|
-
* </e-ribbon-group>
|
|
53
|
-
* </e-ribbon-groups>
|
|
54
|
-
* </e-ribbon-tab>
|
|
55
|
-
* </e-ribbon-tabs>
|
|
56
|
-
* </ejs-ribbon>
|
|
57
|
-
* ```
|
|
58
|
-
*/
|
|
59
35
|
let RibbonItemDirective = vueDefineComponent({
|
|
60
36
|
render() {
|
|
61
37
|
return;
|
|
@@ -103,26 +79,6 @@ const RibbonCollectionsPlugin = {
|
|
|
103
79
|
Vue.component(RibbonCollectionsPlugin.name, RibbonCollectionsDirective);
|
|
104
80
|
}
|
|
105
81
|
};
|
|
106
|
-
/**
|
|
107
|
-
* `e-ribbon-collection` directive represent a collection in the VueJS Ribbon.
|
|
108
|
-
* ```vue
|
|
109
|
-
* <ejs-ribbon>
|
|
110
|
-
* <e-ribbon-tabs>
|
|
111
|
-
* <e-ribbon-tab></e-ribbon-tab>
|
|
112
|
-
* <e-ribbon-tab>
|
|
113
|
-
* <e-ribbon-groups>
|
|
114
|
-
* <e-ribbon-group>
|
|
115
|
-
* <e-ribbon-collections>
|
|
116
|
-
* <e-ribbon-collection></e-ribbon-collection>
|
|
117
|
-
* <e-ribbon-collection></e-ribbon-collection>
|
|
118
|
-
* </e-ribbon-collections>
|
|
119
|
-
* </e-ribbon-group>
|
|
120
|
-
* </e-ribbon-groups>
|
|
121
|
-
* </e-ribbon-tab>
|
|
122
|
-
* </e-ribbon-tabs>
|
|
123
|
-
* </ejs-ribbon>
|
|
124
|
-
* ```
|
|
125
|
-
*/
|
|
126
82
|
let RibbonCollectionDirective = vueDefineComponent({
|
|
127
83
|
render() {
|
|
128
84
|
return;
|
|
@@ -170,22 +126,6 @@ const RibbonGroupsPlugin = {
|
|
|
170
126
|
Vue.component(RibbonGroupsPlugin.name, RibbonGroupsDirective);
|
|
171
127
|
}
|
|
172
128
|
};
|
|
173
|
-
/**
|
|
174
|
-
* `e-ribbon-group` directive represent a group in the VueJS Ribbon.
|
|
175
|
-
* ```vue
|
|
176
|
-
* <ejs-ribbon>
|
|
177
|
-
* <e-ribbon-tabs>
|
|
178
|
-
* <e-ribbon-tab></e-ribbon-tab>
|
|
179
|
-
* <e-ribbon-tab>
|
|
180
|
-
* <e-ribbon-groups>
|
|
181
|
-
* <e-ribbon-group></e-ribbon-group>
|
|
182
|
-
* <e-ribbon-group></e-ribbon-group>
|
|
183
|
-
* </e-ribbon-groups>
|
|
184
|
-
* </e-ribbon-tab>
|
|
185
|
-
* </e-ribbon-tabs>
|
|
186
|
-
* </ejs-ribbon>
|
|
187
|
-
* ```
|
|
188
|
-
*/
|
|
189
129
|
let RibbonGroupDirective = vueDefineComponent({
|
|
190
130
|
render() {
|
|
191
131
|
return;
|
|
@@ -233,36 +173,83 @@ const RibbonTabsPlugin = {
|
|
|
233
173
|
Vue.component(RibbonTabsPlugin.name, RibbonTabsDirective);
|
|
234
174
|
}
|
|
235
175
|
};
|
|
176
|
+
let RibbonTabDirective = vueDefineComponent({
|
|
177
|
+
render() {
|
|
178
|
+
return;
|
|
179
|
+
},
|
|
180
|
+
methods: {
|
|
181
|
+
getTag() {
|
|
182
|
+
return 'e-ribbon-tab';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
});
|
|
186
|
+
const RibbonTabPlugin = {
|
|
187
|
+
name: 'e-ribbon-tab',
|
|
188
|
+
install(Vue) {
|
|
189
|
+
Vue.component(RibbonTabPlugin.name, RibbonTabDirective);
|
|
190
|
+
}
|
|
191
|
+
};
|
|
192
|
+
|
|
193
|
+
let RibbonContextualTabsDirective = vueDefineComponent({
|
|
194
|
+
inject: { custom: { default: null } },
|
|
195
|
+
render(createElement) {
|
|
196
|
+
if (!isExecute) {
|
|
197
|
+
let h = !isExecute ? gh : createElement;
|
|
198
|
+
let slots = null;
|
|
199
|
+
if (!isNullOrUndefined(this.$slots.default)) {
|
|
200
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
201
|
+
}
|
|
202
|
+
return h('div', { class: 'e-directive' }, slots);
|
|
203
|
+
}
|
|
204
|
+
return;
|
|
205
|
+
},
|
|
206
|
+
updated() {
|
|
207
|
+
if (!isExecute && this.custom) {
|
|
208
|
+
this.custom();
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
methods: {
|
|
212
|
+
getTag() {
|
|
213
|
+
return 'e-ribbon-contextual-tabs';
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
});
|
|
217
|
+
const RibbonContextualTabsPlugin = {
|
|
218
|
+
name: 'e-ribbon-contextual-tabs',
|
|
219
|
+
install(Vue) {
|
|
220
|
+
Vue.component(RibbonContextualTabsPlugin.name, RibbonContextualTabsDirective);
|
|
221
|
+
}
|
|
222
|
+
};
|
|
236
223
|
/**
|
|
237
|
-
* `e-ribbon-tab` directive represent a
|
|
224
|
+
* `e-ribbon-contextual-tab` directive represent a contextual tab of the VueJS Ribbon.
|
|
238
225
|
* It must be contained in a Ribbon component(`ejs-ribbon`).
|
|
239
226
|
* ```vue
|
|
240
227
|
* <ejs-ribbon>
|
|
241
|
-
* <e-ribbon-tabs>
|
|
242
|
-
* <e-ribbon-tab></e-ribbon-tab>
|
|
243
|
-
* <e-ribbon-tab></e-ribbon-tab>
|
|
244
|
-
* </e-ribbon-tabs>
|
|
228
|
+
* <e-ribbon-contextual-tabs>
|
|
229
|
+
* <e-ribbon-contextual-tab></e-ribbon-contextual-tab>
|
|
230
|
+
* <e-ribbon-contextual-tab></e-ribbon-contextual-tab>
|
|
231
|
+
* </e-ribbon-contextual-tabs>
|
|
245
232
|
* </ejs-ribbon>
|
|
246
233
|
* ```
|
|
247
234
|
*/
|
|
248
|
-
let
|
|
235
|
+
let RibbonContextualTabDirective = vueDefineComponent({
|
|
249
236
|
render() {
|
|
250
237
|
return;
|
|
251
238
|
},
|
|
252
239
|
methods: {
|
|
253
240
|
getTag() {
|
|
254
|
-
return 'e-ribbon-tab';
|
|
241
|
+
return 'e-ribbon-contextual-tab';
|
|
255
242
|
}
|
|
256
243
|
}
|
|
257
244
|
});
|
|
258
|
-
const
|
|
259
|
-
name: 'e-ribbon-tab',
|
|
245
|
+
const RibbonContextualTabPlugin = {
|
|
246
|
+
name: 'e-ribbon-contextual-tab',
|
|
260
247
|
install(Vue) {
|
|
261
|
-
Vue.component(
|
|
248
|
+
Vue.component(RibbonContextualTabPlugin.name, RibbonContextualTabDirective);
|
|
262
249
|
}
|
|
263
250
|
};
|
|
264
251
|
|
|
265
|
-
const properties = ['isLazyUpdate', 'plugins', 'activeLayout', 'backStageMenu', 'cssClass', 'enablePersistence', 'enableRtl', 'fileMenu', 'helpPaneTemplate', 'hideLayoutSwitcher', 'isMinimized', 'launcherIconCss', 'locale', 'selectedTab', 'tabAnimation', 'tabs', 'width', 'created', 'launcherIconClick', 'overflowPopupClose', 'overflowPopupOpen', 'ribbonCollapsing', 'ribbonExpanding', 'tabSelected', 'tabSelecting'];
|
|
252
|
+
const properties = ['isLazyUpdate', 'plugins', 'activeLayout', 'backStageMenu', 'contextualTabs', 'cssClass', 'enableKeyTips', 'enablePersistence', 'enableRtl', 'fileMenu', 'helpPaneTemplate', 'hideLayoutSwitcher', 'isMinimized', 'launcherIconCss', 'layoutSwitcherKeyTip', 'locale', 'selectedTab', 'tabAnimation', 'tabs', 'width', 'created', 'launcherIconClick', 'overflowPopupClose', 'overflowPopupOpen', 'ribbonCollapsing', 'ribbonExpanding', 'tabSelected', 'tabSelecting'];
|
|
266
253
|
const modelProps = [];
|
|
267
254
|
const testProp = getProps({ props: properties });
|
|
268
255
|
const props = testProp[0];
|
|
@@ -292,8 +279,8 @@ let RibbonComponent = vueDefineComponent({
|
|
|
292
279
|
models: modelProps,
|
|
293
280
|
hasChildDirective: true,
|
|
294
281
|
hasInjectedModules: true,
|
|
295
|
-
tagMapper: { "e-ribbon-tabs": { "e-ribbon-tab": { "e-ribbon-groups": { "e-ribbon-group": { "e-ribbon-collections": { "e-ribbon-collection": { "e-ribbon-items": "e-ribbon-item" } } } } } } },
|
|
296
|
-
tagNameMapper: { "e-ribbon-items": "e-items", "e-ribbon-collections": "e-collections", "e-ribbon-groups": "e-groups", "e-ribbon-tabs": "e-tabs" },
|
|
282
|
+
tagMapper: { "e-ribbon-tabs": { "e-ribbon-tab": { "e-ribbon-groups": { "e-ribbon-group": { "e-ribbon-collections": { "e-ribbon-collection": { "e-ribbon-items": "e-ribbon-item" } } } } } }, "e-ribbon-contextual-tabs": { "e-ribbon-contextual-tab": { "e-ribbon-tabs": { "e-ribbon-tab": { "e-ribbon-groups": { "e-ribbon-group": { "e-ribbon-collections": { "e-ribbon-collection": { "e-ribbon-items": "e-ribbon-item" } } } } } } } } },
|
|
283
|
+
tagNameMapper: { "e-ribbon-items": "e-items", "e-ribbon-collections": "e-collections", "e-ribbon-groups": "e-groups", "e-ribbon-tabs": "e-tabs", "e-ribbon-contextual-tabs": "e-contextualTabs" },
|
|
297
284
|
isVue3: !isExecute,
|
|
298
285
|
templateCollection: {},
|
|
299
286
|
};
|
|
@@ -392,14 +379,17 @@ let RibbonComponent = vueDefineComponent({
|
|
|
392
379
|
enableTab(tabId) {
|
|
393
380
|
return this.ej2Instances.enableTab(tabId);
|
|
394
381
|
},
|
|
382
|
+
getItem(itemId) {
|
|
383
|
+
return this.ej2Instances.getItem(itemId);
|
|
384
|
+
},
|
|
395
385
|
hideGroup(groupID) {
|
|
396
386
|
return this.ej2Instances.hideGroup(groupID);
|
|
397
387
|
},
|
|
398
388
|
hideItem(itemId) {
|
|
399
389
|
return this.ej2Instances.hideItem(itemId);
|
|
400
390
|
},
|
|
401
|
-
hideTab(tabId) {
|
|
402
|
-
return this.ej2Instances.hideTab(tabId);
|
|
391
|
+
hideTab(tabId, isContextual) {
|
|
392
|
+
return this.ej2Instances.hideTab(tabId, isContextual);
|
|
403
393
|
},
|
|
404
394
|
refreshLayout() {
|
|
405
395
|
return this.ej2Instances.refreshLayout();
|
|
@@ -425,8 +415,8 @@ let RibbonComponent = vueDefineComponent({
|
|
|
425
415
|
showItem(itemId) {
|
|
426
416
|
return this.ej2Instances.showItem(itemId);
|
|
427
417
|
},
|
|
428
|
-
showTab(tabId) {
|
|
429
|
-
return this.ej2Instances.showTab(tabId);
|
|
418
|
+
showTab(tabId, isContextual) {
|
|
419
|
+
return this.ej2Instances.showTab(tabId, isContextual);
|
|
430
420
|
},
|
|
431
421
|
updateCollection(collection) {
|
|
432
422
|
return this.ej2Instances.updateCollection(collection);
|
|
@@ -454,9 +444,11 @@ const RibbonPlugin = {
|
|
|
454
444
|
Vue.component(RibbonCollectionsPlugin.name, RibbonCollectionsDirective);
|
|
455
445
|
Vue.component(RibbonItemPlugin.name, RibbonItemDirective);
|
|
456
446
|
Vue.component(RibbonItemsPlugin.name, RibbonItemsDirective);
|
|
447
|
+
Vue.component(RibbonContextualTabPlugin.name, RibbonContextualTabDirective);
|
|
448
|
+
Vue.component(RibbonContextualTabsPlugin.name, RibbonContextualTabsDirective);
|
|
457
449
|
}
|
|
458
450
|
};
|
|
459
451
|
|
|
460
|
-
export { RibbonItemsDirective, RibbonItemDirective, RibbonItemsPlugin, RibbonItemPlugin, RibbonCollectionsDirective, RibbonCollectionDirective, RibbonCollectionsPlugin, RibbonCollectionPlugin, RibbonGroupsDirective, RibbonGroupDirective, RibbonGroupsPlugin, RibbonGroupPlugin, RibbonTabsDirective, RibbonTabDirective, RibbonTabsPlugin, RibbonTabPlugin, RibbonComponent, RibbonPlugin };
|
|
452
|
+
export { RibbonItemsDirective, RibbonItemDirective, RibbonItemsPlugin, RibbonItemPlugin, RibbonCollectionsDirective, RibbonCollectionDirective, RibbonCollectionsPlugin, RibbonCollectionPlugin, RibbonGroupsDirective, RibbonGroupDirective, RibbonGroupsPlugin, RibbonGroupPlugin, RibbonTabsDirective, RibbonTabDirective, RibbonTabsPlugin, RibbonTabPlugin, RibbonContextualTabsDirective, RibbonContextualTabDirective, RibbonContextualTabsPlugin, RibbonContextualTabPlugin, RibbonComponent, RibbonPlugin };
|
|
461
453
|
export * from '@syncfusion/ej2-ribbon';
|
|
462
454
|
//# sourceMappingURL=ej2-vue-ribbon.es2015.js.map
|