@syncfusion/ej2-vue-diagrams 20.1.47 → 20.1.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/CHANGELOG.md +10 -4
  2. package/dist/ej2-vue-diagrams.umd.min.js +2 -2
  3. package/dist/es6/ej2-vue-diagrams.es2015.js +27 -389
  4. package/dist/es6/ej2-vue-diagrams.es2015.js.map +1 -1
  5. package/dist/es6/ej2-vue-diagrams.es5.js +25 -262
  6. package/dist/es6/ej2-vue-diagrams.es5.js.map +1 -1
  7. package/dist/global/ej2-vue-diagrams.min.js +2 -2
  8. package/package.json +14 -8
  9. package/src/diagram/connector-annotation.directive.d.ts +1 -3
  10. package/src/diagram/connector-annotation.directive.js +2 -24
  11. package/src/diagram/connector-fixeduserhandle.directive.d.ts +1 -3
  12. package/src/diagram/connector-fixeduserhandle.directive.js +2 -24
  13. package/src/diagram/connectors.directive.d.ts +1 -3
  14. package/src/diagram/connectors.directive.js +2 -24
  15. package/src/diagram/customcursor.directive.d.ts +1 -3
  16. package/src/diagram/customcursor.directive.js +2 -24
  17. package/src/diagram/diagram.component.d.ts +0 -1
  18. package/src/diagram/diagram.component.js +1 -10
  19. package/src/diagram/layers.directive.d.ts +1 -3
  20. package/src/diagram/layers.directive.js +2 -24
  21. package/src/diagram/node-annotation.directive.d.ts +1 -3
  22. package/src/diagram/node-annotation.directive.js +2 -24
  23. package/src/diagram/node-fixeduserhandle.directive.d.ts +1 -3
  24. package/src/diagram/node-fixeduserhandle.directive.js +2 -24
  25. package/src/diagram/nodes.directive.d.ts +1 -3
  26. package/src/diagram/nodes.directive.js +2 -24
  27. package/src/diagram/ports.directive.d.ts +1 -3
  28. package/src/diagram/ports.directive.js +2 -24
  29. package/src/overview/overview.component.d.ts +0 -1
  30. package/src/overview/overview.component.js +1 -10
  31. package/src/symbol-palette/palettes.directive.d.ts +1 -3
  32. package/src/symbol-palette/palettes.directive.js +2 -24
  33. package/src/symbol-palette/symbolpalette.component.d.ts +0 -1
  34. package/src/symbol-palette/symbolpalette.component.js +1 -10
  35. package/styles/diagram/fluent-dark.css +0 -396
  36. package/styles/diagram/fluent-dark.scss +0 -1
  37. package/styles/diagram/fluent.css +0 -396
  38. package/styles/diagram/fluent.scss +0 -1
  39. package/styles/fluent-dark.css +0 -396
  40. package/styles/fluent-dark.scss +0 -1
  41. package/styles/fluent.css +0 -396
  42. package/styles/fluent.scss +0 -1
@@ -1,8 +1,8 @@
1
1
  import { Diagram, Overview, SymbolPalette } from '@syncfusion/ej2-diagrams';
2
2
  import { ComponentBase, EJComponentDecorator, allVue, getProps, gh } from '@syncfusion/ej2-vue-base';
3
3
  import { Vue } from 'vue-class-component';
4
- import { getValue, isNullOrUndefined } from '@syncfusion/ej2-base';
5
4
  import Vue$1 from 'vue';
5
+ import { getValue, isNullOrUndefined } from '@syncfusion/ej2-base';
6
6
 
7
7
  var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
8
8
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -10,7 +10,6 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
10
10
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
11
11
  return c > 3 && r && Object.defineProperty(target, key, r), r;
12
12
  };
13
- // {{VueImport}}
14
13
  const isExecute = gh ? false : true;
15
14
  let vueImport;
16
15
  if (!isExecute || parseInt(allVue.version) < 3) {
@@ -19,47 +18,16 @@ if (!isExecute || parseInt(allVue.version) < 3) {
19
18
  else {
20
19
  vueImport = Vue$1;
21
20
  }
22
- let LayersDirective =
23
- /* Start Options({
24
- inject: {
25
- custom: {
26
- default: null
27
- }
28
- }
29
- }) End */
30
- class LayersDirective extends vueImport {
31
- constructor() {
32
- super(arguments);
33
- }
34
- render(createElement) {
35
- if (gh) {
36
- let h = gh || createElement;
37
- let slots = null;
38
- if (!isNullOrUndefined(this.$slots.default)) {
39
- slots = gh ? this.$slots.default() : this.$slots.default;
40
- }
41
- return h('div', { class: 'e-directive' }, slots);
42
- }
21
+ let LayersDirective = class LayersDirective extends vueImport {
22
+ render() {
43
23
  return;
44
24
  }
45
- updated() {
46
- if (gh && this.custom) {
47
- this.custom();
48
- }
49
- }
50
25
  getTag() {
51
26
  return 'e-layers';
52
27
  }
53
28
  };
54
29
  LayersDirective = __decorate([
55
30
  EJComponentDecorator({}, isExecute)
56
- /* Start Options({
57
- inject: {
58
- custom: {
59
- default: null
60
- }
61
- }
62
- }) End */
63
31
  ], LayersDirective);
64
32
  const LayersPlugin = {
65
33
  name: 'e-layers',
@@ -103,7 +71,6 @@ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators,
103
71
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
104
72
  return c > 3 && r && Object.defineProperty(target, key, r), r;
105
73
  };
106
- // {{VueImport}}
107
74
  const isExecute$1 = gh ? false : true;
108
75
  let vueImport$1;
109
76
  if (!isExecute$1 || parseInt(allVue.version) < 3) {
@@ -112,47 +79,16 @@ if (!isExecute$1 || parseInt(allVue.version) < 3) {
112
79
  else {
113
80
  vueImport$1 = Vue$1;
114
81
  }
115
- let CustomCursorsDirective =
116
- /* Start Options({
117
- inject: {
118
- custom: {
119
- default: null
120
- }
121
- }
122
- }) End */
123
- class CustomCursorsDirective extends vueImport$1 {
124
- constructor() {
125
- super(arguments);
126
- }
127
- render(createElement) {
128
- if (gh) {
129
- let h = gh || createElement;
130
- let slots = null;
131
- if (!isNullOrUndefined(this.$slots.default)) {
132
- slots = gh ? this.$slots.default() : this.$slots.default;
133
- }
134
- return h('div', { class: 'e-directive' }, slots);
135
- }
82
+ let CustomCursorsDirective = class CustomCursorsDirective extends vueImport$1 {
83
+ render() {
136
84
  return;
137
85
  }
138
- updated() {
139
- if (gh && this.custom) {
140
- this.custom();
141
- }
142
- }
143
86
  getTag() {
144
87
  return 'e-cursormaps';
145
88
  }
146
89
  };
147
90
  CustomCursorsDirective = __decorate$1([
148
91
  EJComponentDecorator({}, isExecute$1)
149
- /* Start Options({
150
- inject: {
151
- custom: {
152
- default: null
153
- }
154
- }
155
- }) End */
156
92
  ], CustomCursorsDirective);
157
93
  const CustomCursorsPlugin = {
158
94
  name: 'e-cursormaps',
@@ -196,7 +132,6 @@ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators,
196
132
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
197
133
  return c > 3 && r && Object.defineProperty(target, key, r), r;
198
134
  };
199
- // {{VueImport}}
200
135
  const isExecute$2 = gh ? false : true;
201
136
  let vueImport$2;
202
137
  if (!isExecute$2 || parseInt(allVue.version) < 3) {
@@ -205,47 +140,16 @@ if (!isExecute$2 || parseInt(allVue.version) < 3) {
205
140
  else {
206
141
  vueImport$2 = Vue$1;
207
142
  }
208
- let ConnectorFixedUserHandlesDirective =
209
- /* Start Options({
210
- inject: {
211
- custom: {
212
- default: null
213
- }
214
- }
215
- }) End */
216
- class ConnectorFixedUserHandlesDirective extends vueImport$2 {
217
- constructor() {
218
- super(arguments);
219
- }
220
- render(createElement) {
221
- if (gh) {
222
- let h = gh || createElement;
223
- let slots = null;
224
- if (!isNullOrUndefined(this.$slots.default)) {
225
- slots = gh ? this.$slots.default() : this.$slots.default;
226
- }
227
- return h('div', { class: 'e-directive' }, slots);
228
- }
143
+ let ConnectorFixedUserHandlesDirective = class ConnectorFixedUserHandlesDirective extends vueImport$2 {
144
+ render() {
229
145
  return;
230
146
  }
231
- updated() {
232
- if (gh && this.custom) {
233
- this.custom();
234
- }
235
- }
236
147
  getTag() {
237
148
  return 'e-connector-fixeduserhandles';
238
149
  }
239
150
  };
240
151
  ConnectorFixedUserHandlesDirective = __decorate$2([
241
152
  EJComponentDecorator({}, isExecute$2)
242
- /* Start Options({
243
- inject: {
244
- custom: {
245
- default: null
246
- }
247
- }
248
- }) End */
249
153
  ], ConnectorFixedUserHandlesDirective);
250
154
  const ConnectorFixedUserHandlesPlugin = {
251
155
  name: 'e-connector-fixeduserhandles',
@@ -293,7 +197,6 @@ var __decorate$3 = (undefined && undefined.__decorate) || function (decorators,
293
197
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
294
198
  return c > 3 && r && Object.defineProperty(target, key, r), r;
295
199
  };
296
- // {{VueImport}}
297
200
  const isExecute$3 = gh ? false : true;
298
201
  let vueImport$3;
299
202
  if (!isExecute$3 || parseInt(allVue.version) < 3) {
@@ -302,47 +205,16 @@ if (!isExecute$3 || parseInt(allVue.version) < 3) {
302
205
  else {
303
206
  vueImport$3 = Vue$1;
304
207
  }
305
- let ConnectorAnnotationsDirective =
306
- /* Start Options({
307
- inject: {
308
- custom: {
309
- default: null
310
- }
311
- }
312
- }) End */
313
- class ConnectorAnnotationsDirective extends vueImport$3 {
314
- constructor() {
315
- super(arguments);
316
- }
317
- render(createElement) {
318
- if (gh) {
319
- let h = gh || createElement;
320
- let slots = null;
321
- if (!isNullOrUndefined(this.$slots.default)) {
322
- slots = gh ? this.$slots.default() : this.$slots.default;
323
- }
324
- return h('div', { class: 'e-directive' }, slots);
325
- }
208
+ let ConnectorAnnotationsDirective = class ConnectorAnnotationsDirective extends vueImport$3 {
209
+ render() {
326
210
  return;
327
211
  }
328
- updated() {
329
- if (gh && this.custom) {
330
- this.custom();
331
- }
332
- }
333
212
  getTag() {
334
213
  return 'e-connector-annotations';
335
214
  }
336
215
  };
337
216
  ConnectorAnnotationsDirective = __decorate$3([
338
217
  EJComponentDecorator({}, isExecute$3)
339
- /* Start Options({
340
- inject: {
341
- custom: {
342
- default: null
343
- }
344
- }
345
- }) End */
346
218
  ], ConnectorAnnotationsDirective);
347
219
  const ConnectorAnnotationsPlugin = {
348
220
  name: 'e-connector-annotations',
@@ -390,7 +262,6 @@ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators,
390
262
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
391
263
  return c > 3 && r && Object.defineProperty(target, key, r), r;
392
264
  };
393
- // {{VueImport}}
394
265
  const isExecute$4 = gh ? false : true;
395
266
  let vueImport$4;
396
267
  if (!isExecute$4 || parseInt(allVue.version) < 3) {
@@ -399,47 +270,16 @@ if (!isExecute$4 || parseInt(allVue.version) < 3) {
399
270
  else {
400
271
  vueImport$4 = Vue$1;
401
272
  }
402
- let ConnectorsDirective =
403
- /* Start Options({
404
- inject: {
405
- custom: {
406
- default: null
407
- }
408
- }
409
- }) End */
410
- class ConnectorsDirective extends vueImport$4 {
411
- constructor() {
412
- super(arguments);
413
- }
414
- render(createElement) {
415
- if (gh) {
416
- let h = gh || createElement;
417
- let slots = null;
418
- if (!isNullOrUndefined(this.$slots.default)) {
419
- slots = gh ? this.$slots.default() : this.$slots.default;
420
- }
421
- return h('div', { class: 'e-directive' }, slots);
422
- }
273
+ let ConnectorsDirective = class ConnectorsDirective extends vueImport$4 {
274
+ render() {
423
275
  return;
424
276
  }
425
- updated() {
426
- if (gh && this.custom) {
427
- this.custom();
428
- }
429
- }
430
277
  getTag() {
431
278
  return 'e-connectors';
432
279
  }
433
280
  };
434
281
  ConnectorsDirective = __decorate$4([
435
282
  EJComponentDecorator({}, isExecute$4)
436
- /* Start Options({
437
- inject: {
438
- custom: {
439
- default: null
440
- }
441
- }
442
- }) End */
443
283
  ], ConnectorsDirective);
444
284
  const ConnectorsPlugin = {
445
285
  name: 'e-connectors',
@@ -482,7 +322,6 @@ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators,
482
322
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
483
323
  return c > 3 && r && Object.defineProperty(target, key, r), r;
484
324
  };
485
- // {{VueImport}}
486
325
  const isExecute$5 = gh ? false : true;
487
326
  let vueImport$5;
488
327
  if (!isExecute$5 || parseInt(allVue.version) < 3) {
@@ -491,47 +330,16 @@ if (!isExecute$5 || parseInt(allVue.version) < 3) {
491
330
  else {
492
331
  vueImport$5 = Vue$1;
493
332
  }
494
- let NodeFixedUserHandlesDirective =
495
- /* Start Options({
496
- inject: {
497
- custom: {
498
- default: null
499
- }
500
- }
501
- }) End */
502
- class NodeFixedUserHandlesDirective extends vueImport$5 {
503
- constructor() {
504
- super(arguments);
505
- }
506
- render(createElement) {
507
- if (gh) {
508
- let h = gh || createElement;
509
- let slots = null;
510
- if (!isNullOrUndefined(this.$slots.default)) {
511
- slots = gh ? this.$slots.default() : this.$slots.default;
512
- }
513
- return h('div', { class: 'e-directive' }, slots);
514
- }
333
+ let NodeFixedUserHandlesDirective = class NodeFixedUserHandlesDirective extends vueImport$5 {
334
+ render() {
515
335
  return;
516
336
  }
517
- updated() {
518
- if (gh && this.custom) {
519
- this.custom();
520
- }
521
- }
522
337
  getTag() {
523
338
  return 'e-node-fixeduserhandles';
524
339
  }
525
340
  };
526
341
  NodeFixedUserHandlesDirective = __decorate$5([
527
342
  EJComponentDecorator({}, isExecute$5)
528
- /* Start Options({
529
- inject: {
530
- custom: {
531
- default: null
532
- }
533
- }
534
- }) End */
535
343
  ], NodeFixedUserHandlesDirective);
536
344
  const NodeFixedUserHandlesPlugin = {
537
345
  name: 'e-node-fixeduserhandles',
@@ -579,7 +387,6 @@ var __decorate$6 = (undefined && undefined.__decorate) || function (decorators,
579
387
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
580
388
  return c > 3 && r && Object.defineProperty(target, key, r), r;
581
389
  };
582
- // {{VueImport}}
583
390
  const isExecute$6 = gh ? false : true;
584
391
  let vueImport$6;
585
392
  if (!isExecute$6 || parseInt(allVue.version) < 3) {
@@ -588,47 +395,16 @@ if (!isExecute$6 || parseInt(allVue.version) < 3) {
588
395
  else {
589
396
  vueImport$6 = Vue$1;
590
397
  }
591
- let NodeAnnotationsDirective =
592
- /* Start Options({
593
- inject: {
594
- custom: {
595
- default: null
596
- }
597
- }
598
- }) End */
599
- class NodeAnnotationsDirective extends vueImport$6 {
600
- constructor() {
601
- super(arguments);
602
- }
603
- render(createElement) {
604
- if (gh) {
605
- let h = gh || createElement;
606
- let slots = null;
607
- if (!isNullOrUndefined(this.$slots.default)) {
608
- slots = gh ? this.$slots.default() : this.$slots.default;
609
- }
610
- return h('div', { class: 'e-directive' }, slots);
611
- }
398
+ let NodeAnnotationsDirective = class NodeAnnotationsDirective extends vueImport$6 {
399
+ render() {
612
400
  return;
613
401
  }
614
- updated() {
615
- if (gh && this.custom) {
616
- this.custom();
617
- }
618
- }
619
402
  getTag() {
620
403
  return 'e-node-annotations';
621
404
  }
622
405
  };
623
406
  NodeAnnotationsDirective = __decorate$6([
624
407
  EJComponentDecorator({}, isExecute$6)
625
- /* Start Options({
626
- inject: {
627
- custom: {
628
- default: null
629
- }
630
- }
631
- }) End */
632
408
  ], NodeAnnotationsDirective);
633
409
  const NodeAnnotationsPlugin = {
634
410
  name: 'e-node-annotations',
@@ -676,7 +452,6 @@ var __decorate$7 = (undefined && undefined.__decorate) || function (decorators,
676
452
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
677
453
  return c > 3 && r && Object.defineProperty(target, key, r), r;
678
454
  };
679
- // {{VueImport}}
680
455
  const isExecute$7 = gh ? false : true;
681
456
  let vueImport$7;
682
457
  if (!isExecute$7 || parseInt(allVue.version) < 3) {
@@ -685,47 +460,16 @@ if (!isExecute$7 || parseInt(allVue.version) < 3) {
685
460
  else {
686
461
  vueImport$7 = Vue$1;
687
462
  }
688
- let PortsDirective =
689
- /* Start Options({
690
- inject: {
691
- custom: {
692
- default: null
693
- }
694
- }
695
- }) End */
696
- class PortsDirective extends vueImport$7 {
697
- constructor() {
698
- super(arguments);
699
- }
700
- render(createElement) {
701
- if (gh) {
702
- let h = gh || createElement;
703
- let slots = null;
704
- if (!isNullOrUndefined(this.$slots.default)) {
705
- slots = gh ? this.$slots.default() : this.$slots.default;
706
- }
707
- return h('div', { class: 'e-directive' }, slots);
708
- }
463
+ let PortsDirective = class PortsDirective extends vueImport$7 {
464
+ render() {
709
465
  return;
710
466
  }
711
- updated() {
712
- if (gh && this.custom) {
713
- this.custom();
714
- }
715
- }
716
467
  getTag() {
717
468
  return 'e-node-ports';
718
469
  }
719
470
  };
720
471
  PortsDirective = __decorate$7([
721
472
  EJComponentDecorator({}, isExecute$7)
722
- /* Start Options({
723
- inject: {
724
- custom: {
725
- default: null
726
- }
727
- }
728
- }) End */
729
473
  ], PortsDirective);
730
474
  const PortsPlugin = {
731
475
  name: 'e-node-ports',
@@ -773,7 +517,6 @@ var __decorate$8 = (undefined && undefined.__decorate) || function (decorators,
773
517
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
774
518
  return c > 3 && r && Object.defineProperty(target, key, r), r;
775
519
  };
776
- // {{VueImport}}
777
520
  const isExecute$8 = gh ? false : true;
778
521
  let vueImport$8;
779
522
  if (!isExecute$8 || parseInt(allVue.version) < 3) {
@@ -782,47 +525,16 @@ if (!isExecute$8 || parseInt(allVue.version) < 3) {
782
525
  else {
783
526
  vueImport$8 = Vue$1;
784
527
  }
785
- let NodesDirective =
786
- /* Start Options({
787
- inject: {
788
- custom: {
789
- default: null
790
- }
791
- }
792
- }) End */
793
- class NodesDirective extends vueImport$8 {
794
- constructor() {
795
- super(arguments);
796
- }
797
- render(createElement) {
798
- if (gh) {
799
- let h = gh || createElement;
800
- let slots = null;
801
- if (!isNullOrUndefined(this.$slots.default)) {
802
- slots = gh ? this.$slots.default() : this.$slots.default;
803
- }
804
- return h('div', { class: 'e-directive' }, slots);
805
- }
528
+ let NodesDirective = class NodesDirective extends vueImport$8 {
529
+ render() {
806
530
  return;
807
531
  }
808
- updated() {
809
- if (gh && this.custom) {
810
- this.custom();
811
- }
812
- }
813
532
  getTag() {
814
533
  return 'e-nodes';
815
534
  }
816
535
  };
817
536
  NodesDirective = __decorate$8([
818
537
  EJComponentDecorator({}, isExecute$8)
819
- /* Start Options({
820
- inject: {
821
- custom: {
822
- default: null
823
- }
824
- }
825
- }) End */
826
538
  ], NodesDirective);
827
539
  const NodesPlugin = {
828
540
  name: 'e-nodes',
@@ -887,12 +599,7 @@ let DiagramComponent =
887
599
  /* Start Options({
888
600
  props: props,
889
601
  watch: watch,
890
- emits: emitProbs,
891
- provide: function provide() {
892
- return {
893
- custom: this.custom
894
- };
895
- }
602
+ emits: emitProbs
896
603
  }) End */
897
604
  class DiagramComponent extends ComponentBase {
898
605
  constructor() {
@@ -909,7 +616,6 @@ class DiagramComponent extends ComponentBase {
909
616
  this.ej2Instances._setProperties = this.ej2Instances.setProperties;
910
617
  this.ej2Instances.setProperties = this.setProperties;
911
618
  this.ej2Instances.clearTemplate = this.clearTemplate;
912
- this.updated = this.updated;
913
619
  }
914
620
  clearTemplate(templateNames) {
915
621
  if (!templateNames) {
@@ -964,9 +670,6 @@ class DiagramComponent extends ComponentBase {
964
670
  }
965
671
  return h('div', slots);
966
672
  }
967
- custom() {
968
- this.updated();
969
- }
970
673
  add(obj, group) {
971
674
  return this.ej2Instances.add(obj, group);
972
675
  }
@@ -1266,12 +969,7 @@ DiagramComponent = __decorate$9([
1266
969
  /* Start Options({
1267
970
  props: props,
1268
971
  watch: watch,
1269
- emits: emitProbs,
1270
- provide: function provide() {
1271
- return {
1272
- custom: this.custom
1273
- };
1274
- }
972
+ emits: emitProbs
1275
973
  }) End */
1276
974
  ], DiagramComponent);
1277
975
  const DiagramPlugin = {
@@ -1305,7 +1003,6 @@ var __decorate$10 = (undefined && undefined.__decorate) || function (decorators,
1305
1003
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1306
1004
  return c > 3 && r && Object.defineProperty(target, key, r), r;
1307
1005
  };
1308
- // {{VueImport}}
1309
1006
  const isExecute$10 = gh ? false : true;
1310
1007
  let vueImport$9;
1311
1008
  if (!isExecute$10 || parseInt(allVue.version) < 3) {
@@ -1314,47 +1011,16 @@ if (!isExecute$10 || parseInt(allVue.version) < 3) {
1314
1011
  else {
1315
1012
  vueImport$9 = Vue$1;
1316
1013
  }
1317
- let PalettesDirective =
1318
- /* Start Options({
1319
- inject: {
1320
- custom: {
1321
- default: null
1322
- }
1323
- }
1324
- }) End */
1325
- class PalettesDirective extends vueImport$9 {
1326
- constructor() {
1327
- super(arguments);
1328
- }
1329
- render(createElement) {
1330
- if (gh) {
1331
- let h = gh || createElement;
1332
- let slots = null;
1333
- if (!isNullOrUndefined(this.$slots.default)) {
1334
- slots = gh ? this.$slots.default() : this.$slots.default;
1335
- }
1336
- return h('div', { class: 'e-directive' }, slots);
1337
- }
1014
+ let PalettesDirective = class PalettesDirective extends vueImport$9 {
1015
+ render() {
1338
1016
  return;
1339
1017
  }
1340
- updated() {
1341
- if (gh && this.custom) {
1342
- this.custom();
1343
- }
1344
- }
1345
1018
  getTag() {
1346
1019
  return 'e-palettes';
1347
1020
  }
1348
1021
  };
1349
1022
  PalettesDirective = __decorate$10([
1350
1023
  EJComponentDecorator({}, isExecute$10)
1351
- /* Start Options({
1352
- inject: {
1353
- custom: {
1354
- default: null
1355
- }
1356
- }
1357
- }) End */
1358
1024
  ], PalettesDirective);
1359
1025
  const PalettesPlugin = {
1360
1026
  name: 'e-palettes',
@@ -1415,12 +1081,7 @@ let SymbolPaletteComponent =
1415
1081
  /* Start Options({
1416
1082
  props: props,
1417
1083
  watch: watch,
1418
- emits: emitProbs,
1419
- provide: function provide() {
1420
- return {
1421
- custom: this.custom
1422
- };
1423
- }
1084
+ emits: emitProbs
1424
1085
  }) End */
1425
1086
  class SymbolPaletteComponent extends ComponentBase {
1426
1087
  constructor() {
@@ -1437,7 +1098,6 @@ class SymbolPaletteComponent extends ComponentBase {
1437
1098
  this.ej2Instances._setProperties = this.ej2Instances.setProperties;
1438
1099
  this.ej2Instances.setProperties = this.setProperties;
1439
1100
  this.ej2Instances.clearTemplate = this.clearTemplate;
1440
- this.updated = this.updated;
1441
1101
  }
1442
1102
  clearTemplate(templateNames) {
1443
1103
  if (!templateNames) {
@@ -1492,9 +1152,6 @@ class SymbolPaletteComponent extends ComponentBase {
1492
1152
  }
1493
1153
  return h('div', slots);
1494
1154
  }
1495
- custom() {
1496
- this.updated();
1497
- }
1498
1155
  addPaletteItem(paletteName, paletteSymbol, isChild) {
1499
1156
  return this.ej2Instances.addPaletteItem(paletteName, paletteSymbol, isChild);
1500
1157
  }
@@ -1515,12 +1172,7 @@ SymbolPaletteComponent = __decorate$11([
1515
1172
  /* Start Options({
1516
1173
  props: props,
1517
1174
  watch: watch,
1518
- emits: emitProbs,
1519
- provide: function provide() {
1520
- return {
1521
- custom: this.custom
1522
- };
1523
- }
1175
+ emits: emitProbs
1524
1176
  }) End */
1525
1177
  ], SymbolPaletteComponent);
1526
1178
  const SymbolPalettePlugin = {
@@ -1560,12 +1212,7 @@ let OverviewComponent =
1560
1212
  /* Start Options({
1561
1213
  props: props,
1562
1214
  watch: watch,
1563
- emits: emitProbs,
1564
- provide: function provide() {
1565
- return {
1566
- custom: this.custom
1567
- };
1568
- }
1215
+ emits: emitProbs
1569
1216
  }) End */
1570
1217
  class OverviewComponent extends ComponentBase {
1571
1218
  constructor() {
@@ -1582,7 +1229,6 @@ class OverviewComponent extends ComponentBase {
1582
1229
  this.ej2Instances._setProperties = this.ej2Instances.setProperties;
1583
1230
  this.ej2Instances.setProperties = this.setProperties;
1584
1231
  this.ej2Instances.clearTemplate = this.clearTemplate;
1585
- this.updated = this.updated;
1586
1232
  }
1587
1233
  clearTemplate(templateNames) {
1588
1234
  if (!templateNames) {
@@ -1637,9 +1283,6 @@ class OverviewComponent extends ComponentBase {
1637
1283
  }
1638
1284
  return h('div', slots);
1639
1285
  }
1640
- custom() {
1641
- this.updated();
1642
- }
1643
1286
  updateHtmlLayer(view) {
1644
1287
  return this.ej2Instances.updateHtmlLayer(view);
1645
1288
  }
@@ -1651,12 +1294,7 @@ OverviewComponent = __decorate$12([
1651
1294
  /* Start Options({
1652
1295
  props: props,
1653
1296
  watch: watch,
1654
- emits: emitProbs,
1655
- provide: function provide() {
1656
- return {
1657
- custom: this.custom
1658
- };
1659
- }
1297
+ emits: emitProbs
1660
1298
  }) End */
1661
1299
  ], OverviewComponent);
1662
1300
  const OverviewPlugin = {