@syncfusion/ej2-vue-spreadsheet 26.1.35-282190 → 26.1.38

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/README.md +189 -189
  2. package/dist/ej2-vue-spreadsheet.umd.min.js +9 -0
  3. package/license +6 -6
  4. package/package.json +62 -62
  5. package/styles/bootstrap-dark.css +6 -6
  6. package/styles/bootstrap.css +6 -6
  7. package/styles/bootstrap4.css +6 -6
  8. package/styles/bootstrap5-dark.css +6 -6
  9. package/styles/bootstrap5.css +6 -6
  10. package/styles/fabric-dark.css +6 -6
  11. package/styles/fabric.css +6 -6
  12. package/styles/fluent-dark.css +6 -6
  13. package/styles/fluent.css +6 -6
  14. package/styles/fluent2.css +254 -156
  15. package/styles/highcontrast-light.css +6 -6
  16. package/styles/highcontrast.css +6 -6
  17. package/styles/material-dark.css +6 -6
  18. package/styles/material.css +6 -6
  19. package/styles/material3-dark.css +6 -6
  20. package/styles/material3.css +6 -6
  21. package/styles/spreadsheet/bootstrap-dark.css +6 -6
  22. package/styles/spreadsheet/bootstrap.css +6 -6
  23. package/styles/spreadsheet/bootstrap4.css +6 -6
  24. package/styles/spreadsheet/bootstrap5-dark.css +6 -6
  25. package/styles/spreadsheet/bootstrap5.css +6 -6
  26. package/styles/spreadsheet/fabric-dark.css +6 -6
  27. package/styles/spreadsheet/fabric.css +6 -6
  28. package/styles/spreadsheet/fluent-dark.css +6 -6
  29. package/styles/spreadsheet/fluent.css +6 -6
  30. package/styles/spreadsheet/fluent2.css +199 -120
  31. package/styles/spreadsheet/highcontrast-light.css +6 -6
  32. package/styles/spreadsheet/highcontrast.css +6 -6
  33. package/styles/spreadsheet/material-dark.css +6 -6
  34. package/styles/spreadsheet/material.css +6 -6
  35. package/styles/spreadsheet/material3-dark.css +6 -6
  36. package/styles/spreadsheet/material3-dark.scss +1 -1
  37. package/styles/spreadsheet/material3.css +6 -6
  38. package/styles/spreadsheet/material3.scss +1 -1
  39. package/styles/spreadsheet/tailwind-dark.css +6 -6
  40. package/styles/spreadsheet/tailwind.css +6 -6
  41. package/styles/spreadsheet-ribbon/fluent2.css +55 -36
  42. package/styles/spreadsheet-ribbon/material3-dark.scss +1 -1
  43. package/styles/spreadsheet-ribbon/material3.scss +1 -1
  44. package/styles/tailwind-dark.css +6 -6
  45. package/styles/tailwind.css +6 -6
package/README.md CHANGED
@@ -1,189 +1,189 @@
1
- # Vue Spreadsheet Component
2
-
3
- The [Vue Spreadsheet](https://www.syncfusion.com/vue-ui-components/vue-spreadsheet?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm) is an user interactive component to organize and analyze data in tabular format with configuration options for customization. It will load data by importing an Excel/CSV file or from local and remote data sources such as JSON, RESTful services, OData services, and more. The populated data can be exported as Excel with xlsx, xls, CSV and PDF formats.
4
-
5
- <p align="center">
6
- <a href="https://ej2.syncfusion.com/vue/documentation/spreadsheet/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm">Getting started</a> .
7
- <a href="https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/bootstrap5/spreadsheet/default.html">Online demos</a> .
8
- <a href="https://www.syncfusion.com/vue-components/vue-spreadsheet?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm">Learn more</a>
9
- </p>
10
-
11
- <p align="center">
12
- <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/vue/vue-spreadsheet.png" alt="Vue Spreadsheet Component" />
13
- </p>
14
-
15
- <p align="center">
16
- Trusted by the world's leading companies
17
- <a href="https://www.syncfusion.com">
18
- <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/syncfusion/syncfusion-trusted-companies.webp" alt="Bootstrap logo">
19
- </a>
20
- </p>
21
-
22
- ## Setup
23
-
24
- ### Create a Vue Application
25
-
26
- You can use [Vue CLI](https://github.com/vuejs/vue-cli) to setup your Vue 2 applications. To install Vue CLI, use the following command.
27
-
28
- ```bash
29
- npm install -g @vue/cli
30
- vue create quickstart
31
- cd quickstart
32
- npm run serve
33
- ```
34
- Initiating a new project prompts us to choose the type of project to be used for the current application. Select the option `Default ([Vue 2] babel, eslint)` from the menu.
35
-
36
- ### Add Syncfusion Spreadsheet package
37
-
38
- All Syncfusion Vue packages are published in [npmjs.com](https://www.npmjs.com/~syncfusionorg) registry. To install Vue Spreadsheet package, use the following command.
39
-
40
- ```bash
41
- npm install @syncfusion/ej2-vue-spreadsheet --save
42
- ```
43
-
44
- ### Register Spreadsheet Component
45
-
46
- You can register the Spreadsheet component in your application by using the `Vue.use()`. Refer to the code example given below.
47
-
48
- ```typescript
49
- import { SpreadsheetPlugin } from "@syncfusion/ej2-vue-spreadsheet";
50
-
51
- Vue.use(SpreadsheetPlugin);
52
- ```
53
-
54
- > Registering **SpreadsheetPlugin** in Vue, will register the Spreadsheet component along with its required child directives globally.
55
-
56
- ### Add CSS references for Spreadsheet
57
-
58
- Add CSS references needed for Spreadsheet in **style** section of the **App.vue** file from **../node_modules/@syncfusion** package folder.
59
-
60
- ```html
61
- <style>
62
- @import '../node_modules/@syncfusion/ej2-base/styles/material.css';
63
- @import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
64
- @import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
65
- @import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
66
- @import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
67
- @import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
68
- @import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
69
- @import '../node_modules/@syncfusion/ej2-grids/styles/material.css';
70
- @import '../node_modules/@syncfusion/ej2-vue-spreadsheet/styles/material.css';
71
- </style>
72
- ```
73
-
74
- ## Add Spreadsheet Component
75
-
76
- Add the Vue Spreadsheet by using `ejs-spreadsheet` selector in `template` section of the **App.vue** file.
77
-
78
- ```html
79
- <template>
80
- <ejs-spreadsheet>
81
- <e-sheets>
82
- <e-sheet>
83
- <e-ranges><e-range :dataSource="data"></e-range></e-ranges>
84
- </e-sheet>
85
- </e-sheets>
86
- </ejs-spreadsheet>
87
- </template>
88
-
89
- <script>
90
- import Vue from "vue";
91
- import { SpreadsheetPlugin } from "@syncfusion/ej2-vue-spreadsheet";
92
- Vue.use(SpreadsheetPlugin);
93
- export default {
94
- data: () => {
95
- return {
96
- data: [
97
- { OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, ShipCity: 'Reims' },
98
- { OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, ShipCity: 'Münster' },
99
- { OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, ShipCity: 'Lyon' }
100
- ]
101
- }
102
- }
103
- }
104
- </script>
105
- <style>
106
- @import '../node_modules/@syncfusion/ej2-base/styles/material.css';
107
- @import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
108
- @import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
109
- @import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
110
- @import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
111
- @import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
112
- @import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
113
- @import '../node_modules/@syncfusion/ej2-grids/styles/material.css';
114
- @import '../node_modules/@syncfusion/ej2-vue-spreadsheet/styles/material.css';
115
- </style>
116
- ```
117
- > Refer the [Getting Started with Vue3](https://ej2.syncfusion.com/vue/documentation/spreadsheet/getting-started-vue/) topic for using Syncfusion Vue components in Vue 3 applications.
118
-
119
- ## Supported frameworks
120
-
121
- Spreadsheet component is also offered in the following list of frameworks.
122
-
123
- | [<img src="https://ej2.syncfusion.com/github/images/js.svg" height="50" />](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[JavaScript](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/angular.svg" height="50" />](https://www.syncfusion.com/angular-components/?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Angular](https://www.syncfusion.com/angular-components/?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
124
- | :-----: | :-----: | :-----: | :-----: | :-----: |
125
-
126
- ## Key features
127
-
128
- * [Data sources](https://ej2.syncfusion.com/vue/documentation/spreadsheet/data-binding/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#local-data): Bind the Spreadsheet component with an array of objects or data from a web service using [DataManager](https://ej2.syncfusion.com/vue/documentation/data/data-binding/).
129
- * [Virtualization](https://ej2.syncfusion.com/vue/documentation/spreadsheet/scrolling/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#virtual-scrolling): Provides the option to load large amount of data without performance degradation.
130
- * [Selection](https://ej2.syncfusion.com/vue/documentation/spreadsheet/selection/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to select a cell or range of cells.
131
- * [Editing](https://ej2.syncfusion.com/vue/documentation/spreadsheet/editing/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to dynamically edit a cell.
132
- * [Formulas](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/formula.html): Provides built-in calculation library with pre-defined formulas and named range support.
133
- * [Clipboard](https://ej2.syncfusion.com/vue/documentation/spreadsheet/clipboard/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to perform clipboard operations.
134
- * [Cell formatting](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/cell-formatting.html): Provides the option to customize the appearance of cells.
135
- * [Number formatting](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/number-formatting.html): Provides the option to format the cell value.
136
- * [Open](https://ej2.syncfusion.com/vue/documentation/spreadsheet/open-save/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#open): Provides the option to open Excel and CSV files in Spreadsheet.
137
- * [Save](https://ej2.syncfusion.com/vue/documentation/spreadsheet/open-save/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#save): Provides the option to save Spreadsheet data as Excel, CSV, and PDF documents.
138
- * [Sorting](https://ej2.syncfusion.com/vue/documentation/spreadsheet/sort/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#sort-by-cell-value): Helps you to arrange the data to particular order in a selected range of cells.
139
- * [Filtering](https://ej2.syncfusion.com/vue/documentation/spreadsheet/filter/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#apply-filter-on-ui): Helps you to view specific rows in the Spreadsheet by hiding the other rows.
140
- * [Undo Redo](https://ej2.syncfusion.com/vue/documentation/spreadsheet/undo-redo/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to perform undo redo operations in Spreadsheet.
141
- * [Collaborative editing](https://ej2.syncfusion.com/vue/documentation/spreadsheet/use-cases/collaborative-editing/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option for real time changes across multiple users in the Spreadsheet.
142
- * [Hyperlink](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/hyperlink.html): Provides the option to navigate to web link or cell reference within the sheet or to other sheet in Spreadsheet.
143
- * [Resize](https://ej2.syncfusion.com/vue/documentation/spreadsheet/mobile-responsiveness/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Allows you to change the row height and column width. Auto fit the rows and columns based on its content.
144
- * [Wrap text](https://ej2.syncfusion.com/vue/documentation/spreadsheet/cell-range/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#wrap-text): Provides the option to display the large content as multiple lines in a single cell.
145
- * [Data validation](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/data-validation.html): Provides the option to validate edited values based on data validation rules defined for a cell or range of cells.
146
- * [Find and replace](https://ej2.syncfusion.com/vue/documentation/spreadsheet/searching/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#find): Provides the option to find the data and replace it across all sheets in Spreadsheet.
147
- * [Protect sheet](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/protect-sheet.html): Provides the option to restrict user actions like cell editing, row and column insertion, deletion, and resizing.
148
- * [Borders](https://ej2.syncfusion.com/vue/documentation/spreadsheet/formatting/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#borders): Provides the option to customize cell gridlines such as color and its style for enhanced UI.
149
- * [Show/hide](https://ej2.syncfusion.com/vue/documentation/spreadsheet/worksheet/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#sheet-visibility): Provides the option to show/hide rows, columns and sheets.
150
- * [Insert/delete](https://ej2.syncfusion.com/vue/documentation/spreadsheet/rows-and-columns/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#insert): Provides the option to insert/delete rows, columns and sheets.
151
- * [Merge cells](https://ej2.syncfusion.com/vue/documentation/spreadsheet/cell-range/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#merge-cells): Provides the option to combine two or more cells located in the same row or column into a single cell.
152
- * [Conditional formatting](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/conditional-formatting.html): Provides the option to format a cell or range of cells based on conditions applied.
153
- * [Autofill](https://ej2.syncfusion.com/vue/documentation/spreadsheet/cell-range/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#auto-fill): Provides the option to fill or copy a series or pattern of values and formats into adjacent cells in any direction.
154
- * [Clear](https://ej2.syncfusion.com/vue/documentation/spreadsheet/cell-range/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#clear): Provides the option to clear the content, formats, and hyperlinks applied to a cell or range of cells in a Spreadsheet.
155
- * [Aggregates](https://ej2.syncfusion.com/vue/documentation/spreadsheet/formulas/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to check the sum, average, count, and more for the selected cells or range in the sheet.
156
- * [Picture](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/image.html): Allows you to view, insert, and modify a picture in a Spreadsheet with customizing options.
157
- * [Chart](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/chart.html): Transforms your Spreadsheet data to an intuitive overview for better understanding and to make smart business decisions.
158
- * [Freeze panes](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/freeze-panes.html): Allows you to keep the specified rows and columns always visible at the top and left side of the sheet while scrolling through the sheet.
159
- * [Password protection](https://ej2.syncfusion.com/vue/documentation/spreadsheet/protect-sheet/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#protect-workbook): Allows you to protect the workbook with a password.
160
- * [Multi-line editing](https://ej2.syncfusion.com/vue/documentation/spreadsheet/editing/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Allows you to insert a line break between paragraphs of the text within a cell in a Spreadsheet.
161
- * [Calculate range selection](https://ej2.syncfusion.com/vue/documentation/spreadsheet/selection/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Helps you to select a range or multiple ranges when editing a formula in a cell.
162
- * [Right-to-left (RTL)](https://ej2.syncfusion.com/vue/documentation/right-to-left/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Aligns content in the Spreadsheet component from right to left.
163
- * [Templates](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/cell-template.html): Templates can be used to create custom user experiences in the Spreadsheet.
164
- * [Globalization](https://ej2.syncfusion.com/vue/documentation/spreadsheet/global-local/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#localization): Personalize the Spreadsheet component with different languages, as well as culture-specific number, date, and time formatting.
165
- * [Accessibility](https://ej2.syncfusion.com/vue/documentation/spreadsheet/accessibility/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides with built-in accessibility support which helps to access all the Spreadsheet component features through the keyboard, screen readers, or other assistive technology devices.
166
-
167
- ## Support
168
-
169
- Product support is available through the following mediums.
170
-
171
- * [Support ticket](https://support.syncfusion.com/support/tickets/create) - Guaranteed Response in 24 hours | Unlimited tickets | Holiday support
172
- * [Community forum](https://www.syncfusion.com/forums/vue?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm)
173
- * [GitHub issues](https://github.com/syncfusion/ej2-vue-ui-components/issues/new)
174
- * [Request feature or report bug](https://www.syncfusion.com/feedback/vue?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm)
175
- * Live chat
176
-
177
- ## Changelog
178
-
179
- Check the changelog [here](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/components/spreadsheet/CHANGELOG.md?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm). Get minor improvements and bug fixes every week to stay up to date with frequent updates.
180
-
181
- ## License and copyright
182
-
183
- > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [Vue UI components](https://www.syncfusion.com/vue-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
184
-
185
- > A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
186
-
187
- See [LICENSE FILE](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm) for more info.
188
-
189
- &copy; Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
1
+ # Vue Spreadsheet Component
2
+
3
+ The [Vue Spreadsheet](https://www.syncfusion.com/vue-ui-components/vue-spreadsheet?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm) is an user interactive component to organize and analyze data in tabular format with configuration options for customization. It will load data by importing an Excel/CSV file or from local and remote data sources such as JSON, RESTful services, OData services, and more. The populated data can be exported as Excel with xlsx, xls, CSV and PDF formats.
4
+
5
+ <p align="center">
6
+ <a href="https://ej2.syncfusion.com/vue/documentation/spreadsheet/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm">Getting started</a> .
7
+ <a href="https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/bootstrap5/spreadsheet/default.html">Online demos</a> .
8
+ <a href="https://www.syncfusion.com/vue-components/vue-spreadsheet?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm">Learn more</a>
9
+ </p>
10
+
11
+ <p align="center">
12
+ <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/vue/vue-spreadsheet.png" alt="Vue Spreadsheet Component" />
13
+ </p>
14
+
15
+ <p align="center">
16
+ Trusted by the world's leading companies
17
+ <a href="https://www.syncfusion.com">
18
+ <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/syncfusion/syncfusion-trusted-companies.webp" alt="Bootstrap logo">
19
+ </a>
20
+ </p>
21
+
22
+ ## Setup
23
+
24
+ ### Create a Vue Application
25
+
26
+ You can use [Vue CLI](https://github.com/vuejs/vue-cli) to setup your Vue 2 applications. To install Vue CLI, use the following command.
27
+
28
+ ```bash
29
+ npm install -g @vue/cli
30
+ vue create quickstart
31
+ cd quickstart
32
+ npm run serve
33
+ ```
34
+ Initiating a new project prompts us to choose the type of project to be used for the current application. Select the option `Default ([Vue 2] babel, eslint)` from the menu.
35
+
36
+ ### Add Syncfusion Spreadsheet package
37
+
38
+ All Syncfusion Vue packages are published in [npmjs.com](https://www.npmjs.com/~syncfusionorg) registry. To install Vue Spreadsheet package, use the following command.
39
+
40
+ ```bash
41
+ npm install @syncfusion/ej2-vue-spreadsheet --save
42
+ ```
43
+
44
+ ### Register Spreadsheet Component
45
+
46
+ You can register the Spreadsheet component in your application by using the `Vue.use()`. Refer to the code example given below.
47
+
48
+ ```typescript
49
+ import { SpreadsheetPlugin } from "@syncfusion/ej2-vue-spreadsheet";
50
+
51
+ Vue.use(SpreadsheetPlugin);
52
+ ```
53
+
54
+ > Registering **SpreadsheetPlugin** in Vue, will register the Spreadsheet component along with its required child directives globally.
55
+
56
+ ### Add CSS references for Spreadsheet
57
+
58
+ Add CSS references needed for Spreadsheet in **style** section of the **App.vue** file from **../node_modules/@syncfusion** package folder.
59
+
60
+ ```html
61
+ <style>
62
+ @import '../node_modules/@syncfusion/ej2-base/styles/material.css';
63
+ @import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
64
+ @import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
65
+ @import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
66
+ @import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
67
+ @import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
68
+ @import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
69
+ @import '../node_modules/@syncfusion/ej2-grids/styles/material.css';
70
+ @import '../node_modules/@syncfusion/ej2-vue-spreadsheet/styles/material.css';
71
+ </style>
72
+ ```
73
+
74
+ ## Add Spreadsheet Component
75
+
76
+ Add the Vue Spreadsheet by using `ejs-spreadsheet` selector in `template` section of the **App.vue** file.
77
+
78
+ ```html
79
+ <template>
80
+ <ejs-spreadsheet>
81
+ <e-sheets>
82
+ <e-sheet>
83
+ <e-ranges><e-range :dataSource="data"></e-range></e-ranges>
84
+ </e-sheet>
85
+ </e-sheets>
86
+ </ejs-spreadsheet>
87
+ </template>
88
+
89
+ <script>
90
+ import Vue from "vue";
91
+ import { SpreadsheetPlugin } from "@syncfusion/ej2-vue-spreadsheet";
92
+ Vue.use(SpreadsheetPlugin);
93
+ export default {
94
+ data: () => {
95
+ return {
96
+ data: [
97
+ { OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, ShipCity: 'Reims' },
98
+ { OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, ShipCity: 'Münster' },
99
+ { OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, ShipCity: 'Lyon' }
100
+ ]
101
+ }
102
+ }
103
+ }
104
+ </script>
105
+ <style>
106
+ @import '../node_modules/@syncfusion/ej2-base/styles/material.css';
107
+ @import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
108
+ @import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
109
+ @import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
110
+ @import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
111
+ @import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
112
+ @import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
113
+ @import '../node_modules/@syncfusion/ej2-grids/styles/material.css';
114
+ @import '../node_modules/@syncfusion/ej2-vue-spreadsheet/styles/material.css';
115
+ </style>
116
+ ```
117
+ > Refer the [Getting Started with Vue3](https://ej2.syncfusion.com/vue/documentation/spreadsheet/getting-started-vue/) topic for using Syncfusion Vue components in Vue 3 applications.
118
+
119
+ ## Supported frameworks
120
+
121
+ Spreadsheet component is also offered in the following list of frameworks.
122
+
123
+ | [<img src="https://ej2.syncfusion.com/github/images/js.svg" height="50" />](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[JavaScript](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/angular.svg" height="50" />](https://www.syncfusion.com/angular-components/?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Angular](https://www.syncfusion.com/angular-components/?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
124
+ | :-----: | :-----: | :-----: | :-----: | :-----: |
125
+
126
+ ## Key features
127
+
128
+ * [Data sources](https://ej2.syncfusion.com/vue/documentation/spreadsheet/data-binding/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#local-data): Bind the Spreadsheet component with an array of objects or data from a web service using [DataManager](https://ej2.syncfusion.com/vue/documentation/data/data-binding/).
129
+ * [Virtualization](https://ej2.syncfusion.com/vue/documentation/spreadsheet/scrolling/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#virtual-scrolling): Provides the option to load large amount of data without performance degradation.
130
+ * [Selection](https://ej2.syncfusion.com/vue/documentation/spreadsheet/selection/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to select a cell or range of cells.
131
+ * [Editing](https://ej2.syncfusion.com/vue/documentation/spreadsheet/editing/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to dynamically edit a cell.
132
+ * [Formulas](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/formula.html): Provides built-in calculation library with pre-defined formulas and named range support.
133
+ * [Clipboard](https://ej2.syncfusion.com/vue/documentation/spreadsheet/clipboard/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to perform clipboard operations.
134
+ * [Cell formatting](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/cell-formatting.html): Provides the option to customize the appearance of cells.
135
+ * [Number formatting](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/number-formatting.html): Provides the option to format the cell value.
136
+ * [Open](https://ej2.syncfusion.com/vue/documentation/spreadsheet/open-save/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#open): Provides the option to open Excel and CSV files in Spreadsheet.
137
+ * [Save](https://ej2.syncfusion.com/vue/documentation/spreadsheet/open-save/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#save): Provides the option to save Spreadsheet data as Excel, CSV, and PDF documents.
138
+ * [Sorting](https://ej2.syncfusion.com/vue/documentation/spreadsheet/sort/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#sort-by-cell-value): Helps you to arrange the data to particular order in a selected range of cells.
139
+ * [Filtering](https://ej2.syncfusion.com/vue/documentation/spreadsheet/filter/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#apply-filter-on-ui): Helps you to view specific rows in the Spreadsheet by hiding the other rows.
140
+ * [Undo Redo](https://ej2.syncfusion.com/vue/documentation/spreadsheet/undo-redo/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to perform undo redo operations in Spreadsheet.
141
+ * [Collaborative editing](https://ej2.syncfusion.com/vue/documentation/spreadsheet/use-cases/collaborative-editing/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option for real time changes across multiple users in the Spreadsheet.
142
+ * [Hyperlink](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/hyperlink.html): Provides the option to navigate to web link or cell reference within the sheet or to other sheet in Spreadsheet.
143
+ * [Resize](https://ej2.syncfusion.com/vue/documentation/spreadsheet/mobile-responsiveness/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Allows you to change the row height and column width. Auto fit the rows and columns based on its content.
144
+ * [Wrap text](https://ej2.syncfusion.com/vue/documentation/spreadsheet/cell-range/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#wrap-text): Provides the option to display the large content as multiple lines in a single cell.
145
+ * [Data validation](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/data-validation.html): Provides the option to validate edited values based on data validation rules defined for a cell or range of cells.
146
+ * [Find and replace](https://ej2.syncfusion.com/vue/documentation/spreadsheet/searching/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#find): Provides the option to find the data and replace it across all sheets in Spreadsheet.
147
+ * [Protect sheet](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/protect-sheet.html): Provides the option to restrict user actions like cell editing, row and column insertion, deletion, and resizing.
148
+ * [Borders](https://ej2.syncfusion.com/vue/documentation/spreadsheet/formatting/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#borders): Provides the option to customize cell gridlines such as color and its style for enhanced UI.
149
+ * [Show/hide](https://ej2.syncfusion.com/vue/documentation/spreadsheet/worksheet/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#sheet-visibility): Provides the option to show/hide rows, columns and sheets.
150
+ * [Insert/delete](https://ej2.syncfusion.com/vue/documentation/spreadsheet/rows-and-columns/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#insert): Provides the option to insert/delete rows, columns and sheets.
151
+ * [Merge cells](https://ej2.syncfusion.com/vue/documentation/spreadsheet/cell-range/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#merge-cells): Provides the option to combine two or more cells located in the same row or column into a single cell.
152
+ * [Conditional formatting](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/conditional-formatting.html): Provides the option to format a cell or range of cells based on conditions applied.
153
+ * [Autofill](https://ej2.syncfusion.com/vue/documentation/spreadsheet/cell-range/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#auto-fill): Provides the option to fill or copy a series or pattern of values and formats into adjacent cells in any direction.
154
+ * [Clear](https://ej2.syncfusion.com/vue/documentation/spreadsheet/cell-range/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#clear): Provides the option to clear the content, formats, and hyperlinks applied to a cell or range of cells in a Spreadsheet.
155
+ * [Aggregates](https://ej2.syncfusion.com/vue/documentation/spreadsheet/formulas/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides the option to check the sum, average, count, and more for the selected cells or range in the sheet.
156
+ * [Picture](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/image.html): Allows you to view, insert, and modify a picture in a Spreadsheet with customizing options.
157
+ * [Chart](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/chart.html): Transforms your Spreadsheet data to an intuitive overview for better understanding and to make smart business decisions.
158
+ * [Freeze panes](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/freeze-panes.html): Allows you to keep the specified rows and columns always visible at the top and left side of the sheet while scrolling through the sheet.
159
+ * [Password protection](https://ej2.syncfusion.com/vue/documentation/spreadsheet/protect-sheet/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#protect-workbook): Allows you to protect the workbook with a password.
160
+ * [Multi-line editing](https://ej2.syncfusion.com/vue/documentation/spreadsheet/editing/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Allows you to insert a line break between paragraphs of the text within a cell in a Spreadsheet.
161
+ * [Calculate range selection](https://ej2.syncfusion.com/vue/documentation/spreadsheet/selection/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Helps you to select a range or multiple ranges when editing a formula in a cell.
162
+ * [Right-to-left (RTL)](https://ej2.syncfusion.com/vue/documentation/right-to-left/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Aligns content in the Spreadsheet component from right to left.
163
+ * [Templates](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#/material/spreadsheet/cell-template.html): Templates can be used to create custom user experiences in the Spreadsheet.
164
+ * [Globalization](https://ej2.syncfusion.com/vue/documentation/spreadsheet/global-local/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm#localization): Personalize the Spreadsheet component with different languages, as well as culture-specific number, date, and time formatting.
165
+ * [Accessibility](https://ej2.syncfusion.com/vue/documentation/spreadsheet/accessibility/?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm): Provides with built-in accessibility support which helps to access all the Spreadsheet component features through the keyboard, screen readers, or other assistive technology devices.
166
+
167
+ ## Support
168
+
169
+ Product support is available through the following mediums.
170
+
171
+ * [Support ticket](https://support.syncfusion.com/support/tickets/create) - Guaranteed Response in 24 hours | Unlimited tickets | Holiday support
172
+ * [Community forum](https://www.syncfusion.com/forums/vue?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm)
173
+ * [GitHub issues](https://github.com/syncfusion/ej2-vue-ui-components/issues/new)
174
+ * [Request feature or report bug](https://www.syncfusion.com/feedback/vue?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm)
175
+ * Live chat
176
+
177
+ ## Changelog
178
+
179
+ Check the changelog [here](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/components/spreadsheet/CHANGELOG.md?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm). Get minor improvements and bug fixes every week to stay up to date with frequent updates.
180
+
181
+ ## License and copyright
182
+
183
+ > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [Vue UI components](https://www.syncfusion.com/vue-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
184
+
185
+ > A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
186
+
187
+ See [LICENSE FILE](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license?utm_source=npm&utm_medium=listing&utm_campaign=vue-spreadsheet-npm) for more info.
188
+
189
+ © Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
@@ -1,2 +1,11 @@
1
+ /*!
2
+ * filename: ej2-vue-spreadsheet.umd.min.js
3
+ * version : 26.1.38
4
+ * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
+ * Use of this code is subject to the terms of our license.
6
+ * A copy of the current license can be obtained at any time by e-mailing
7
+ * licensing@syncfusion.com. Any infringement will be prosecuted under
8
+ * applicable laws.
9
+ */
1
10
  !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports,require("@syncfusion/ej2-spreadsheet"),require("@syncfusion/ej2-vue-base"),require("@syncfusion/ej2-base")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-spreadsheet","@syncfusion/ej2-vue-base","@syncfusion/ej2-base"],n):n((e=e||self).ej={},e.ej2Spreadsheet,e.ej2VueBase,e.ej2Base)}(this,function(n,t,s,u){"use strict";var i=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-images"}}}),o={name:"e-images",install:function(e){e.component(o.name,i)}},a=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-image"}}}),r={name:"e-image",install:function(e){e.component(r.name,a)}},c=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-charts"}}}),l={name:"e-charts",install:function(e){e.component(l.name,c)}},d=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-chart"}}}),f={name:"e-chart",install:function(e){e.component(f.name,d)}},m=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-cells"}}}),h={name:"e-cells",install:function(e){e.component(h.name,m)}},p=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-cell"}}}),g={name:"e-cell",install:function(e){e.component(g.name,p)}},I=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-rows"}}}),j={name:"e-rows",install:function(e){e.component(j.name,I)}},v=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-row"}}}),C={name:"e-row",install:function(e){e.component(C.name,v)}},b=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-columns"}}}),D={name:"e-columns",install:function(e){e.component(D.name,b)}},x=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-column"}}}),w={name:"e-column",install:function(e){e.component(w.name,x)}},E=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-ranges"}}}),S={name:"e-ranges",install:function(e){e.component(S.name,E)}},F=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-range"}}}),y={name:"e-range",install:function(e){e.component(y.name,F)}},R=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-conditionalformats"}}}),T={name:"e-conditionalformats",install:function(e){e.component(T.name,R)}},P=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-conditionalformat"}}}),$={name:"e-conditionalformat",install:function(e){e.component($.name,P)}},M=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-sheets"}}}),N={name:"e-sheets",install:function(e){e.component(N.name,M)}},O=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-sheet"}}}),H={name:"e-sheet",install:function(e){e.component(H.name,O)}},U=s.vueDefineComponent({inject:{custom:{default:null}},render:function(e){var n;if(!s.isExecute)return n=null,(s.isExecute?e:s.gh)("div",{class:"e-directive"},n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},updated:function(){!s.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-definednames"}}}),k={name:"e-definednames",install:function(e){e.component(k.name,U)}},B=s.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-definedname"}}}),V={name:"e-definedname",install:function(e){e.component(V.name,B)}},_=["isLazyUpdate","plugins","activeSheetIndex","allowAutoFill","allowCellFormatting","allowChart","allowConditionalFormat","allowDataValidation","allowDelete","allowEditing","allowFiltering","allowFindAndReplace","allowFreezePane","allowHyperlink","allowImage","allowInsert","allowMerge","allowNumberFormatting","allowOpen","allowPrint","allowResizing","allowSave","allowScrolling","allowSorting","allowUndoRedo","allowWrap","autoFillSettings","cellStyle","cssClass","currencyCode","definedNames","enableClipboard","enableContextMenu","enableKeyboardNavigation","enableKeyboardShortcut","enableNotes","enablePersistence","enableRtl","height","isProtected","listSeparator","locale","openUrl","password","saveUrl","scrollSettings","selectionSettings","sheets","showAggregate","showFormulaBar","showRibbon","showSheetTabs","width","actionBegin","actionComplete","afterHyperlinkClick","afterHyperlinkCreate","beforeCellFormat","beforeCellRender","beforeCellSave","beforeCellUpdate","beforeConditionalFormat","beforeDataBound","beforeHyperlinkClick","beforeHyperlinkCreate","beforeOpen","beforeSave","beforeSelect","beforeSort","cellEdit","cellEdited","cellEditing","cellSave","contextMenuBeforeClose","contextMenuBeforeOpen","contextMenuItemSelect","created","dataBound","dataSourceChanged","dialogBeforeOpen","fileMenuBeforeClose","fileMenuBeforeOpen","fileMenuItemSelect","openComplete","openFailure","queryCellInfo","saveComplete","select","sortComplete"],z=[],e=s.getProps({props:_}),A=e[0],e=e[1],W=Object.keys(e);W.push("modelchanged","update:modelValue");for(var q=0,J=z;q<J.length;q++)W.push("update:"+J[q]);var K=s.vueDefineComponent({name:"SpreadsheetComponent",mixins:[s.ComponentBase],props:A,watch:e,emits:W,provide:function(){return{custom:this.custom}},data:function(){return{ej2Instances:new t.Spreadsheet({}),propKeys:_,models:z,hasChildDirective:!0,hasInjectedModules:!0,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"},tagNameMapper:{"e-images":"e-image","e-charts":"e-chart","e-conditionalformats":"e-conditionalFormats","e-definednames":"e-definedNames"},isVue3:!s.isExecute,templateCollection:{}}},created:function(){this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var n=null;return(s.isExecute?e:s.gh)("div",n=u.isNullOrUndefined(this.$slots.default)?n:s.isExecute?this.$slots.default:this.$slots.default())},methods:{clearTemplate:function(e){if((e=e||Object.keys(this.templateCollection||{})).length&&this.templateCollection)for(var n=0,t=e;n<t.length;n++){var s=t[n],i=this.templateCollection[s];if(i&&i.length){for(var o=0,a=i;o<a.length;o++){var r=a[o];u.getValue("__vue__.$destroy",r)&&r.__vue__.$destroy(),r.innerHTML&&(r.innerHTML="")}delete this.templateCollection[s]}}},setProperties:function(t,e){var s=this;this.isVue3&&(this.models=this.models||this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(t,e),t&&this.models&&this.models.length&&Object.keys(t).map(function(n){s.models.map(function(e){n!==e||/datasource/i.test(n)||(s.isVue3?s.ej2Instances.vueInstance.$emit("update:"+n,t[n]):(s.$emit("update:"+n,t[n]),s.$emit("modelchanged",t[n])))})})},custom:function(){this.updated()},Unfreeze:function(e){return this.ej2Instances.Unfreeze(e)},addContextMenuItems:function(e,n,t,s){return this.ej2Instances.addContextMenuItems(e,n,t,s)},addCustomFunction:function(e,n,t){return this.ej2Instances.addCustomFunction(e,n,t)},addDataValidation:function(e,n){return this.ej2Instances.addDataValidation(e,n)},addDefinedName:function(e){return this.ej2Instances.addDefinedName(e)},addFileMenuItems:function(e,n,t,s){return this.ej2Instances.addFileMenuItems(e,n,t,s)},addHyperlink:function(e,n,t){return this.ej2Instances.addHyperlink(e,n,t)},addInvalidHighlight:function(e){return this.ej2Instances.addInvalidHighlight(e)},addRibbonTabs:function(e,n){return this.ej2Instances.addRibbonTabs(e,n)},addToolbarItems:function(e,n,t){return this.ej2Instances.addToolbarItems(e,n,t)},applyFilter:function(e,n){return this.ej2Instances.applyFilter(e,n)},autoFill:function(e,n,t,s){return this.ej2Instances.autoFill(e,n,t,s)},autoFit:function(e){return this.ej2Instances.autoFit(e)},cellFormat:function(e,n){return this.ej2Instances.cellFormat(e,n)},clear:function(e){return this.ej2Instances.clear(e)},clearConditionalFormat:function(e){return this.ej2Instances.clearConditionalFormat(e)},clearFilter:function(e){return this.ej2Instances.clearFilter(e)},closeEdit:function(){return this.ej2Instances.closeEdit()},computeExpression:function(e){return this.ej2Instances.computeExpression(e)},conditionalFormat:function(e){return this.ej2Instances.conditionalFormat(e)},copy:function(e){return this.ej2Instances.copy(e)},cut:function(e){return this.ej2Instances.cut(e)},delete:function(e,n,t,s){return this.ej2Instances.delete(e,n,t,s)},deleteChart:function(e){return this.ej2Instances.deleteChart(e)},deleteImage:function(e,n){return this.ej2Instances.deleteImage(e,n)},deselectChart:function(){return this.ej2Instances.deselectChart()},deselectImage:function(){return this.ej2Instances.deselectImage()},duplicateSheet:function(e){return this.ej2Instances.duplicateSheet(e)},enableContextMenuItems:function(e,n,t){return this.ej2Instances.enableContextMenuItems(e,n,t)},enableFileMenuItems:function(e,n,t){return this.ej2Instances.enableFileMenuItems(e,n,t)},enableRibbonTabs:function(e,n){return this.ej2Instances.enableRibbonTabs(e,n)},enableToolbarItems:function(e,n,t){return this.ej2Instances.enableToolbarItems(e,n,t)},endEdit:function(){return this.ej2Instances.endEdit()},find:function(e){return this.ej2Instances.find(e)},findAll:function(e,n,t,s,i){return this.ej2Instances.findAll(e,n,t,s,i)},freezePanes:function(e,n,t){return this.ej2Instances.freezePanes(e,n,t)},getData:function(e){return this.ej2Instances.getData(e)},getDisplayText:function(e){return this.ej2Instances.getDisplayText(e)},getRowData:function(e,n){return this.ej2Instances.getRowData(e,n)},getSelectAllContent:function(){return this.ej2Instances.getSelectAllContent()},goTo:function(e){return this.ej2Instances.goTo(e)},hideColumn:function(e,n,t){return this.ej2Instances.hideColumn(e,n,t)},hideFileMenuItems:function(e,n,t){return this.ej2Instances.hideFileMenuItems(e,n,t)},hideRibbonTabs:function(e,n){return this.ej2Instances.hideRibbonTabs(e,n)},hideRow:function(e,n,t){return this.ej2Instances.hideRow(e,n,t)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},hideToolbarItems:function(e,n,t){return this.ej2Instances.hideToolbarItems(e,n,t)},insertChart:function(e){return this.ej2Instances.insertChart(e)},insertColumn:function(e,n,t){return this.ej2Instances.insertColumn(e,n,t)},insertImage:function(e,n){return this.ej2Instances.insertImage(e,n)},insertRow:function(e,n,t){return this.ej2Instances.insertRow(e,n,t)},insertSheet:function(e,n){return this.ej2Instances.insertSheet(e,n)},isValidCell:function(e){return this.ej2Instances.isValidCell(e)},lockCells:function(e,n){return this.ej2Instances.lockCells(e,n)},merge:function(e,n){return this.ej2Instances.merge(e,n)},moveSheet:function(e,n){return this.ej2Instances.moveSheet(e,n)},numberFormat:function(e,n){return this.ej2Instances.numberFormat(e,n)},open:function(e){return this.ej2Instances.open(e)},openFromJson:function(e,n){return this.ej2Instances.openFromJson(e,n)},paste:function(e,n){return this.ej2Instances.paste(e,n)},print:function(e){return this.ej2Instances.print(e)},protectSheet:function(e,n,t){return this.ej2Instances.protectSheet(e,n,t)},redo:function(){return this.ej2Instances.redo()},refresh:function(e){return this.ej2Instances.refresh(e)},removeContextMenuItems:function(e,n){return this.ej2Instances.removeContextMenuItems(e,n)},removeDataValidation:function(e){return this.ej2Instances.removeDataValidation(e)},removeDefinedName:function(e,n){return this.ej2Instances.removeDefinedName(e,n)},removeHyperlink:function(e){return this.ej2Instances.removeHyperlink(e)},removeInvalidHighlight:function(e){return this.ej2Instances.removeInvalidHighlight(e)},replace:function(e){return this.ej2Instances.replace(e)},resize:function(){return this.ej2Instances.resize()},save:function(e,n){return this.ej2Instances.save(e,n)},saveAsJson:function(e){return this.ej2Instances.saveAsJson(e)},selectChart:function(e){return this.ej2Instances.selectChart(e)},selectImage:function(e){return this.ej2Instances.selectImage(e)},selectRange:function(e){return this.ej2Instances.selectRange(e)},setBorder:function(e,n,t,s){return this.ej2Instances.setBorder(e,n,t,s)},setColWidth:function(e,n,t){return this.ej2Instances.setColWidth(e,n,t)},setColumnsWidth:function(e,n){return this.ej2Instances.setColumnsWidth(e,n)},setRangeReadOnly:function(e,n,t){return this.ej2Instances.setRangeReadOnly(e,n,t)},setRowHeight:function(e,n,t,s,i){return this.ej2Instances.setRowHeight(e,n,t,s,i)},setRowsHeight:function(e,n,t){return this.ej2Instances.setRowsHeight(e,n,t)},showSpinner:function(){return this.ej2Instances.showSpinner()},sort:function(e,n){return this.ej2Instances.sort(e,n)},startEdit:function(){return this.ej2Instances.startEdit()},unMerge:function(e){return this.ej2Instances.unMerge(e)},undo:function(){return this.ej2Instances.undo()},unfreezePanes:function(e){return this.ej2Instances.unfreezePanes(e)},unprotectSheet:function(e){return this.ej2Instances.unprotectSheet(e)},updateAction:function(e){return this.ej2Instances.updateAction(e)},updateCell:function(e,n){return this.ej2Instances.updateCell(e,n)},updateRange:function(e,n){return this.ej2Instances.updateRange(e,n)},updateUndoRedoCollection:function(e){return this.ej2Instances.updateUndoRedoCollection(e)},wrap:function(e,n){return this.ej2Instances.wrap(e,n)}}}),L={name:"ejs-spreadsheet",install:function(e){e.component(L.name,K),e.component(H.name,O),e.component(N.name,M),e.component(C.name,v),e.component(j.name,I),e.component(g.name,p),e.component(h.name,m),e.component(r.name,a),e.component(o.name,i),e.component(f.name,d),e.component(l.name,c),e.component(w.name,x),e.component(D.name,b),e.component(y.name,F),e.component(S.name,E),e.component($.name,P),e.component(T.name,R),e.component(V.name,B),e.component(k.name,U)}};Object.keys(t).forEach(function(e){"default"!==e&&Object.defineProperty(n,e,{enumerable:!0,get:function(){return t[e]}})}),n.CellDirective=p,n.CellPlugin=g,n.CellsDirective=m,n.CellsPlugin=h,n.ChartDirective=d,n.ChartPlugin=f,n.ChartsDirective=c,n.ChartsPlugin=l,n.ColumnDirective=x,n.ColumnPlugin=w,n.ColumnsDirective=b,n.ColumnsPlugin=D,n.ConditionalFormatDirective=P,n.ConditionalFormatPlugin=$,n.ConditionalFormatsDirective=R,n.ConditionalFormatsPlugin=T,n.DefinedNameDirective=B,n.DefinedNamePlugin=V,n.DefinedNamesDirective=U,n.DefinedNamesPlugin=k,n.ImageDirective=a,n.ImagePlugin=r,n.ImagesDirective=i,n.ImagesPlugin=o,n.RangeDirective=F,n.RangePlugin=y,n.RangesDirective=E,n.RangesPlugin=S,n.RowDirective=v,n.RowPlugin=C,n.RowsDirective=I,n.RowsPlugin=j,n.SheetDirective=O,n.SheetPlugin=H,n.SheetsDirective=M,n.SheetsPlugin=N,n.SpreadsheetComponent=K,n.SpreadsheetPlugin=L,Object.defineProperty(n,"__esModule",{value:!0})});
2
11
  //# sourceMappingURL=ej2-vue-spreadsheet.umd.min.js.map
package/license CHANGED
@@ -1,6 +1,6 @@
1
- Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
2
- To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
3
- Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
4
- Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
5
- The Syncfusion license that contains the terms and conditions can be found at
6
- https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
1
+ Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
2
+ To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
3
+ Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
4
+ Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
5
+ The Syncfusion license that contains the terms and conditions can be found at
6
+ https://www.syncfusion.com/content/downloads/syncfusion_license.pdf