@syncfusion/ej2-vue-ribbon 21.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.
Files changed (90) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +3 -0
  3. package/dist/ej2-vue-ribbon.umd.min.js +11 -0
  4. package/dist/ej2-vue-ribbon.umd.min.js.map +1 -0
  5. package/dist/es6/ej2-vue-ribbon.es2015.js +420 -0
  6. package/dist/es6/ej2-vue-ribbon.es2015.js.map +1 -0
  7. package/dist/es6/ej2-vue-ribbon.es5.js +424 -0
  8. package/dist/es6/ej2-vue-ribbon.es5.js.map +1 -0
  9. package/dist/global/ej2-vue-ribbon.min.js +10 -0
  10. package/index.d.ts +4 -0
  11. package/index.js +4 -0
  12. package/license +6 -0
  13. package/package.json +62 -0
  14. package/ribbon.d.ts +4 -0
  15. package/ribbon.js +4 -0
  16. package/src/global.js +1 -0
  17. package/src/index.d.ts +6 -0
  18. package/src/index.js +6 -0
  19. package/src/ribbon/collections.directive.d.ts +30 -0
  20. package/src/ribbon/collections.directive.js +68 -0
  21. package/src/ribbon/groups.directive.d.ts +26 -0
  22. package/src/ribbon/groups.directive.js +64 -0
  23. package/src/ribbon/index.d.ts +5 -0
  24. package/src/ribbon/index.js +5 -0
  25. package/src/ribbon/items.directive.d.ts +34 -0
  26. package/src/ribbon/items.directive.js +72 -0
  27. package/src/ribbon/ribbon.component.d.ts +16 -0
  28. package/src/ribbon/ribbon.component.js +161 -0
  29. package/src/ribbon/tabs.directive.d.ts +22 -0
  30. package/src/ribbon/tabs.directive.js +60 -0
  31. package/styles/bootstrap-dark.css +1502 -0
  32. package/styles/bootstrap-dark.scss +1 -0
  33. package/styles/bootstrap.css +1507 -0
  34. package/styles/bootstrap.scss +1 -0
  35. package/styles/bootstrap4.css +1557 -0
  36. package/styles/bootstrap4.scss +1 -0
  37. package/styles/bootstrap5-dark.css +1586 -0
  38. package/styles/bootstrap5-dark.scss +1 -0
  39. package/styles/bootstrap5.css +1586 -0
  40. package/styles/bootstrap5.scss +1 -0
  41. package/styles/fabric-dark.css +1478 -0
  42. package/styles/fabric-dark.scss +1 -0
  43. package/styles/fabric.css +1476 -0
  44. package/styles/fabric.scss +1 -0
  45. package/styles/fluent-dark.css +1562 -0
  46. package/styles/fluent-dark.scss +1 -0
  47. package/styles/fluent.css +1562 -0
  48. package/styles/fluent.scss +1 -0
  49. package/styles/highcontrast-light.css +1485 -0
  50. package/styles/highcontrast-light.scss +1 -0
  51. package/styles/highcontrast.css +1494 -0
  52. package/styles/highcontrast.scss +1 -0
  53. package/styles/material-dark.css +1548 -0
  54. package/styles/material-dark.scss +1 -0
  55. package/styles/material.css +1581 -0
  56. package/styles/material.scss +1 -0
  57. package/styles/ribbon/bootstrap-dark.css +1502 -0
  58. package/styles/ribbon/bootstrap-dark.scss +1 -0
  59. package/styles/ribbon/bootstrap.css +1507 -0
  60. package/styles/ribbon/bootstrap.scss +1 -0
  61. package/styles/ribbon/bootstrap4.css +1557 -0
  62. package/styles/ribbon/bootstrap4.scss +1 -0
  63. package/styles/ribbon/bootstrap5-dark.css +1586 -0
  64. package/styles/ribbon/bootstrap5-dark.scss +1 -0
  65. package/styles/ribbon/bootstrap5.css +1586 -0
  66. package/styles/ribbon/bootstrap5.scss +1 -0
  67. package/styles/ribbon/fabric-dark.css +1478 -0
  68. package/styles/ribbon/fabric-dark.scss +1 -0
  69. package/styles/ribbon/fabric.css +1476 -0
  70. package/styles/ribbon/fabric.scss +1 -0
  71. package/styles/ribbon/fluent-dark.css +1562 -0
  72. package/styles/ribbon/fluent-dark.scss +1 -0
  73. package/styles/ribbon/fluent.css +1562 -0
  74. package/styles/ribbon/fluent.scss +1 -0
  75. package/styles/ribbon/highcontrast-light.css +1485 -0
  76. package/styles/ribbon/highcontrast-light.scss +1 -0
  77. package/styles/ribbon/highcontrast.css +1494 -0
  78. package/styles/ribbon/highcontrast.scss +1 -0
  79. package/styles/ribbon/material-dark.css +1548 -0
  80. package/styles/ribbon/material-dark.scss +1 -0
  81. package/styles/ribbon/material.css +1581 -0
  82. package/styles/ribbon/material.scss +1 -0
  83. package/styles/ribbon/tailwind-dark.css +1560 -0
  84. package/styles/ribbon/tailwind-dark.scss +1 -0
  85. package/styles/ribbon/tailwind.css +1560 -0
  86. package/styles/ribbon/tailwind.scss +1 -0
  87. package/styles/tailwind-dark.css +1560 -0
  88. package/styles/tailwind-dark.scss +1 -0
  89. package/styles/tailwind.css +1560 -0
  90. package/styles/tailwind.scss +1 -0
@@ -0,0 +1,424 @@
1
+ import { Ribbon } from '@syncfusion/ej2-ribbon';
2
+ import { ComponentBase, getProps, gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
3
+ import { getValue, isNullOrUndefined } from '@syncfusion/ej2-base';
4
+
5
+ var RibbonItemsDirective = vueDefineComponent({
6
+ inject: { custom: { default: null } },
7
+ render: function (createElement) {
8
+ if (!isExecute) {
9
+ var h = !isExecute ? gh : createElement;
10
+ var slots = null;
11
+ if (!isNullOrUndefined(this.$slots.default)) {
12
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
13
+ }
14
+ return h('div', { class: 'e-directive' }, slots);
15
+ }
16
+ return;
17
+ },
18
+ updated: function () {
19
+ if (!isExecute && this.custom) {
20
+ this.custom();
21
+ }
22
+ },
23
+ methods: {
24
+ getTag: function () {
25
+ return 'e-ribbon-items';
26
+ }
27
+ }
28
+ });
29
+ var RibbonItemsPlugin = {
30
+ name: 'e-ribbon-items',
31
+ install: function (Vue) {
32
+ Vue.component(RibbonItemsPlugin.name, RibbonItemsDirective);
33
+ }
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
+ var RibbonItemDirective = vueDefineComponent({
60
+ render: function () {
61
+ return;
62
+ },
63
+ methods: {
64
+ getTag: function () {
65
+ return 'e-ribbon-item';
66
+ }
67
+ }
68
+ });
69
+ var RibbonItemPlugin = {
70
+ name: 'e-ribbon-item',
71
+ install: function (Vue) {
72
+ Vue.component(RibbonItemPlugin.name, RibbonItemDirective);
73
+ }
74
+ };
75
+
76
+ var RibbonCollectionsDirective = vueDefineComponent({
77
+ inject: { custom: { default: null } },
78
+ render: function (createElement) {
79
+ if (!isExecute) {
80
+ var h = !isExecute ? gh : createElement;
81
+ var slots = null;
82
+ if (!isNullOrUndefined(this.$slots.default)) {
83
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
84
+ }
85
+ return h('div', { class: 'e-directive' }, slots);
86
+ }
87
+ return;
88
+ },
89
+ updated: function () {
90
+ if (!isExecute && this.custom) {
91
+ this.custom();
92
+ }
93
+ },
94
+ methods: {
95
+ getTag: function () {
96
+ return 'e-ribbon-collections';
97
+ }
98
+ }
99
+ });
100
+ var RibbonCollectionsPlugin = {
101
+ name: 'e-ribbon-collections',
102
+ install: function (Vue) {
103
+ Vue.component(RibbonCollectionsPlugin.name, RibbonCollectionsDirective);
104
+ }
105
+ };
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
+ var RibbonCollectionDirective = vueDefineComponent({
127
+ render: function () {
128
+ return;
129
+ },
130
+ methods: {
131
+ getTag: function () {
132
+ return 'e-ribbon-collection';
133
+ }
134
+ }
135
+ });
136
+ var RibbonCollectionPlugin = {
137
+ name: 'e-ribbon-collection',
138
+ install: function (Vue) {
139
+ Vue.component(RibbonCollectionPlugin.name, RibbonCollectionDirective);
140
+ }
141
+ };
142
+
143
+ var RibbonGroupsDirective = vueDefineComponent({
144
+ inject: { custom: { default: null } },
145
+ render: function (createElement) {
146
+ if (!isExecute) {
147
+ var h = !isExecute ? gh : createElement;
148
+ var slots = null;
149
+ if (!isNullOrUndefined(this.$slots.default)) {
150
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
151
+ }
152
+ return h('div', { class: 'e-directive' }, slots);
153
+ }
154
+ return;
155
+ },
156
+ updated: function () {
157
+ if (!isExecute && this.custom) {
158
+ this.custom();
159
+ }
160
+ },
161
+ methods: {
162
+ getTag: function () {
163
+ return 'e-ribbon-groups';
164
+ }
165
+ }
166
+ });
167
+ var RibbonGroupsPlugin = {
168
+ name: 'e-ribbon-groups',
169
+ install: function (Vue) {
170
+ Vue.component(RibbonGroupsPlugin.name, RibbonGroupsDirective);
171
+ }
172
+ };
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
+ var RibbonGroupDirective = vueDefineComponent({
190
+ render: function () {
191
+ return;
192
+ },
193
+ methods: {
194
+ getTag: function () {
195
+ return 'e-ribbon-group';
196
+ }
197
+ }
198
+ });
199
+ var RibbonGroupPlugin = {
200
+ name: 'e-ribbon-group',
201
+ install: function (Vue) {
202
+ Vue.component(RibbonGroupPlugin.name, RibbonGroupDirective);
203
+ }
204
+ };
205
+
206
+ var RibbonTabsDirective = vueDefineComponent({
207
+ inject: { custom: { default: null } },
208
+ render: function (createElement) {
209
+ if (!isExecute) {
210
+ var h = !isExecute ? gh : createElement;
211
+ var slots = null;
212
+ if (!isNullOrUndefined(this.$slots.default)) {
213
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
214
+ }
215
+ return h('div', { class: 'e-directive' }, slots);
216
+ }
217
+ return;
218
+ },
219
+ updated: function () {
220
+ if (!isExecute && this.custom) {
221
+ this.custom();
222
+ }
223
+ },
224
+ methods: {
225
+ getTag: function () {
226
+ return 'e-ribbon-tabs';
227
+ }
228
+ }
229
+ });
230
+ var RibbonTabsPlugin = {
231
+ name: 'e-ribbon-tabs',
232
+ install: function (Vue) {
233
+ Vue.component(RibbonTabsPlugin.name, RibbonTabsDirective);
234
+ }
235
+ };
236
+ /**
237
+ * `e-ribbon-tab` directive represent a column of the VueJS Ribbon.
238
+ * It must be contained in a Ribbon component(`ejs-ribbon`).
239
+ * ```vue
240
+ * <ejs-ribbon>
241
+ * <e-ribbon-tabs>
242
+ * <e-ribbon-tab></e-ribbon-tab>
243
+ * <e-ribbon-tab></e-ribbon-tab>
244
+ * </e-ribbon-tabs>
245
+ * </ejs-ribbon>
246
+ * ```
247
+ */
248
+ var RibbonTabDirective = vueDefineComponent({
249
+ render: function () {
250
+ return;
251
+ },
252
+ methods: {
253
+ getTag: function () {
254
+ return 'e-ribbon-tab';
255
+ }
256
+ }
257
+ });
258
+ var RibbonTabPlugin = {
259
+ name: 'e-ribbon-tab',
260
+ install: function (Vue) {
261
+ Vue.component(RibbonTabPlugin.name, RibbonTabDirective);
262
+ }
263
+ };
264
+
265
+ var properties = ['isLazyUpdate', 'plugins', 'activeLayout', 'cssClass', 'enablePersistence', 'enableRtl', 'fileMenu', 'helpPaneTemplate', 'isMinimized', 'launcherIconCss', 'locale', 'selectedTab', 'tabAnimation', 'tabs', 'width', 'launcherIconClick', 'ribbonCollapsing', 'ribbonExpanding', 'tabSelected', 'tabSelecting'];
266
+ var modelProps = [];
267
+ var testProp = getProps({ props: properties });
268
+ var props = testProp[0];
269
+ var watch = testProp[1];
270
+ var emitProbs = Object.keys(watch);
271
+ emitProbs.push('modelchanged', 'update:modelValue');
272
+ for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
273
+ var props_1 = modelProps_1[_i];
274
+ emitProbs.push('update:' + props_1);
275
+ }
276
+ /**
277
+ * Represents the Essential JS 2 VueJS Ribbon Component
278
+ * ```vue
279
+ * <ejs-ribbon></ejs-ribbon>
280
+ * ```
281
+ */
282
+ var RibbonComponent = vueDefineComponent({
283
+ name: 'RibbonComponent',
284
+ mixins: [ComponentBase],
285
+ props: props,
286
+ watch: watch,
287
+ emits: emitProbs,
288
+ provide: function () { return { custom: this.custom }; },
289
+ data: function () {
290
+ return {
291
+ ej2Instances: new Ribbon({}),
292
+ propKeys: properties,
293
+ models: modelProps,
294
+ hasChildDirective: true,
295
+ hasInjectedModules: true,
296
+ 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" } } } } } } },
297
+ tagNameMapper: { "e-ribbon-items": "e-items", "e-ribbon-collections": "e-collections", "e-ribbon-groups": "e-groups", "e-ribbon-tabs": "e-tabs" },
298
+ isVue3: !isExecute,
299
+ templateCollection: {},
300
+ };
301
+ },
302
+ created: function () {
303
+ this.bindProperties();
304
+ this.ej2Instances._setProperties = this.ej2Instances.setProperties;
305
+ this.ej2Instances.setProperties = this.setProperties;
306
+ this.ej2Instances.clearTemplate = this.clearTemplate;
307
+ this.updated = this.updated;
308
+ },
309
+ render: function (createElement) {
310
+ var h = !isExecute ? gh : createElement;
311
+ var slots = null;
312
+ if (!isNullOrUndefined(this.$slots.default)) {
313
+ slots = !isExecute ? this.$slots.default() : this.$slots.default;
314
+ }
315
+ return h('div', slots);
316
+ },
317
+ methods: {
318
+ clearTemplate: function (templateNames) {
319
+ if (!templateNames) {
320
+ templateNames = Object.keys(this.templateCollection || {});
321
+ }
322
+ if (templateNames.length && this.templateCollection) {
323
+ for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {
324
+ var tempName = templateNames_1[_i];
325
+ var elementCollection = this.templateCollection[tempName];
326
+ if (elementCollection && elementCollection.length) {
327
+ for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {
328
+ var ele = elementCollection_1[_a];
329
+ var destroy = getValue('__vue__.$destroy', ele);
330
+ if (destroy) {
331
+ ele.__vue__.$destroy();
332
+ }
333
+ if (ele.innerHTML) {
334
+ ele.innerHTML = '';
335
+ }
336
+ }
337
+ delete this.templateCollection[tempName];
338
+ }
339
+ }
340
+ }
341
+ },
342
+ setProperties: function (prop, muteOnChange) {
343
+ var _this = this;
344
+ if (this.isVue3) {
345
+ this.models = !this.models ? this.ej2Instances.referModels : this.models;
346
+ }
347
+ if (this.ej2Instances && this.ej2Instances._setProperties) {
348
+ this.ej2Instances._setProperties(prop, muteOnChange);
349
+ }
350
+ if (prop && this.models && this.models.length) {
351
+ Object.keys(prop).map(function (key) {
352
+ _this.models.map(function (model) {
353
+ if ((key === model) && !(/datasource/i.test(key))) {
354
+ if (_this.isVue3) {
355
+ _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);
356
+ }
357
+ else {
358
+ _this.$emit('update:' + key, prop[key]);
359
+ _this.$emit('modelchanged', prop[key]);
360
+ }
361
+ }
362
+ });
363
+ });
364
+ }
365
+ },
366
+ custom: function () {
367
+ this.updated();
368
+ },
369
+ addCollection: function (groupId, collection, targetId, isAfter) {
370
+ return this.ej2Instances.addCollection(groupId, collection, targetId, isAfter);
371
+ },
372
+ addGroup: function (tabId, group, targetId, isAfter) {
373
+ return this.ej2Instances.addGroup(tabId, group, targetId, isAfter);
374
+ },
375
+ addItem: function (collectionId, item, targetId, isAfter) {
376
+ return this.ej2Instances.addItem(collectionId, item, targetId, isAfter);
377
+ },
378
+ addTab: function (tab, targetId, isAfter) {
379
+ return this.ej2Instances.addTab(tab, targetId, isAfter);
380
+ },
381
+ disableItem: function (itemId) {
382
+ return this.ej2Instances.disableItem(itemId);
383
+ },
384
+ enableItem: function (itemId) {
385
+ return this.ej2Instances.enableItem(itemId);
386
+ },
387
+ refreshLayout: function () {
388
+ return this.ej2Instances.refreshLayout();
389
+ },
390
+ removeCollection: function (collectionId) {
391
+ return this.ej2Instances.removeCollection(collectionId);
392
+ },
393
+ removeGroup: function (groupId) {
394
+ return this.ej2Instances.removeGroup(groupId);
395
+ },
396
+ removeItem: function (itemId) {
397
+ return this.ej2Instances.removeItem(itemId);
398
+ },
399
+ removeTab: function (tabId) {
400
+ return this.ej2Instances.removeTab(tabId);
401
+ },
402
+ selectTab: function (tabId) {
403
+ return this.ej2Instances.selectTab(tabId);
404
+ },
405
+ }
406
+ });
407
+ var RibbonPlugin = {
408
+ name: 'ejs-ribbon',
409
+ install: function (Vue) {
410
+ Vue.component(RibbonPlugin.name, RibbonComponent);
411
+ Vue.component(RibbonTabPlugin.name, RibbonTabDirective);
412
+ Vue.component(RibbonTabsPlugin.name, RibbonTabsDirective);
413
+ Vue.component(RibbonGroupPlugin.name, RibbonGroupDirective);
414
+ Vue.component(RibbonGroupsPlugin.name, RibbonGroupsDirective);
415
+ Vue.component(RibbonCollectionPlugin.name, RibbonCollectionDirective);
416
+ Vue.component(RibbonCollectionsPlugin.name, RibbonCollectionsDirective);
417
+ Vue.component(RibbonItemPlugin.name, RibbonItemDirective);
418
+ Vue.component(RibbonItemsPlugin.name, RibbonItemsDirective);
419
+ }
420
+ };
421
+
422
+ export { RibbonItemsDirective, RibbonItemDirective, RibbonItemsPlugin, RibbonItemPlugin, RibbonCollectionsDirective, RibbonCollectionDirective, RibbonCollectionsPlugin, RibbonCollectionPlugin, RibbonGroupsDirective, RibbonGroupDirective, RibbonGroupsPlugin, RibbonGroupPlugin, RibbonTabsDirective, RibbonTabDirective, RibbonTabsPlugin, RibbonTabPlugin, RibbonComponent, RibbonPlugin };
423
+ export * from '@syncfusion/ej2-ribbon';
424
+ //# sourceMappingURL=ej2-vue-ribbon.es5.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ej2-vue-ribbon.es5.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', 'cssClass', 'enablePersistence', 'enableRtl', 'fileMenu', 'helpPaneTemplate', 'isMinimized', 'launcherIconCss', 'locale', 'selectedTab', 'tabAnimation', 'tabs', 'width', 'launcherIconClick', '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 disableItem: function (itemId) {\n return this.ej2Instances.disableItem(itemId);\n },\n enableItem: function (itemId) {\n return this.ej2Instances.enableItem(itemId);\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 }\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":[],"mappings":"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"}