@slickgrid-universal/excel-export 1.2.1 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,20 +1,20 @@
1
- Copyright (c) 2020-2022, Ghislain B. - Slickgrid-Universal
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ Copyright (c) 2020-2022, Ghislain B. - Slickgrid-Universal
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -1,71 +1,71 @@
1
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
- [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
3
- [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
4
- [![npm](https://img.shields.io/npm/v/@slickgrid-universal/excel-export.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/excel-export)
5
- [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/excel-export?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/excel-export)
6
-
7
- [![Actions Status](https://github.com/ghiscoding/slickgrid-universal/workflows/CI%20Build/badge.svg)](https://github.com/ghiscoding/slickgrid-universal/actions)
8
- [![Cypress.io](https://img.shields.io/badge/tested%20with-Cypress-04C38E.svg)](https://www.cypress.io/)
9
- [![jest](https://jestjs.io/img/jest-badge.svg)](https://github.com/facebook/jest)
10
- [![codecov](https://codecov.io/gh/ghiscoding/slickgrid-universal/branch/master/graph/badge.svg)](https://codecov.io/gh/ghiscoding/slickgrid-universal)
11
-
12
- ## Excel Export Service
13
- #### @slickgrid-universal/excel-export
14
-
15
- Simple Export to Excel Service that allows to exporting as `.xls` or `.xlsx`.
16
-
17
- ### Internal Dependencies
18
- - [@slickgrid-universal/common](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/common)
19
-
20
- ### External Dependencies
21
- This package requires [excel-builder-webpacker](https://www.npmjs.com/package/excel-builder-webpacker) which itself requires [jszip](https://www.npmjs.com/package/jszip) and [lodash](https://www.npmjs.com/package/lodash), the later not being a small lib, so make sure that you are fine with the bundle size. For our use case, the extra bundle size is totally worth the feature.
22
-
23
- ### Installation
24
- Follow the instruction provided in the main [README](https://github.com/ghiscoding/slickgrid-universal#installation), you can see a demo by looking at the [GitHub Demo](https://ghiscoding.github.io/slickgrid-universal) page and click on "Export to Excel" from the Grid Menu (aka hamburger menu).
25
-
26
- ### Usage
27
- In order to use the Service, you will need to register it in your grid options via the `registerExternalResources` as shown below.
28
-
29
- ##### ViewModel
30
- ```ts
31
- import { ExcelExportService } from '@slickgrid-universal/excel-export';
32
-
33
- export class MyExample {
34
- initializeGrid {
35
- this.gridOptions = {
36
- enableExcelExport: true,
37
- excelExportOptions: {
38
- sanitizeDataExport: true
39
- },
40
- registerExternalResources: [new ExcelExportService()],
41
- }
42
- }
43
- }
44
- ```
45
-
46
- If you wish to reference the service to use it with external export button, then simply create a reference while instantiating it.
47
- ```ts
48
- import { ExcelExportService } from '@slickgrid-universal/excel-export';
49
-
50
- export class MyExample {
51
- excelExportService: ExcelExportService;
52
-
53
- constructor() {
54
- this.excelExportService = new ExcelExportService();
55
- }
56
-
57
- initializeGrid {
58
- this.gridOptions = {
59
- enableExcelExport: true,
60
- excelExportOptions: {
61
- sanitizeDataExport: true
62
- },
63
- registerExternalResources: [this.excelExportService],
64
- }
65
- }
66
-
67
- exportToExcel() {
68
- this.excelExportService.exportToExcel({ filename: 'export', format: FileType.xlsx });
69
- }
70
- }
71
- ```
1
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
+ [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
3
+ [![lerna--lite](https://img.shields.io/badge/maintained%20with-lerna--lite-blueviolet)](https://github.com/ghiscoding/lerna-lite)
4
+ [![npm](https://img.shields.io/npm/v/@slickgrid-universal/excel-export.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/excel-export)
5
+ [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/excel-export?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/excel-export)
6
+
7
+ [![Actions Status](https://github.com/ghiscoding/slickgrid-universal/workflows/CI%20Build/badge.svg)](https://github.com/ghiscoding/slickgrid-universal/actions)
8
+ [![Cypress.io](https://img.shields.io/badge/tested%20with-Cypress-04C38E.svg)](https://www.cypress.io/)
9
+ [![jest](https://jestjs.io/img/jest-badge.svg)](https://github.com/facebook/jest)
10
+ [![codecov](https://codecov.io/gh/ghiscoding/slickgrid-universal/branch/master/graph/badge.svg)](https://codecov.io/gh/ghiscoding/slickgrid-universal)
11
+
12
+ ## Excel Export Service
13
+ #### @slickgrid-universal/excel-export
14
+
15
+ Simple Export to Excel Service that allows to exporting as `.xls` or `.xlsx`.
16
+
17
+ ### Internal Dependencies
18
+ - [@slickgrid-universal/common](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/common)
19
+
20
+ ### External Dependencies
21
+ This package requires [excel-builder-webpacker](https://www.npmjs.com/package/excel-builder-webpacker) which itself requires [jszip](https://www.npmjs.com/package/jszip) and [lodash](https://www.npmjs.com/package/lodash), the later not being a small lib, so make sure that you are fine with the bundle size. For our use case, the extra bundle size is totally worth the feature.
22
+
23
+ ### Installation
24
+ Follow the instruction provided in the main [README](https://github.com/ghiscoding/slickgrid-universal#installation), you can see a demo by looking at the [GitHub Demo](https://ghiscoding.github.io/slickgrid-universal) page and click on "Export to Excel" from the Grid Menu (aka hamburger menu).
25
+
26
+ ### Usage
27
+ In order to use the Service, you will need to register it in your grid options via the `registerExternalResources` as shown below.
28
+
29
+ ##### ViewModel
30
+ ```ts
31
+ import { ExcelExportService } from '@slickgrid-universal/excel-export';
32
+
33
+ export class MyExample {
34
+ initializeGrid {
35
+ this.gridOptions = {
36
+ enableExcelExport: true,
37
+ excelExportOptions: {
38
+ sanitizeDataExport: true
39
+ },
40
+ registerExternalResources: [new ExcelExportService()],
41
+ }
42
+ }
43
+ }
44
+ ```
45
+
46
+ If you wish to reference the service to use it with external export button, then simply create a reference while instantiating it.
47
+ ```ts
48
+ import { ExcelExportService } from '@slickgrid-universal/excel-export';
49
+
50
+ export class MyExample {
51
+ excelExportService: ExcelExportService;
52
+
53
+ constructor() {
54
+ this.excelExportService = new ExcelExportService();
55
+ }
56
+
57
+ initializeGrid {
58
+ this.gridOptions = {
59
+ enableExcelExport: true,
60
+ excelExportOptions: {
61
+ sanitizeDataExport: true
62
+ },
63
+ registerExternalResources: [this.excelExportService],
64
+ }
65
+ }
66
+
67
+ exportToExcel() {
68
+ this.excelExportService.exportToExcel({ filename: 'export', format: FileType.xlsx });
69
+ }
70
+ }
71
+ ```
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
5
9
  }) : (function(o, m, k, k2) {
6
10
  if (k2 === undefined) k2 = k;
7
11
  o[k2] = m[k];
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,8DAA4C;AAC5C,gEAA8C;AAC9C,4DAA0C;AAC1C,8DAA4C;AAC5C,4DAA0C;AAC1C,6DAA2C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,gEAA8C;AAC9C,4DAA0C;AAC1C,8DAA4C;AAC5C,4DAA0C;AAC1C,6DAA2C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/excel-export",
3
- "version": "1.2.1",
3
+ "version": "1.2.5",
4
4
  "description": "Excel Export (xls/xlsx) Service.",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -14,14 +14,14 @@
14
14
  ],
15
15
  "scripts": {
16
16
  "build": "cross-env tsc --build",
17
- "postbuild": "npm-run-all bundle:commonjs",
17
+ "postbuild": "npm-run-all bundle:commonjs --npm-path npm",
18
18
  "build:watch": "cross-env tsc --incremental --watch",
19
- "dev": "run-s build",
20
- "dev:watch": "run-p build:watch",
19
+ "dev": "npm run build",
20
+ "dev:watch": "run-p build:watch --npm-path npm",
21
21
  "bundle:commonjs": "tsc --project tsconfig.bundle.json --outDir dist/commonjs --module commonjs",
22
22
  "bundle:esm": "cross-env tsc --project tsconfig.bundle.json --outDir dist/esm --module esnext --target es2018",
23
- "bundle": "run-p bundle:commonjs bundle:esm",
24
- "prebundle": "npm-run-all delete:dist",
23
+ "bundle": "run-p bundle:commonjs bundle:esm --npm-path npm",
24
+ "prebundle": "npm-run-all delete:dist --npm-path npm",
25
25
  "delete:dist": "cross-env rimraf --maxBusyTries=10 dist",
26
26
  "package:add-browser-prop": "cross-env node ../change-package-browser.js --add-browser=true --folder-name=excel-export",
27
27
  "package:remove-browser-prop": "cross-env node ../change-package-browser.js --remove-browser=true --folder-name=excel-export"
@@ -47,7 +47,7 @@
47
47
  "not dead"
48
48
  ],
49
49
  "dependencies": {
50
- "@slickgrid-universal/common": "^1.2.1",
50
+ "@slickgrid-universal/common": "^1.2.5",
51
51
  "excel-builder-webpacker": "^2.1.6",
52
52
  "moment-mini": "^2.24.0"
53
53
  },
@@ -56,5 +56,9 @@
56
56
  "npm-run-all": "^4.1.5",
57
57
  "rimraf": "^3.0.2"
58
58
  },
59
- "gitHead": "11a05e9877ac0a42d53eaefb1edf95586dcd41b3"
59
+ "funding": {
60
+ "type": "ko_fi",
61
+ "url": "https://ko-fi.com/N4N679OT"
62
+ },
63
+ "gitHead": "3e31b6633e5fa2dc9cd64ce73c5fb8dc25cbc485"
60
64
  }
package/CHANGELOG.md DELETED
@@ -1,557 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [1.2.1](https://github.com/ghiscoding/slickgrid-universal/compare/v1.2.0...v1.2.1) (2022-01-18)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * **memory:** clear & dispose of grid to avoid mem leaks & detached elm ([7035db5](https://github.com/ghiscoding/slickgrid-universal/commit/7035db5f878187f6fb8b9d2effacb7443f25e2c9))
12
-
13
-
14
-
15
-
16
-
17
- # [1.2.0](https://github.com/ghiscoding/slickgrid-universal/compare/v1.1.1...v1.2.0) (2022-01-06)
18
-
19
- **Note:** Version bump only for package @slickgrid-universal/excel-export
20
-
21
-
22
-
23
-
24
-
25
- ## [1.1.1](https://github.com/ghiscoding/slickgrid-universal/compare/v1.1.0...v1.1.1) (2021-12-11)
26
-
27
-
28
- ### Bug Fixes
29
-
30
- * **build:** bump version manually bcoz of previous force push ([5e9a610](https://github.com/ghiscoding/slickgrid-universal/commit/5e9a610ad01d752673856591f9b5de73b0ece0e9))
31
-
32
-
33
-
34
-
35
-
36
- # [1.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.19.2...v1.1.0) (2021-12-11)
37
-
38
- **Note:** Version bump only for package @slickgrid-universal/excel-export
39
-
40
-
41
-
42
-
43
-
44
-
45
- ## [0.19.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.19.1...v0.19.2) (2021-11-19)
46
-
47
- **Note:** Version bump only for package @slickgrid-universal/excel-export
48
-
49
-
50
-
51
-
52
-
53
-
54
- ## [0.19.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.19.0...v0.19.1) (2021-11-15)
55
-
56
-
57
- ### Bug Fixes
58
-
59
- * **export:** sanitize any html that could exist in header titles ([abdae52](https://github.com/ghiscoding/slickgrid-universal/commit/abdae52822c4496286a653ed84be964213e1d32f))
60
-
61
-
62
-
63
-
64
-
65
-
66
- # [0.19.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.18.0...v0.19.0) (2021-10-28)
67
-
68
- **Note:** Version bump only for package @slickgrid-universal/excel-export
69
-
70
-
71
-
72
-
73
-
74
-
75
- # [0.18.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.17.0...v0.18.0) (2021-09-29)
76
-
77
- **Note:** Version bump only for package @slickgrid-universal/excel-export
78
-
79
-
80
-
81
-
82
-
83
-
84
- # [0.17.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.16.2...v0.17.0) (2021-09-09)
85
-
86
- **Note:** Version bump only for package @slickgrid-universal/excel-export
87
-
88
-
89
-
90
-
91
-
92
- ## [0.16.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.16.1...v0.16.2) (2021-07-23)
93
-
94
- **Note:** Version bump only for package @slickgrid-universal/excel-export
95
-
96
-
97
-
98
-
99
-
100
- ## [0.16.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.16.0...v0.16.1) (2021-07-16)
101
-
102
- **Note:** Version bump only for package @slickgrid-universal/excel-export
103
-
104
-
105
-
106
-
107
-
108
- # [0.16.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.15.0...v0.16.0) (2021-07-16)
109
-
110
-
111
- ### Features
112
-
113
- * **services:** make everything extendable by using `protected` ([ecbb93a](https://github.com/ghiscoding/slickgrid-universal/commit/ecbb93a56abba39dd050bbd6019b86694495edd1))
114
-
115
-
116
-
117
-
118
-
119
- # [0.15.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.14.1...v0.15.0) (2021-07-06)
120
-
121
-
122
- ### Bug Fixes
123
-
124
- * **export:** expanded Row Detail shouldn't be exported, fixes [#390](https://github.com/ghiscoding/slickgrid-universal/issues/390) ([cef826c](https://github.com/ghiscoding/slickgrid-universal/commit/cef826c1deb458c316bdeaa4fdeba27e748595f3))
125
-
126
-
127
-
128
-
129
-
130
-
131
- ## [0.14.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.14.0...v0.14.1) (2021-05-22)
132
-
133
- **Note:** Version bump only for package @slickgrid-universal/excel-export
134
-
135
-
136
-
137
-
138
-
139
- # [0.14.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.13.0...v0.14.0) (2021-05-22)
140
-
141
-
142
- ### Bug Fixes
143
-
144
- * export to file/excel should also have tree indentation ([8c4c2b8](https://github.com/ghiscoding/slickgrid-universal/commit/8c4c2b8d30bb78e927f0a28bb0f7bef81e95d789))
145
-
146
-
147
-
148
-
149
-
150
-
151
- # [0.13.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.12.0...v0.13.0) (2021-04-27)
152
-
153
-
154
- ### Bug Fixes
155
-
156
- * **exports:** grid with colspan should be export accordingly ([#311](https://github.com/ghiscoding/slickgrid-universal/issues/311)) ([e899fbb](https://github.com/ghiscoding/slickgrid-universal/commit/e899fbba3daa41261dcaa57b0555e37e9bdfafb4))
157
-
158
-
159
-
160
-
161
-
162
-
163
- # [0.12.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.11.2...v0.12.0) (2021-03-24)
164
-
165
-
166
- ### Features
167
-
168
- * **resources:** add RxJS support into Slickgrid-Universal via external package ([#280](https://github.com/ghiscoding/slickgrid-universal/issues/280)) ([c10fc33](https://github.com/ghiscoding/slickgrid-universal/commit/c10fc339019c04ec0f7c4357ccdb3949a2358460))
169
-
170
-
171
-
172
-
173
-
174
-
175
- ## [0.11.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.11.1...v0.11.2) (2021-02-27)
176
-
177
- **Note:** Version bump only for package @slickgrid-universal/excel-export
178
-
179
-
180
-
181
-
182
-
183
- ## [0.11.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.11.0...v0.11.1) (2021-02-27)
184
-
185
- **Note:** Version bump only for package @slickgrid-universal/excel-export
186
-
187
-
188
-
189
-
190
-
191
- # [0.11.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.10.2...v0.11.0) (2021-02-27)
192
-
193
-
194
- ### Bug Fixes
195
-
196
- * **build:** enable tsconfig strict mode tsconfig ([#269](https://github.com/ghiscoding/slickgrid-universal/issues/269)) ([095fc71](https://github.com/ghiscoding/slickgrid-universal/commit/095fc71052c1f4e776544781da5fe762cfa16238))
197
-
198
-
199
- ### Features
200
-
201
- * **editors:** add a Clear (X) button to the Autocomplete Editor ([#270](https://github.com/ghiscoding/slickgrid-universal/issues/270)) ([ffbd188](https://github.com/ghiscoding/slickgrid-universal/commit/ffbd188534992c31848691154517deb64694f3b2))
202
-
203
-
204
-
205
-
206
-
207
-
208
- ## [0.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.10.1...v0.10.2) (2021-01-28)
209
-
210
- **Note:** Version bump only for package @slickgrid-universal/excel-export
211
-
212
-
213
-
214
-
215
-
216
- ## [0.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.10.0...v0.10.1) (2021-01-28)
217
-
218
-
219
- ### Bug Fixes
220
-
221
- * **build:** decrease tsc target to es2017 instead of es2020 ([2f2e5f4](https://github.com/ghiscoding/slickgrid-universal/commit/2f2e5f46a3b25897f1a4a59daa1346b5d577ddb8))
222
-
223
-
224
-
225
-
226
-
227
-
228
- # [0.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.9.0...v0.10.0) (2021-01-28)
229
-
230
-
231
- ### Bug Fixes
232
-
233
- * **core:** fix types index.d.ts url ([a76b3a3](https://github.com/ghiscoding/slickgrid-universal/commit/a76b3a3d97a6d211ec2e7e8d9060fd8dd0719f58))
234
- * **exports:** Excel Export custom width applies the width to next column ([#242](https://github.com/ghiscoding/slickgrid-universal/issues/242)) ([146f64f](https://github.com/ghiscoding/slickgrid-universal/commit/146f64f1b89005e6bb5e982721b5c7e43ecf5ac4))
235
- * **tsc:** running dev watch was overriding commonjs folder ([#249](https://github.com/ghiscoding/slickgrid-universal/issues/249)) ([e466f62](https://github.com/ghiscoding/slickgrid-universal/commit/e466f6214d9450b593daecfdee6682f1f7c9ed19))
236
-
237
-
238
-
239
-
240
-
241
- # [0.9.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.8.0...v0.9.0) (2021-01-06)
242
-
243
-
244
- ### Features
245
-
246
- * **build:** upgrade to WebPack 5 ([#225](https://github.com/ghiscoding/slickgrid-universal/issues/225)) ([c6b3ad3](https://github.com/ghiscoding/slickgrid-universal/commit/c6b3ad3eb6fb64306bfd8bd300fcc1e86b27e5a6))
247
- * **ci:** replace CircleCI with GitHub Actions ([#211](https://github.com/ghiscoding/slickgrid-universal/issues/211)) ([4f91140](https://github.com/ghiscoding/slickgrid-universal/commit/4f9114031ca6236ef45f04b67dcba1a9981035c4))
248
-
249
-
250
-
251
-
252
-
253
-
254
- # [0.8.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.7...v0.8.0) (2020-12-22)
255
-
256
-
257
- ### Bug Fixes
258
-
259
- * **core:** change moment/lodash imports so it works with ES6 module ([#210](https://github.com/ghiscoding/slickgrid-universal/issues/210)) ([2d25d3b](https://github.com/ghiscoding/slickgrid-universal/commit/2d25d3b99f7be93f2bc69f006fb67a39cf39ce7c))
260
-
261
-
262
-
263
-
264
-
265
- ## [0.7.7](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.6...v0.7.7) (2020-12-20)
266
-
267
- **Note:** Version bump only for package @slickgrid-universal/excel-export
268
-
269
-
270
-
271
-
272
-
273
- ## [0.7.6](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.5...v0.7.6) (2020-12-20)
274
-
275
- **Note:** Version bump only for package @slickgrid-universal/excel-export
276
-
277
-
278
-
279
-
280
-
281
- ## [0.7.5](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.4...v0.7.5) (2020-12-20)
282
-
283
- **Note:** Version bump only for package @slickgrid-universal/excel-export
284
-
285
-
286
-
287
-
288
-
289
- ## [0.7.4](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.3...v0.7.4) (2020-12-20)
290
-
291
- **Note:** Version bump only for package @slickgrid-universal/excel-export
292
-
293
-
294
-
295
-
296
-
297
-
298
- ## [0.7.3](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.2...v0.7.3) (2020-12-20)
299
-
300
-
301
- ### Bug Fixes
302
-
303
- * **exports:** should be able to change export file name ([#205](https://github.com/ghiscoding/slickgrid-universal/issues/205)) ([9d26213](https://github.com/ghiscoding/slickgrid-universal/commit/9d262134b12da46ef1fea970f092d96ce875ed78))
304
-
305
-
306
-
307
-
308
-
309
-
310
- ## [0.7.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.1...v0.7.2) (2020-12-17)
311
-
312
- **Note:** Version bump only for package @slickgrid-universal/excel-export
313
-
314
-
315
-
316
-
317
-
318
-
319
- ## [0.7.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.0...v0.7.1) (2020-12-17)
320
-
321
- **Note:** Version bump only for package @slickgrid-universal/excel-export
322
-
323
-
324
-
325
-
326
-
327
-
328
- # [0.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.6.0...v0.7.0) (2020-12-16)
329
-
330
-
331
- ### Bug Fixes
332
-
333
- * **components:** refactor to use registerExternalResources grid option ([#199](https://github.com/ghiscoding/slickgrid-universal/issues/199)) ([7ca42f4](https://github.com/ghiscoding/slickgrid-universal/commit/7ca42f4242bfddd4dd746d7f3f37dbe1e3f7368b))
334
-
335
-
336
-
337
-
338
-
339
- # [0.6.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.5.1...v0.6.0) (2020-12-14)
340
-
341
-
342
- ### Features
343
-
344
- * **core:** add registerExternalResources for Components/Services ([#196](https://github.com/ghiscoding/slickgrid-universal/issues/196)) ([ee02f1d](https://github.com/ghiscoding/slickgrid-universal/commit/ee02f1d62d1a0601421352e43d17bd8c89e4348c))
345
- * **core:** refactor code using the container service everywhere ([#197](https://github.com/ghiscoding/slickgrid-universal/issues/197)) ([96ce9bd](https://github.com/ghiscoding/slickgrid-universal/commit/96ce9bdbf18330e522dad0cbb0eda09c41f6a3df))
346
-
347
-
348
-
349
-
350
-
351
- ## [0.5.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.5.0...v0.5.1) (2020-12-10)
352
-
353
- **Note:** Version bump only for package @slickgrid-universal/excel-export
354
-
355
-
356
-
357
-
358
-
359
- # [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10)
360
-
361
-
362
- ### Features
363
-
364
- * **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1))
365
-
366
-
367
-
368
-
369
-
370
- ## [0.4.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.0...v0.4.1) (2020-12-07)
371
-
372
-
373
- ### Bug Fixes
374
-
375
- * **exports:** remove unsupported browser IE6-10 code ([25411e5](https://github.com/ghiscoding/slickgrid-universal/commit/25411e5e88cb2922d7fdeb40fe29541437acd9a6))
376
-
377
-
378
-
379
-
380
-
381
- # [0.4.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.3.0...v0.4.0) (2020-12-07)
382
-
383
- **Note:** Version bump only for package @slickgrid-universal/excel-export
384
-
385
-
386
-
387
-
388
-
389
- # [0.3.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.2.15...v0.3.0) (2020-12-02)
390
-
391
- **Note:** Version bump only for package @slickgrid-universal/excel-export
392
-
393
-
394
-
395
-
396
-
397
- ## [0.2.15](https://github.com/ghiscoding/slickgrid-universal/compare/v0.2.0...v0.2.15) (2020-11-30)
398
-
399
-
400
- ### Bug Fixes
401
-
402
- * **core:** don't expose src folder on npm & update few npm package ([#168](https://github.com/ghiscoding/slickgrid-universal/issues/168)) ([3c05938](https://github.com/ghiscoding/slickgrid-universal/commit/3c059381b35bba88ea98d0206692c912c625f227))
403
- * **core:** rename i18n to translater & fix few other issues ([#174](https://github.com/ghiscoding/slickgrid-universal/issues/174)) ([34c963a](https://github.com/ghiscoding/slickgrid-universal/commit/34c963a2bcef1b841d3c62ea405a4bc49be98a5c))
404
-
405
-
406
-
407
-
408
-
409
- ## [0.2.13](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.12...@slickgrid-universal/excel-export@0.2.13) (2020-11-26)
410
-
411
- **Note:** Version bump only for package @slickgrid-universal/excel-export
412
-
413
-
414
-
415
-
416
-
417
- ## [0.2.12](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.11...@slickgrid-universal/excel-export@0.2.12) (2020-11-26)
418
-
419
- **Note:** Version bump only for package @slickgrid-universal/excel-export
420
-
421
-
422
-
423
-
424
-
425
- ## [0.2.11](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.10...@slickgrid-universal/excel-export@0.2.11) (2020-11-25)
426
-
427
- **Note:** Version bump only for package @slickgrid-universal/excel-export
428
-
429
-
430
-
431
-
432
-
433
- ## [0.2.10](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.9...@slickgrid-universal/excel-export@0.2.10) (2020-11-25)
434
-
435
- **Note:** Version bump only for package @slickgrid-universal/excel-export
436
-
437
-
438
-
439
-
440
-
441
- ## [0.2.9](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.8...@slickgrid-universal/excel-export@0.2.9) (2020-11-25)
442
-
443
- **Note:** Version bump only for package @slickgrid-universal/excel-export
444
-
445
-
446
-
447
-
448
-
449
- ## [0.2.8](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.7...@slickgrid-universal/excel-export@0.2.8) (2020-11-25)
450
-
451
- **Note:** Version bump only for package @slickgrid-universal/excel-export
452
-
453
-
454
-
455
-
456
-
457
- ## [0.2.7](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.6...@slickgrid-universal/excel-export@0.2.7) (2020-11-25)
458
-
459
- **Note:** Version bump only for package @slickgrid-universal/excel-export
460
-
461
-
462
-
463
-
464
-
465
- ## [0.2.6](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.5...@slickgrid-universal/excel-export@0.2.6) (2020-11-25)
466
-
467
- **Note:** Version bump only for package @slickgrid-universal/excel-export
468
-
469
-
470
-
471
-
472
-
473
- ## [0.2.5](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.4...@slickgrid-universal/excel-export@0.2.5) (2020-11-25)
474
-
475
- **Note:** Version bump only for package @slickgrid-universal/excel-export
476
-
477
-
478
-
479
-
480
-
481
- ## [0.2.4](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.3...@slickgrid-universal/excel-export@0.2.4) (2020-11-25)
482
-
483
- **Note:** Version bump only for package @slickgrid-universal/excel-export
484
-
485
-
486
-
487
-
488
-
489
- ## [0.2.3](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.3...@slickgrid-universal/excel-export@0.2.3) (2020-11-25)
490
-
491
- **Note:** Version bump only for package @slickgrid-universal/excel-export
492
-
493
-
494
-
495
-
496
-
497
- ## [0.2.3](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.2...@slickgrid-universal/excel-export@0.2.3) (2020-11-25)
498
-
499
- **Note:** Version bump only for package @slickgrid-universal/excel-export
500
-
501
-
502
-
503
-
504
-
505
- ## [0.2.2](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.1...@slickgrid-universal/excel-export@0.2.2) (2020-11-25)
506
-
507
- **Note:** Version bump only for package @slickgrid-universal/excel-export
508
-
509
-
510
-
511
-
512
-
513
- ## [0.2.1](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.2.0...@slickgrid-universal/excel-export@0.2.1) (2020-11-25)
514
-
515
-
516
- ### Bug Fixes
517
-
518
- * **core:** don't expose src folder on npm & update few npm package ([#168](https://github.com/ghiscoding/slickgrid-universal/issues/168)) ([3c05938](https://github.com/ghiscoding/slickgrid-universal/commit/3c059381b35bba88ea98d0206692c912c625f227))
519
-
520
-
521
-
522
-
523
-
524
- # [0.2.0](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/excel-export@0.1.0...@slickgrid-universal/excel-export@0.2.0) (2020-11-20)
525
-
526
-
527
- ### Features
528
-
529
- * **autocomplete:** add much more functionalities to the AutoComplete ([#69](https://github.com/ghiscoding/slickgrid-universal/issues/69)) ([93c3d0a](https://github.com/ghiscoding/slickgrid-universal/commit/93c3d0a9b8d5a30c7a933f95a4333937c95305a3))
530
- * **core:** add ESLint npm script and add to prebuild script ([#151](https://github.com/ghiscoding/slickgrid-universal/issues/151)) ([4064876](https://github.com/ghiscoding/slickgrid-universal/commit/40648760a33628f0ba85653f5fc99d8250b9a7a2))
531
- * **core:** update few npm packages ([#123](https://github.com/ghiscoding/slickgrid-universal/issues/123)) ([1c25b87](https://github.com/ghiscoding/slickgrid-universal/commit/1c25b87fdd738616879298baeb52074e30e9bf14))
532
- * **editor:** add Composite Editor modal dialog ([#76](https://github.com/ghiscoding/slickgrid-universal/issues/76)) ([bba0b80](https://github.com/ghiscoding/slickgrid-universal/commit/bba0b804301195a166f87be610ee85fe77d4a134))
533
-
534
-
535
-
536
-
537
-
538
-
539
- # 0.1.0 (2020-07-28)
540
-
541
-
542
- ### Bug Fixes
543
-
544
- * **editors:** add saveOutputType to finally have proper save format ([#17](https://github.com/ghiscoding/slickgrid-universal/issues/17)) ([ebfd715](https://github.com/ghiscoding/slickgrid-universal/commit/ebfd71582642abe136317dbef8cedee68d472aa7))
545
- * **excel:** Excel Export add mime type to work in Firefox ([bc07790](https://github.com/ghiscoding/slickgrid-universal/commit/bc07790b78c8913251f55fffb537af56ed26cba7))
546
-
547
-
548
- ### Features
549
-
550
- * **backend:** add OData & GraphQL packages ([#2](https://github.com/ghiscoding/slickgrid-universal/issues/2)) ([53cf08b](https://github.com/ghiscoding/slickgrid-universal/commit/53cf08bff2eea18e677770f70eedef1bda9aefcc))
551
- * **core:** expose all Extensions in new getter prop & fix draggable ([#29](https://github.com/ghiscoding/slickgrid-universal/issues/29)) ([07257b2](https://github.com/ghiscoding/slickgrid-universal/commit/07257b2564d86cbfad4f69bb4e910e04d7df5688))
552
- * **export:** add grouped header title (from pre-header) into exports ([465becb](https://github.com/ghiscoding/slickgrid-universal/commit/465becbe5db4fc1920be676b1439c14bcc814606))
553
- * **footer:** add Custom Footer component ([#5](https://github.com/ghiscoding/slickgrid-universal/issues/5)) ([59d0ba8](https://github.com/ghiscoding/slickgrid-universal/commit/59d0ba8921c2e0886b0c34705ac5a74f35ab4e43))
554
- * **package:** add new Excel Export package ([808785e](https://github.com/ghiscoding/slickgrid-universal/commit/808785e0ea9508f817453211d8ed808398aa9c01))
555
- * **services:** add registerServices in Grid Options ([#1](https://github.com/ghiscoding/slickgrid-universal/issues/1)) ([e7c2e91](https://github.com/ghiscoding/slickgrid-universal/commit/e7c2e91842eac2044ccdd82673bfade20b24ab4f))
556
- * **tests:** add Jest to lib root and add few more unit tests ([5811c96](https://github.com/ghiscoding/slickgrid-universal/commit/5811c96568c5255376ea6b97b132f4f0fded0647))
557
- * **translate:** add namespace prefix + separator grid option ([1746e1d](https://github.com/ghiscoding/slickgrid-universal/commit/1746e1d4726a2fcba64871fac175b09b2f177f65))