@syncfusion/ej2-vue-spreadsheet 19.2.59 → 19.3.44

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 (45) hide show
  1. package/CHANGELOG.md +67 -0
  2. package/dist/ej2-vue-spreadsheet.umd.min.js +2 -2
  3. package/dist/ej2-vue-spreadsheet.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-vue-spreadsheet.es2015.js +10 -3
  5. package/dist/es6/ej2-vue-spreadsheet.es2015.js.map +1 -1
  6. package/dist/es6/ej2-vue-spreadsheet.es5.js +10 -3
  7. package/dist/es6/ej2-vue-spreadsheet.es5.js.map +1 -1
  8. package/dist/global/ej2-vue-spreadsheet.min.js +2 -2
  9. package/package.json +8 -8
  10. package/src/spreadsheet/spreadsheet.component.d.ts +3 -1
  11. package/src/spreadsheet/spreadsheet.component.js +10 -3
  12. package/styles/bootstrap-dark.css +147 -13
  13. package/styles/bootstrap.css +148 -13
  14. package/styles/bootstrap4.css +150 -15
  15. package/styles/bootstrap5-dark.css +5463 -0
  16. package/styles/bootstrap5-dark.scss +2 -0
  17. package/styles/bootstrap5.css +5463 -0
  18. package/styles/bootstrap5.scss +2 -0
  19. package/styles/fabric-dark.css +147 -13
  20. package/styles/fabric.css +144 -13
  21. package/styles/highcontrast-light.css +140 -13
  22. package/styles/highcontrast.css +151 -13
  23. package/styles/material-dark.css +162 -28
  24. package/styles/material.css +129 -14
  25. package/styles/ribbon/bootstrap5-dark.css +225 -0
  26. package/styles/ribbon/bootstrap5-dark.scss +1 -0
  27. package/styles/ribbon/bootstrap5.css +225 -0
  28. package/styles/ribbon/bootstrap5.scss +1 -0
  29. package/styles/spreadsheet/bootstrap-dark.css +147 -13
  30. package/styles/spreadsheet/bootstrap.css +148 -13
  31. package/styles/spreadsheet/bootstrap4.css +150 -15
  32. package/styles/spreadsheet/bootstrap5-dark.css +5237 -0
  33. package/styles/spreadsheet/bootstrap5-dark.scss +1 -0
  34. package/styles/spreadsheet/bootstrap5.css +5237 -0
  35. package/styles/spreadsheet/bootstrap5.scss +1 -0
  36. package/styles/spreadsheet/fabric-dark.css +147 -13
  37. package/styles/spreadsheet/fabric.css +144 -13
  38. package/styles/spreadsheet/highcontrast-light.css +140 -13
  39. package/styles/spreadsheet/highcontrast.css +151 -13
  40. package/styles/spreadsheet/material-dark.css +162 -28
  41. package/styles/spreadsheet/material.css +129 -14
  42. package/styles/spreadsheet/tailwind-dark.css +172 -52
  43. package/styles/spreadsheet/tailwind.css +180 -43
  44. package/styles/tailwind-dark.css +172 -52
  45. package/styles/tailwind.css +180 -43
package/CHANGELOG.md CHANGED
@@ -4,6 +4,73 @@
4
4
 
5
5
  ### Spreadsheet
6
6
 
7
+ #### New Features
8
+
9
+ - `I323841`, `I305593` - Data validation with formula input support.
10
+
11
+ #### Bug Fixes
12
+
13
+ - `I342782` - `beforeConditionalFormat` event triggered for `delete` and `Clear Contents` actions.
14
+ - `I342786` - Selection and row height misalignment on wrapped cells while resizing the column issue resolved.
15
+ - `I343328` - Script error occurs on copy / paste action while the spreadsheet is scrolled horizontally issue resolved.
16
+ - `I342553` - `Max` function returns error while referring the empty cells issue resolved.
17
+ - `I341489` - Content on cells getting duplicated after removing unique function issue resolved.
18
+ - `I343150` - Selection performance issue with large data issue resolved.
19
+
20
+ ## 19.3.43 (2021-09-30)
21
+
22
+ ### Spreadsheet
23
+
24
+ #### New Features
25
+
26
+ - **Auto fill:** This feature allows users to easily fill or copy a series or pattern of values and formats into adjacent cells in any direction.
27
+ - **Password protection:** This feature allows users to protect a worksheet by encrypting it with a password.
28
+ - **Formula values in data validation input:** This feature allows users to provide formula values in data validation input while applying data validation in a spreadsheet.
29
+ - **Custom number formatting:** This feature allows users to customize the display format of numbers, dates, times, percentages, and currency values.
30
+ - `I336060` - If edited cell value is an URL then, it set as a hyperlink.
31
+
32
+ #### Bug Fixes
33
+
34
+ - `F164899` - Triggered `actionComplete` event during definedRange actions.
35
+ - `I340202` - Filter value by selected cell operation not filtering the data properly issue resolved.
36
+ - `I339325` - Selection not working properly after updating the `allowEditing` property issue resolved.
37
+ - `I341205` - While changing the border color and style of the merged cell is not applied properly issue resolved.
38
+ - `I341516` - Sheet name doesn't support carrot bracket issue resolved.
39
+ - `I339059` - Horizontal scrolling not working properly while scroll using arrow key issue resolved.
40
+ - `I329238`, `F167723`, `I340073`, `I341556` - Filtering large data performance issue resolved.
41
+ - `I336310` - Height not updated properly for the rows with wrapped cells using `setRowHeight` method issue resolved.
42
+ - `I342382` - Event `select` is not triggered when selecting cells using the keyboard select issue has been fixed.
43
+ - `I342399` - Paste is not working with the find dialog issue resolved.
44
+
45
+ ## 19.2.62 (2021-09-14)
46
+
47
+ ### Spreadsheet
48
+
49
+ #### Bug Fixes
50
+
51
+ - `I341489` - Content on cells getting duplicated after removing unique function issue resolved.
52
+ - `I321503` - Formula value not updated while changing its dependent cell, Add / delete rows and columns not updated the formula reference, Renamed sheet not updated in formula reference and Alignment issues while switching between sheets issues resolved.
53
+ - `I339957` - Copy method not working while pasting the copied data using `ctrl+v` action issue resolved.
54
+ - `I339531` - Insert column and cut / paste column actions not updated the range data issue resolved.
55
+ - `I338070` - Merged cells copy and paste the whole row issue has been fixed.
56
+
57
+ ## 19.2.60 (2021-09-07)
58
+
59
+ ### Spreadsheet
60
+
61
+ #### New Features
62
+
63
+ - `I329743` - Provided the support to use a defined name as the source for the list type data validation.
64
+ - `I334078` - Provided the support to get information about the width of the column and the height of the row.
65
+
66
+ #### Bug Fixes
67
+
68
+ - `I340130` - Spreadsheet usedRange not refreshed while changing the datasource issue resolved.
69
+
70
+ ## 19.2.59 (2021-08-31)
71
+
72
+ ### Spreadsheet
73
+
7
74
  #### Bug Fixes
8
75
 
9
76
  - `I338835` - The Hyperlink throws script errors when updating a cell with a hyper link issue resolved.
@@ -1,11 +1,11 @@
1
1
  /*!
2
2
  * filename: ej2-vue-spreadsheet.umd.min.js
3
- * version : 19.2.59
3
+ * version : 19.3.44
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. 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,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@syncfusion/ej2-spreadsheet"),require("@syncfusion/ej2-vue-base"),require("vue-class-component"),require("vue"),require("@syncfusion/ej2-base")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-spreadsheet","@syncfusion/ej2-vue-base","vue-class-component","vue","@syncfusion/ej2-base"],t):t(e.ej={},e.ej2Spreadsheet,e.ej2VueBase,e.Vue3,e.Vue$1,e.ej2Base)}(this,function(e,t,n,o,r,i){"use strict";r=r&&r.hasOwnProperty("default")?r.default:r;var c,s,a,u,p,l,f,h,y,m=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),d=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},g=!n.gh,j=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return m(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-images"},t=d([n.EJComponentDecorator({},g)],t)}(c=!g||parseInt(n.allVue.version)<3?o.Vue:r),I={name:"e-images",install:function(e){e.component(I.name,j)}},b=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return m(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-image"},t=d([n.EJComponentDecorator({},g)],t)}(c),v={name:"e-image",install:function(e){e.component(v.name,b)}},_=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),C=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},O=!n.gh,w=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return _(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-charts"},t=C([n.EJComponentDecorator({},O)],t)}(s=!O||parseInt(n.allVue.version)<3?o.Vue:r),P={name:"e-charts",install:function(e){e.component(P.name,w)}},D=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return _(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-chart"},t=C([n.EJComponentDecorator({},O)],t)}(s),R={name:"e-chart",install:function(e){e.component(R.name,D)}},S=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),T=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},F=!n.gh,E=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return S(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-cells"},t=T([n.EJComponentDecorator({},F)],t)}(a=!F||parseInt(n.allVue.version)<3?o.Vue:r),V={name:"e-cells",install:function(e){e.component(V.name,E)}},M=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return S(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-cell"},t=T([n.EJComponentDecorator({},F)],t)}(a),J={name:"e-cell",install:function(e){e.component(J.name,M)}},A=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),x=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},k=!n.gh,H=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return A(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-rows"},t=x([n.EJComponentDecorator({},k)],t)}(u=!k||parseInt(n.allVue.version)<3?o.Vue:r),B={name:"e-rows",install:function(e){e.component(B.name,H)}},N=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return A(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-row"},t=x([n.EJComponentDecorator({},k)],t)}(u),U={name:"e-row",install:function(e){e.component(U.name,N)}},$=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),z=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},q=!n.gh,K=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return $(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-columns"},t=z([n.EJComponentDecorator({},q)],t)}(p=!q||parseInt(n.allVue.version)<3?o.Vue:r),W={name:"e-columns",install:function(e){e.component(W.name,K)}},L=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return $(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-column"},t=z([n.EJComponentDecorator({},q)],t)}(p),G={name:"e-column",install:function(e){e.component(G.name,L)}},Q=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),X=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},Y=!n.gh,Z=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Q(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-ranges"},t=X([n.EJComponentDecorator({},Y)],t)}(l=!Y||parseInt(n.allVue.version)<3?o.Vue:r),ee={name:"e-ranges",install:function(e){e.component(ee.name,Z)}},te=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Q(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-range"},t=X([n.EJComponentDecorator({},Y)],t)}(l),ne={name:"e-range",install:function(e){e.component(ne.name,te)}},oe=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),re=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},ie=!n.gh,ce=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return oe(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-conditionalformats"},t=re([n.EJComponentDecorator({},ie)],t)}(f=!ie||parseInt(n.allVue.version)<3?o.Vue:r),se={name:"e-conditionalformats",install:function(e){e.component(se.name,ce)}},ae=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return oe(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-conditionalformat"},t=re([n.EJComponentDecorator({},ie)],t)}(f),ue={name:"e-conditionalformat",install:function(e){e.component(ue.name,ae)}},pe=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),le=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},fe=!n.gh,he=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return pe(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-sheets"},t=le([n.EJComponentDecorator({},fe)],t)}(h=!fe||parseInt(n.allVue.version)<3?o.Vue:r),ye={name:"e-sheets",install:function(e){e.component(ye.name,he)}},me=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return pe(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-sheet"},t=le([n.EJComponentDecorator({},fe)],t)}(h),de={name:"e-sheet",install:function(e){e.component(de.name,me)}},ge=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),je=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},Ie=!n.gh,be=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return ge(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-definednames"},t=je([n.EJComponentDecorator({},Ie)],t)}(y=!Ie||parseInt(n.allVue.version)<3?o.Vue:r),ve={name:"e-definednames",install:function(e){e.component(ve.name,be)}},_e=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return ge(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-definedname"},t=je([n.EJComponentDecorator({},Ie)],t)}(y),Ce={name:"e-definedname",install:function(e){e.component(Ce.name,_e)}},Oe=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),we=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},Pe=["activeSheetIndex","allowCellFormatting","allowChart","allowConditionalFormat","allowDataValidation","allowDelete","allowEditing","allowFiltering","allowFindAndReplace","allowHyperlink","allowImage","allowInsert","allowMerge","allowNumberFormatting","allowOpen","allowResizing","allowSave","allowScrolling","allowSorting","allowUndoRedo","allowWrap","cellStyle","cssClass","definedNames","enableClipboard","enableContextMenu","enableKeyboardNavigation","enableKeyboardShortcut","enablePersistence","enableRtl","height","isProtected","locale","openUrl","password","saveUrl","scrollSettings","selectionSettings","sheets","showFormulaBar","showRibbon","showSheetTabs","width","actionBegin","actionComplete","afterHyperlinkClick","afterHyperlinkCreate","beforeCellFormat","beforeCellRender","beforeCellSave","beforeConditionalFormat","beforeDataBound","beforeHyperlinkClick","beforeHyperlinkCreate","beforeOpen","beforeSave","beforeSelect","beforeSort","cellEdit","cellEditing","cellSave","contextMenuBeforeClose","contextMenuBeforeOpen","contextMenuItemSelect","created","dataBound","dataSourceChanged","dialogBeforeOpen","fileMenuBeforeClose","fileMenuBeforeOpen","fileMenuItemSelect","openComplete","openFailure","queryCellInfo","saveComplete","select","sortComplete"],De=[],Re=n.getProps({props:Pe}),Se=(Re[0],Re[1]),Te=Object.keys(Se);Te.push("modelchanged");for(var Fe=0,Ee=De;Fe<Ee.length;Fe++){var Ve=Ee[Fe];Te.push("update:"+Ve)}var Me=!n.gh,Je=function(e){function o(){var n=e.call(this,arguments)||this;return n.propKeys=Pe,n.models=De,n.hasChildDirective=!0,n.hasInjectedModules=!0,n.tagMapper={"e-sheets":{"e-sheet":{"e-rows":{"e-row":{"e-cells":{"e-cell":{"e-images":"e-image","e-charts":"e-chart"}}}},"e-columns":"e-column","e-ranges":"e-range","e-conditionalformats":"e-conditionalformat"}},"e-definednames":"e-definedname"},n.tagNameMapper={"e-images":"e-image","e-charts":"e-chart","e-conditionalformats":"e-conditionalFormats","e-definednames":"e-definedNames"},n.isVue3=!Me,n.ej2Instances=new t.Spreadsheet({}),n.bindProperties(),n.ej2Instances._setProperties=n.ej2Instances.setProperties,n.ej2Instances.setProperties=n.setProperties,n.ej2Instances.clearTemplate=n.clearTemplate,n}return Oe(o,e),o.prototype.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],r=this.templateCollection[o];if(r&&r.length){for(var c=0,s=r;c<s.length;c++){var a=s[c];i.getValue("__vue__.$destroy",a)&&a.__vue__.$destroy(),a.innerHTML&&(a.innerHTML="")}delete this.templateCollection[o]}}},o.prototype.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(o){t!==o||/datasource/i.test(t)||(n.isVue3?n.ej2Instances.vueInstance.$emit("update:"+t,e[t]):n.$emit("update:"+t,e[t]))})})},o.prototype.render=function(e){var t=n.gh||e,o=null;return i.isNullOrUndefined(this.$slots.default)||(o=n.gh?this.$slots.default():this.$slots.default),t("div",o)},o.prototype.Unfreeze=function(e){return this.ej2Instances.Unfreeze(e)},o.prototype.addContextMenuItems=function(e,t,n,o){return this.ej2Instances.addContextMenuItems(e,t,n,o)},o.prototype.addCustomFunction=function(e,t){return this.ej2Instances.addCustomFunction(e,t)},o.prototype.addDataValidation=function(e,t){return this.ej2Instances.addDataValidation(e,t)},o.prototype.addDefinedName=function(e){return this.ej2Instances.addDefinedName(e)},o.prototype.addFileMenuItems=function(e,t,n,o){return this.ej2Instances.addFileMenuItems(e,t,n,o)},o.prototype.addHyperlink=function(e,t){return this.ej2Instances.addHyperlink(e,t)},o.prototype.addInvalidHighlight=function(e){return this.ej2Instances.addInvalidHighlight(e)},o.prototype.addRibbonTabs=function(e,t){return this.ej2Instances.addRibbonTabs(e,t)},o.prototype.addToolbarItems=function(e,t,n){return this.ej2Instances.addToolbarItems(e,t,n)},o.prototype.applyFilter=function(e,t){return this.ej2Instances.applyFilter(e,t)},o.prototype.autoFit=function(e){return this.ej2Instances.autoFit(e)},o.prototype.cellFormat=function(e,t){return this.ej2Instances.cellFormat(e,t)},o.prototype.clear=function(e){return this.ej2Instances.clear(e)},o.prototype.clearConditionalFormat=function(e){return this.ej2Instances.clearConditionalFormat(e)},o.prototype.clearFilter=function(e){return this.ej2Instances.clearFilter(e)},o.prototype.closeEdit=function(){return this.ej2Instances.closeEdit()},o.prototype.computeExpression=function(e){return this.ej2Instances.computeExpression(e)},o.prototype.conditionalFormat=function(e){return this.ej2Instances.conditionalFormat(e)},o.prototype.copy=function(e){return this.ej2Instances.copy(e)},o.prototype.cut=function(e){return this.ej2Instances.cut(e)},o.prototype.delete=function(e,t,n,o){return this.ej2Instances.delete(e,t,n,o)},o.prototype.deleteChart=function(e){return this.ej2Instances.deleteChart(e)},o.prototype.deleteImage=function(e,t){return this.ej2Instances.deleteImage(e,t)},o.prototype.duplicateSheet=function(e){return this.ej2Instances.duplicateSheet(e)},o.prototype.enableContextMenuItems=function(e,t,n){return this.ej2Instances.enableContextMenuItems(e,t,n)},o.prototype.enableFileMenuItems=function(e,t,n){return this.ej2Instances.enableFileMenuItems(e,t,n)},o.prototype.enableRibbonTabs=function(e,t){return this.ej2Instances.enableRibbonTabs(e,t)},o.prototype.enableToolbarItems=function(e,t,n){return this.ej2Instances.enableToolbarItems(e,t,n)},o.prototype.endEdit=function(){return this.ej2Instances.endEdit()},o.prototype.find=function(e){return this.ej2Instances.find(e)},o.prototype.findAll=function(e,t,n,o,r){return this.ej2Instances.findAll(e,t,n,o,r)},o.prototype.freezePanes=function(e,t,n){return this.ej2Instances.freezePanes(e,t,n)},o.prototype.getData=function(e){return this.ej2Instances.getData(e)},o.prototype.getDisplayText=function(e){return this.ej2Instances.getDisplayText(e)},o.prototype.getRowData=function(e,t){return this.ej2Instances.getRowData(e,t)},o.prototype.getSelectAllContent=function(){return this.ej2Instances.getSelectAllContent()},o.prototype.goTo=function(e){return this.ej2Instances.goTo(e)},o.prototype.hideFileMenuItems=function(e,t,n){return this.ej2Instances.hideFileMenuItems(e,t,n)},o.prototype.hideRibbonTabs=function(e,t){return this.ej2Instances.hideRibbonTabs(e,t)},o.prototype.hideSpinner=function(){return this.ej2Instances.hideSpinner()},o.prototype.hideToolbarItems=function(e,t,n){return this.ej2Instances.hideToolbarItems(e,t,n)},o.prototype.insertChart=function(e){return this.ej2Instances.insertChart(e)},o.prototype.insertColumn=function(e,t,n){return this.ej2Instances.insertColumn(e,t,n)},o.prototype.insertImage=function(e,t){return this.ej2Instances.insertImage(e,t)},o.prototype.insertRow=function(e,t,n){return this.ej2Instances.insertRow(e,t,n)},o.prototype.insertSheet=function(e,t){return this.ej2Instances.insertSheet(e,t)},o.prototype.lockCells=function(e,t){return this.ej2Instances.lockCells(e,t)},o.prototype.merge=function(e,t){return this.ej2Instances.merge(e,t)},o.prototype.moveSheet=function(e,t){return this.ej2Instances.moveSheet(e,t)},o.prototype.numberFormat=function(e,t){return this.ej2Instances.numberFormat(e,t)},o.prototype.open=function(e){return this.ej2Instances.open(e)},o.prototype.openFromJson=function(e){return this.ej2Instances.openFromJson(e)},o.prototype.paste=function(e,t){return this.ej2Instances.paste(e,t)},o.prototype.protectSheet=function(e,t){return this.ej2Instances.protectSheet(e,t)},o.prototype.redo=function(){return this.ej2Instances.redo()},o.prototype.refresh=function(e){return this.ej2Instances.refresh(e)},o.prototype.removeContextMenuItems=function(e,t){return this.ej2Instances.removeContextMenuItems(e,t)},o.prototype.removeDataValidation=function(e){return this.ej2Instances.removeDataValidation(e)},o.prototype.removeDefinedName=function(e,t){return this.ej2Instances.removeDefinedName(e,t)},o.prototype.removeHyperlink=function(e){return this.ej2Instances.removeHyperlink(e)},o.prototype.removeInvalidHighlight=function(e){return this.ej2Instances.removeInvalidHighlight(e)},o.prototype.replace=function(e){return this.ej2Instances.replace(e)},o.prototype.resize=function(){return this.ej2Instances.resize()},o.prototype.save=function(e){return this.ej2Instances.save(e)},o.prototype.saveAsJson=function(){return this.ej2Instances.saveAsJson()},o.prototype.selectRange=function(e){return this.ej2Instances.selectRange(e)},o.prototype.setBorder=function(e,t,n){return this.ej2Instances.setBorder(e,t,n)},o.prototype.setColWidth=function(e,t,n){return this.ej2Instances.setColWidth(e,t,n)},o.prototype.setRowHeight=function(e,t,n,o){return this.ej2Instances.setRowHeight(e,t,n,o)},o.prototype.showSpinner=function(){return this.ej2Instances.showSpinner()},o.prototype.sort=function(e,t){return this.ej2Instances.sort(e,t)},o.prototype.startEdit=function(){return this.ej2Instances.startEdit()},o.prototype.undo=function(){return this.ej2Instances.undo()},o.prototype.unprotectSheet=function(e){return this.ej2Instances.unprotectSheet(e)},o.prototype.updateAction=function(e){return this.ej2Instances.updateAction(e)},o.prototype.updateCell=function(e,t){return this.ej2Instances.updateCell(e,t)},o.prototype.updateUndoRedoCollection=function(e){return this.ej2Instances.updateUndoRedoCollection(e)},o.prototype.wrap=function(e,t){return this.ej2Instances.wrap(e,t)},o=we([n.EJComponentDecorator({props:Pe},Me)],o)}(n.ComponentBase),Ae={name:"ejs-spreadsheet",install:function(e){e.component(Ae.name,Je),e.component(de.name,me),e.component(ye.name,he),e.component(U.name,N),e.component(B.name,H),e.component(J.name,M),e.component(V.name,E),e.component(v.name,b),e.component(I.name,j),e.component(R.name,D),e.component(P.name,w),e.component(G.name,L),e.component(W.name,K),e.component(ne.name,te),e.component(ee.name,Z),e.component(ue.name,ae),e.component(se.name,ce),e.component(Ce.name,_e),e.component(ve.name,be)}};e.ImagesDirective=j,e.ImageDirective=b,e.ImagesPlugin=I,e.ImagePlugin=v,e.ChartsDirective=w,e.ChartDirective=D,e.ChartsPlugin=P,e.ChartPlugin=R,e.CellsDirective=E,e.CellDirective=M,e.CellsPlugin=V,e.CellPlugin=J,e.RowsDirective=H,e.RowDirective=N,e.RowsPlugin=B,e.RowPlugin=U,e.ColumnsDirective=K,e.ColumnDirective=L,e.ColumnsPlugin=W,e.ColumnPlugin=G,e.RangesDirective=Z,e.RangeDirective=te,e.RangesPlugin=ee,e.RangePlugin=ne,e.ConditionalFormatsDirective=ce,e.ConditionalFormatDirective=ae,e.ConditionalFormatsPlugin=se,e.ConditionalFormatPlugin=ue,e.SheetsDirective=he,e.SheetDirective=me,e.SheetsPlugin=ye,e.SheetPlugin=de,e.DefinedNamesDirective=be,e.DefinedNameDirective=_e,e.DefinedNamesPlugin=ve,e.DefinedNamePlugin=Ce,e.SpreadsheetComponent=Je,e.SpreadsheetPlugin=Ae,Object.keys(t).forEach(function(n){e[n]=t[n]}),Object.defineProperty(e,"__esModule",{value:!0})});
10
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@syncfusion/ej2-spreadsheet"),require("@syncfusion/ej2-vue-base"),require("vue-class-component"),require("vue"),require("@syncfusion/ej2-base")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-spreadsheet","@syncfusion/ej2-vue-base","vue-class-component","vue","@syncfusion/ej2-base"],t):t(e.ej={},e.ej2Spreadsheet,e.ej2VueBase,e.Vue3,e.Vue$1,e.ej2Base)}(this,function(e,t,n,o,r,i){"use strict";r=r&&r.hasOwnProperty("default")?r.default:r;var c,a,s,u,p,l,f,h,y,m=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),d=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},g=!n.gh,j=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return m(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-images"},t=d([n.EJComponentDecorator({},g)],t)}(c=!g||parseInt(n.allVue.version)<3?o.Vue:r),I={name:"e-images",install:function(e){e.component(I.name,j)}},b=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return m(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-image"},t=d([n.EJComponentDecorator({},g)],t)}(c),v={name:"e-image",install:function(e){e.component(v.name,b)}},_=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),C=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},O=!n.gh,w=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return _(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-charts"},t=C([n.EJComponentDecorator({},O)],t)}(a=!O||parseInt(n.allVue.version)<3?o.Vue:r),P={name:"e-charts",install:function(e){e.component(P.name,w)}},D=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return _(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-chart"},t=C([n.EJComponentDecorator({},O)],t)}(a),R={name:"e-chart",install:function(e){e.component(R.name,D)}},F=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),S=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},T=!n.gh,E=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return F(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-cells"},t=S([n.EJComponentDecorator({},T)],t)}(s=!T||parseInt(n.allVue.version)<3?o.Vue:r),V={name:"e-cells",install:function(e){e.component(V.name,E)}},M=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return F(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-cell"},t=S([n.EJComponentDecorator({},T)],t)}(s),J={name:"e-cell",install:function(e){e.component(J.name,M)}},A=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),x=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},k=!n.gh,H=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return A(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-rows"},t=x([n.EJComponentDecorator({},k)],t)}(u=!k||parseInt(n.allVue.version)<3?o.Vue:r),B={name:"e-rows",install:function(e){e.component(B.name,H)}},N=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return A(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-row"},t=x([n.EJComponentDecorator({},k)],t)}(u),U={name:"e-row",install:function(e){e.component(U.name,N)}},$=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),z=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},q=!n.gh,K=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return $(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-columns"},t=z([n.EJComponentDecorator({},q)],t)}(p=!q||parseInt(n.allVue.version)<3?o.Vue:r),W={name:"e-columns",install:function(e){e.component(W.name,K)}},L=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return $(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-column"},t=z([n.EJComponentDecorator({},q)],t)}(p),G={name:"e-column",install:function(e){e.component(G.name,L)}},Q=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),X=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},Y=!n.gh,Z=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Q(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-ranges"},t=X([n.EJComponentDecorator({},Y)],t)}(l=!Y||parseInt(n.allVue.version)<3?o.Vue:r),ee={name:"e-ranges",install:function(e){e.component(ee.name,Z)}},te=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Q(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-range"},t=X([n.EJComponentDecorator({},Y)],t)}(l),ne={name:"e-range",install:function(e){e.component(ne.name,te)}},oe=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),re=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},ie=!n.gh,ce=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return oe(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-conditionalformats"},t=re([n.EJComponentDecorator({},ie)],t)}(f=!ie||parseInt(n.allVue.version)<3?o.Vue:r),ae={name:"e-conditionalformats",install:function(e){e.component(ae.name,ce)}},se=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return oe(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-conditionalformat"},t=re([n.EJComponentDecorator({},ie)],t)}(f),ue={name:"e-conditionalformat",install:function(e){e.component(ue.name,se)}},pe=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),le=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},fe=!n.gh,he=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return pe(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-sheets"},t=le([n.EJComponentDecorator({},fe)],t)}(h=!fe||parseInt(n.allVue.version)<3?o.Vue:r),ye={name:"e-sheets",install:function(e){e.component(ye.name,he)}},me=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return pe(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-sheet"},t=le([n.EJComponentDecorator({},fe)],t)}(h),de={name:"e-sheet",install:function(e){e.component(de.name,me)}},ge=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),je=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},Ie=!n.gh,be=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return ge(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-definednames"},t=je([n.EJComponentDecorator({},Ie)],t)}(y=!Ie||parseInt(n.allVue.version)<3?o.Vue:r),ve={name:"e-definednames",install:function(e){e.component(ve.name,be)}},_e=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return ge(t,e),t.prototype.render=function(){},t.prototype.getTag=function(){return"e-definedname"},t=je([n.EJComponentDecorator({},Ie)],t)}(y),Ce={name:"e-definedname",install:function(e){e.component(Ce.name,_e)}},Oe=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),we=function(e,t,n,o){var r,i=arguments.length,c=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,n,o);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(c=(i<3?r(c):i>3?r(t,n,c):r(t,n))||c);return i>3&&c&&Object.defineProperty(t,n,c),c},Pe=["islazyUpdate","activeSheetIndex","allowAutoFill","allowCellFormatting","allowChart","allowConditionalFormat","allowDataValidation","allowDelete","allowEditing","allowFiltering","allowFindAndReplace","allowHyperlink","allowImage","allowInsert","allowMerge","allowNumberFormatting","allowOpen","allowResizing","allowSave","allowScrolling","allowSorting","allowUndoRedo","allowWrap","autoFillSettings","cellStyle","cssClass","definedNames","enableClipboard","enableContextMenu","enableKeyboardNavigation","enableKeyboardShortcut","enablePersistence","enableRtl","height","isProtected","locale","openUrl","password","saveUrl","scrollSettings","selectionSettings","sheets","showFormulaBar","showRibbon","showSheetTabs","width","actionBegin","actionComplete","afterHyperlinkClick","afterHyperlinkCreate","beforeCellFormat","beforeCellRender","beforeCellSave","beforeConditionalFormat","beforeDataBound","beforeHyperlinkClick","beforeHyperlinkCreate","beforeOpen","beforeSave","beforeSelect","beforeSort","cellEdit","cellEditing","cellSave","contextMenuBeforeClose","contextMenuBeforeOpen","contextMenuItemSelect","created","dataBound","dataSourceChanged","dialogBeforeOpen","fileMenuBeforeClose","fileMenuBeforeOpen","fileMenuItemSelect","openComplete","openFailure","queryCellInfo","saveComplete","select","sortComplete"],De=[],Re=n.getProps({props:Pe}),Fe=(Re[0],Re[1]),Se=Object.keys(Fe);Se.push("modelchanged");for(var Te=0,Ee=De;Te<Ee.length;Te++){var Ve=Ee[Te];Se.push("update:"+Ve)}var Me=!n.gh,Je=function(e){function o(){var n=e.call(this,arguments)||this;return n.propKeys=Pe,n.models=De,n.hasChildDirective=!0,n.hasInjectedModules=!0,n.tagMapper={"e-sheets":{"e-sheet":{"e-rows":{"e-row":{"e-cells":{"e-cell":{"e-images":"e-image","e-charts":"e-chart"}}}},"e-columns":"e-column","e-ranges":"e-range","e-conditionalformats":"e-conditionalformat"}},"e-definednames":"e-definedname"},n.tagNameMapper={"e-images":"e-image","e-charts":"e-chart","e-conditionalformats":"e-conditionalFormats","e-definednames":"e-definedNames"},n.isVue3=!Me,n.ej2Instances=new t.Spreadsheet({}),n.bindProperties(),n.ej2Instances._setProperties=n.ej2Instances.setProperties,n.ej2Instances.setProperties=n.setProperties,n.ej2Instances.clearTemplate=n.clearTemplate,n}return Oe(o,e),o.prototype.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],r=this.templateCollection[o];if(r&&r.length){for(var c=0,a=r;c<a.length;c++){var s=a[c];i.getValue("__vue__.$destroy",s)&&s.__vue__.$destroy(),s.innerHTML&&(s.innerHTML="")}delete this.templateCollection[o]}}},o.prototype.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(o){t!==o||/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])))})})},o.prototype.render=function(e){var t=n.gh||e,o=null;return i.isNullOrUndefined(this.$slots.default)||(o=n.gh?this.$slots.default():this.$slots.default),t("div",o)},o.prototype.Unfreeze=function(e){return this.ej2Instances.Unfreeze(e)},o.prototype.addContextMenuItems=function(e,t,n,o){return this.ej2Instances.addContextMenuItems(e,t,n,o)},o.prototype.addCustomFunction=function(e,t){return this.ej2Instances.addCustomFunction(e,t)},o.prototype.addDataValidation=function(e,t){return this.ej2Instances.addDataValidation(e,t)},o.prototype.addDefinedName=function(e){return this.ej2Instances.addDefinedName(e)},o.prototype.addFileMenuItems=function(e,t,n,o){return this.ej2Instances.addFileMenuItems(e,t,n,o)},o.prototype.addHyperlink=function(e,t){return this.ej2Instances.addHyperlink(e,t)},o.prototype.addInvalidHighlight=function(e){return this.ej2Instances.addInvalidHighlight(e)},o.prototype.addRibbonTabs=function(e,t){return this.ej2Instances.addRibbonTabs(e,t)},o.prototype.addToolbarItems=function(e,t,n){return this.ej2Instances.addToolbarItems(e,t,n)},o.prototype.applyFilter=function(e,t){return this.ej2Instances.applyFilter(e,t)},o.prototype.autoFill=function(e,t,n,o){return this.ej2Instances.autoFill(e,t,n,o)},o.prototype.autoFit=function(e){return this.ej2Instances.autoFit(e)},o.prototype.cellFormat=function(e,t){return this.ej2Instances.cellFormat(e,t)},o.prototype.clear=function(e){return this.ej2Instances.clear(e)},o.prototype.clearConditionalFormat=function(e){return this.ej2Instances.clearConditionalFormat(e)},o.prototype.clearFilter=function(e){return this.ej2Instances.clearFilter(e)},o.prototype.closeEdit=function(){return this.ej2Instances.closeEdit()},o.prototype.computeExpression=function(e){return this.ej2Instances.computeExpression(e)},o.prototype.conditionalFormat=function(e){return this.ej2Instances.conditionalFormat(e)},o.prototype.copy=function(e){return this.ej2Instances.copy(e)},o.prototype.cut=function(e){return this.ej2Instances.cut(e)},o.prototype.delete=function(e,t,n,o){return this.ej2Instances.delete(e,t,n,o)},o.prototype.deleteChart=function(e){return this.ej2Instances.deleteChart(e)},o.prototype.deleteImage=function(e,t){return this.ej2Instances.deleteImage(e,t)},o.prototype.duplicateSheet=function(e){return this.ej2Instances.duplicateSheet(e)},o.prototype.enableContextMenuItems=function(e,t,n){return this.ej2Instances.enableContextMenuItems(e,t,n)},o.prototype.enableFileMenuItems=function(e,t,n){return this.ej2Instances.enableFileMenuItems(e,t,n)},o.prototype.enableRibbonTabs=function(e,t){return this.ej2Instances.enableRibbonTabs(e,t)},o.prototype.enableToolbarItems=function(e,t,n){return this.ej2Instances.enableToolbarItems(e,t,n)},o.prototype.endEdit=function(){return this.ej2Instances.endEdit()},o.prototype.find=function(e){return this.ej2Instances.find(e)},o.prototype.findAll=function(e,t,n,o,r){return this.ej2Instances.findAll(e,t,n,o,r)},o.prototype.freezePanes=function(e,t,n){return this.ej2Instances.freezePanes(e,t,n)},o.prototype.getData=function(e){return this.ej2Instances.getData(e)},o.prototype.getDisplayText=function(e){return this.ej2Instances.getDisplayText(e)},o.prototype.getRowData=function(e,t){return this.ej2Instances.getRowData(e,t)},o.prototype.getSelectAllContent=function(){return this.ej2Instances.getSelectAllContent()},o.prototype.goTo=function(e){return this.ej2Instances.goTo(e)},o.prototype.hideFileMenuItems=function(e,t,n){return this.ej2Instances.hideFileMenuItems(e,t,n)},o.prototype.hideRibbonTabs=function(e,t){return this.ej2Instances.hideRibbonTabs(e,t)},o.prototype.hideSpinner=function(){return this.ej2Instances.hideSpinner()},o.prototype.hideToolbarItems=function(e,t,n){return this.ej2Instances.hideToolbarItems(e,t,n)},o.prototype.insertChart=function(e){return this.ej2Instances.insertChart(e)},o.prototype.insertColumn=function(e,t,n){return this.ej2Instances.insertColumn(e,t,n)},o.prototype.insertImage=function(e,t){return this.ej2Instances.insertImage(e,t)},o.prototype.insertRow=function(e,t,n){return this.ej2Instances.insertRow(e,t,n)},o.prototype.insertSheet=function(e,t){return this.ej2Instances.insertSheet(e,t)},o.prototype.lockCells=function(e,t){return this.ej2Instances.lockCells(e,t)},o.prototype.merge=function(e,t){return this.ej2Instances.merge(e,t)},o.prototype.moveSheet=function(e,t){return this.ej2Instances.moveSheet(e,t)},o.prototype.numberFormat=function(e,t){return this.ej2Instances.numberFormat(e,t)},o.prototype.open=function(e){return this.ej2Instances.open(e)},o.prototype.openFromJson=function(e){return this.ej2Instances.openFromJson(e)},o.prototype.paste=function(e,t){return this.ej2Instances.paste(e,t)},o.prototype.protectSheet=function(e,t,n){return this.ej2Instances.protectSheet(e,t,n)},o.prototype.redo=function(){return this.ej2Instances.redo()},o.prototype.refresh=function(e){return this.ej2Instances.refresh(e)},o.prototype.removeContextMenuItems=function(e,t){return this.ej2Instances.removeContextMenuItems(e,t)},o.prototype.removeDataValidation=function(e){return this.ej2Instances.removeDataValidation(e)},o.prototype.removeDefinedName=function(e,t){return this.ej2Instances.removeDefinedName(e,t)},o.prototype.removeHyperlink=function(e){return this.ej2Instances.removeHyperlink(e)},o.prototype.removeInvalidHighlight=function(e){return this.ej2Instances.removeInvalidHighlight(e)},o.prototype.replace=function(e){return this.ej2Instances.replace(e)},o.prototype.resize=function(){return this.ej2Instances.resize()},o.prototype.save=function(e){return this.ej2Instances.save(e)},o.prototype.saveAsJson=function(){return this.ej2Instances.saveAsJson()},o.prototype.selectRange=function(e){return this.ej2Instances.selectRange(e)},o.prototype.setBorder=function(e,t,n){return this.ej2Instances.setBorder(e,t,n)},o.prototype.setColWidth=function(e,t,n){return this.ej2Instances.setColWidth(e,t,n)},o.prototype.setRowHeight=function(e,t,n,o){return this.ej2Instances.setRowHeight(e,t,n,o)},o.prototype.showSpinner=function(){return this.ej2Instances.showSpinner()},o.prototype.sort=function(e,t){return this.ej2Instances.sort(e,t)},o.prototype.startEdit=function(){return this.ej2Instances.startEdit()},o.prototype.undo=function(){return this.ej2Instances.undo()},o.prototype.unprotectSheet=function(e){return this.ej2Instances.unprotectSheet(e)},o.prototype.updateAction=function(e){return this.ej2Instances.updateAction(e)},o.prototype.updateCell=function(e,t){return this.ej2Instances.updateCell(e,t)},o.prototype.updateRange=function(e,t){return this.ej2Instances.updateRange(e,t)},o.prototype.updateUndoRedoCollection=function(e){return this.ej2Instances.updateUndoRedoCollection(e)},o.prototype.wrap=function(e,t){return this.ej2Instances.wrap(e,t)},o=we([n.EJComponentDecorator({props:Pe},Me)],o)}(n.ComponentBase),Ae={name:"ejs-spreadsheet",install:function(e){e.component(Ae.name,Je),e.component(de.name,me),e.component(ye.name,he),e.component(U.name,N),e.component(B.name,H),e.component(J.name,M),e.component(V.name,E),e.component(v.name,b),e.component(I.name,j),e.component(R.name,D),e.component(P.name,w),e.component(G.name,L),e.component(W.name,K),e.component(ne.name,te),e.component(ee.name,Z),e.component(ue.name,se),e.component(ae.name,ce),e.component(Ce.name,_e),e.component(ve.name,be)}};e.ImagesDirective=j,e.ImageDirective=b,e.ImagesPlugin=I,e.ImagePlugin=v,e.ChartsDirective=w,e.ChartDirective=D,e.ChartsPlugin=P,e.ChartPlugin=R,e.CellsDirective=E,e.CellDirective=M,e.CellsPlugin=V,e.CellPlugin=J,e.RowsDirective=H,e.RowDirective=N,e.RowsPlugin=B,e.RowPlugin=U,e.ColumnsDirective=K,e.ColumnDirective=L,e.ColumnsPlugin=W,e.ColumnPlugin=G,e.RangesDirective=Z,e.RangeDirective=te,e.RangesPlugin=ee,e.RangePlugin=ne,e.ConditionalFormatsDirective=ce,e.ConditionalFormatDirective=se,e.ConditionalFormatsPlugin=ae,e.ConditionalFormatPlugin=ue,e.SheetsDirective=he,e.SheetDirective=me,e.SheetsPlugin=ye,e.SheetPlugin=de,e.DefinedNamesDirective=be,e.DefinedNameDirective=_e,e.DefinedNamesPlugin=ve,e.DefinedNamePlugin=Ce,e.SpreadsheetComponent=Je,e.SpreadsheetPlugin=Ae,Object.keys(t).forEach(function(n){e[n]=t[n]}),Object.defineProperty(e,"__esModule",{value:!0})});
11
11
  //# sourceMappingURL=ej2-vue-spreadsheet.umd.min.js.map