@slickgrid-universal/graphql 1.2.1 → 1.2.3

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 (3) hide show
  1. package/README.md +51 -51
  2. package/package.json +14 -10
  3. package/CHANGELOG.md +0 -520
package/README.md CHANGED
@@ -1,51 +1,51 @@
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/graphql.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/graphql)
5
- [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/graphql?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/graphql)
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
- ## GraphQL Service
13
- #### @slickgrid-universal/graphql
14
-
15
- GraphQL Service to sync a grid with an GraphQL backend server, the service will consider any Filter/Sort and automatically build the necessary GraphQL query string that is sent to your GraphQL backend server.
16
-
17
- ### Internal Dependencies
18
- - [@slickgrid-universal/common](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/common)
19
-
20
- ### External Dependencies
21
- No external dependency
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/#/example10) page.
25
-
26
- ### Usage
27
- Simply use pass the Service into the `backendServiceApi` Grid Option.
28
-
29
- ##### ViewModel
30
- ```ts
31
- import { GraphqlService, GraphqlServiceApi } from '@slickgrid-universal/graphql';
32
-
33
- export class MyExample {
34
- initializeGrid {
35
- this.gridOptions = {
36
- backendServiceApi: {
37
- service: new GraphqlService(),
38
- options: {
39
- datasetName: 'users',
40
- },
41
- preProcess: () => this.displaySpinner(true),
42
- process: (query) => this.getCustomerApiCall(query),
43
- postProcess: (response) => {
44
- this.displaySpinner(false);
45
- this.getCustomerCallback(response);
46
- }
47
- } as GraphqlServiceApi
48
- }
49
- }
50
- }
51
- ```
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/graphql.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/graphql)
5
+ [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/graphql?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/graphql)
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
+ ## GraphQL Service
13
+ #### @slickgrid-universal/graphql
14
+
15
+ GraphQL Service to sync a grid with an GraphQL backend server, the service will consider any Filter/Sort and automatically build the necessary GraphQL query string that is sent to your GraphQL backend server.
16
+
17
+ ### Internal Dependencies
18
+ - [@slickgrid-universal/common](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/common)
19
+
20
+ ### External Dependencies
21
+ No external dependency
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/#/example10) page.
25
+
26
+ ### Usage
27
+ Simply use pass the Service into the `backendServiceApi` Grid Option.
28
+
29
+ ##### ViewModel
30
+ ```ts
31
+ import { GraphqlService, GraphqlServiceApi } from '@slickgrid-universal/graphql';
32
+
33
+ export class MyExample {
34
+ initializeGrid {
35
+ this.gridOptions = {
36
+ backendServiceApi: {
37
+ service: new GraphqlService(),
38
+ options: {
39
+ datasetName: 'users',
40
+ },
41
+ preProcess: () => this.displaySpinner(true),
42
+ process: (query) => this.getCustomerApiCall(query),
43
+ postProcess: (response) => {
44
+ this.displaySpinner(false);
45
+ this.getCustomerCallback(response);
46
+ }
47
+ } as GraphqlServiceApi
48
+ }
49
+ }
50
+ }
51
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/graphql",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "GraphQL Service to sync a grid with a GraphQL backend server",
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",
21
- "bundle": "run-p bundle:commonjs bundle:esm",
19
+ "dev": "npm run build",
20
+ "dev:watch": "run-p build:watch --npm-path npm",
21
+ "bundle": "run-p bundle:commonjs bundle:esm --npm-path npm",
22
22
  "bundle:commonjs": "tsc --project tsconfig.bundle.json --outDir dist/commonjs --module commonjs",
23
23
  "bundle:esm": "cross-env tsc --project tsconfig.bundle.json --outDir dist/esm --module esnext --target es2018",
24
- "prebundle": "npm-run-all delete:dist",
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=graphql",
27
27
  "package:remove-browser-prop": "cross-env node ../change-package-browser.js --remove-browser=true --folder-name=graphql"
@@ -38,8 +38,8 @@
38
38
  "url": "https://github.com/ghiscoding/slickgrid-universal/issues"
39
39
  },
40
40
  "engines": {
41
- "node": ">=14.17.0",
42
- "npm": ">=6.14.8"
41
+ "node": ">=16.11.0",
42
+ "npm": ">=8.0.0"
43
43
  },
44
44
  "browserslist": [
45
45
  "last 2 version",
@@ -47,10 +47,14 @@
47
47
  "not dead"
48
48
  ],
49
49
  "dependencies": {
50
- "@slickgrid-universal/common": "^1.2.1"
50
+ "@slickgrid-universal/common": "^1.2.3"
51
51
  },
52
52
  "devDependencies": {
53
53
  "moment-mini": "^2.24.0"
54
54
  },
55
- "gitHead": "11a05e9877ac0a42d53eaefb1edf95586dcd41b3"
55
+ "funding": {
56
+ "type": "ko_fi",
57
+ "url": "https://ko-fi.com/N4N679OT"
58
+ },
59
+ "gitHead": "8f9a87cfe68f6e1d6e196114cdf798065b823d01"
56
60
  }
package/CHANGELOG.md DELETED
@@ -1,520 +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
- * **odata:** fix range filtering with ".." ([b07af88](https://github.com/ghiscoding/slickgrid-universal/commit/b07af88c6d2912f58e976a428927e63c9fdffbad))
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/graphql
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/graphql
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/graphql
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
- **Note:** Version bump only for package @slickgrid-universal/graphql
57
-
58
-
59
-
60
-
61
-
62
-
63
- # [0.19.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.18.0...v0.19.0) (2021-10-28)
64
-
65
- **Note:** Version bump only for package @slickgrid-universal/graphql
66
-
67
-
68
-
69
-
70
-
71
-
72
- # [0.18.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.17.0...v0.18.0) (2021-09-29)
73
-
74
- **Note:** Version bump only for package @slickgrid-universal/graphql
75
-
76
-
77
-
78
-
79
-
80
-
81
- # [0.17.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.16.2...v0.17.0) (2021-09-09)
82
-
83
- **Note:** Version bump only for package @slickgrid-universal/graphql
84
-
85
-
86
-
87
-
88
-
89
- ## [0.16.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.16.1...v0.16.2) (2021-07-23)
90
-
91
- **Note:** Version bump only for package @slickgrid-universal/graphql
92
-
93
-
94
-
95
-
96
-
97
- ## [0.16.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.16.0...v0.16.1) (2021-07-16)
98
-
99
- **Note:** Version bump only for package @slickgrid-universal/graphql
100
-
101
-
102
-
103
-
104
-
105
- # [0.16.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.15.0...v0.16.0) (2021-07-16)
106
-
107
-
108
- ### Features
109
-
110
- * **services:** make everything extendable by using `protected` ([ecbb93a](https://github.com/ghiscoding/slickgrid-universal/commit/ecbb93a56abba39dd050bbd6019b86694495edd1))
111
-
112
-
113
-
114
-
115
-
116
- # [0.15.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.14.1...v0.15.0) (2021-07-06)
117
-
118
- **Note:** Version bump only for package @slickgrid-universal/graphql
119
-
120
-
121
-
122
-
123
-
124
-
125
- ## [0.14.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.14.0...v0.14.1) (2021-05-22)
126
-
127
- **Note:** Version bump only for package @slickgrid-universal/graphql
128
-
129
-
130
-
131
-
132
-
133
- # [0.14.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.13.0...v0.14.0) (2021-05-22)
134
-
135
-
136
- ### Bug Fixes
137
-
138
- * **backend:** able to preset filters on hidden columns & all queried ([c610979](https://github.com/ghiscoding/slickgrid-universal/commit/c610979c54170c069b97a71864d95d0363d75e80))
139
-
140
-
141
- ### Features
142
-
143
- * **editors:** add `compositeEditorFormOrder` option ([03f2d66](https://github.com/ghiscoding/slickgrid-universal/commit/03f2d662a69d71edf4b61cdda862fb4eef0f9b47))
144
-
145
-
146
-
147
-
148
-
149
-
150
- # [0.13.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.12.0...v0.13.0) (2021-04-27)
151
-
152
- **Note:** Version bump only for package @slickgrid-universal/graphql
153
-
154
-
155
-
156
-
157
-
158
-
159
- # [0.12.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.11.2...v0.12.0) (2021-03-24)
160
-
161
-
162
- ### Features
163
-
164
- * **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))
165
-
166
-
167
-
168
-
169
-
170
-
171
- ## [0.11.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.11.1...v0.11.2) (2021-02-27)
172
-
173
- **Note:** Version bump only for package @slickgrid-universal/graphql
174
-
175
-
176
-
177
-
178
-
179
- ## [0.11.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.11.0...v0.11.1) (2021-02-27)
180
-
181
- **Note:** Version bump only for package @slickgrid-universal/graphql
182
-
183
-
184
-
185
-
186
-
187
- # [0.11.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.10.2...v0.11.0) (2021-02-27)
188
-
189
-
190
- ### Bug Fixes
191
-
192
- * **build:** enable tsconfig strict mode tsconfig ([#269](https://github.com/ghiscoding/slickgrid-universal/issues/269)) ([095fc71](https://github.com/ghiscoding/slickgrid-universal/commit/095fc71052c1f4e776544781da5fe762cfa16238))
193
-
194
-
195
-
196
-
197
-
198
-
199
- ## [0.10.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.10.1...v0.10.2) (2021-01-28)
200
-
201
- **Note:** Version bump only for package @slickgrid-universal/graphql
202
-
203
-
204
-
205
-
206
-
207
- ## [0.10.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.10.0...v0.10.1) (2021-01-28)
208
-
209
-
210
- ### Bug Fixes
211
-
212
- * **build:** decrease tsc target to es2017 instead of es2020 ([2f2e5f4](https://github.com/ghiscoding/slickgrid-universal/commit/2f2e5f46a3b25897f1a4a59daa1346b5d577ddb8))
213
-
214
-
215
-
216
-
217
-
218
-
219
- # [0.10.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.9.0...v0.10.0) (2021-01-28)
220
-
221
-
222
- ### Bug Fixes
223
-
224
- * **core:** fix types index.d.ts url ([a76b3a3](https://github.com/ghiscoding/slickgrid-universal/commit/a76b3a3d97a6d211ec2e7e8d9060fd8dd0719f58))
225
- * **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))
226
-
227
-
228
-
229
-
230
-
231
- # [0.9.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.8.0...v0.9.0) (2021-01-06)
232
-
233
-
234
- ### Bug Fixes
235
-
236
- * **backend:** GraphQL queries with input filter ([#217](https://github.com/ghiscoding/slickgrid-universal/issues/217)) ([ff7f1e5](https://github.com/ghiscoding/slickgrid-universal/commit/ff7f1e5e8733d25a1fd7869e4de2b1bc700b8a7b))
237
-
238
-
239
- ### Features
240
-
241
- * **build:** upgrade to WebPack 5 ([#225](https://github.com/ghiscoding/slickgrid-universal/issues/225)) ([c6b3ad3](https://github.com/ghiscoding/slickgrid-universal/commit/c6b3ad3eb6fb64306bfd8bd300fcc1e86b27e5a6))
242
- * **ci:** replace CircleCI with GitHub Actions ([#211](https://github.com/ghiscoding/slickgrid-universal/issues/211)) ([4f91140](https://github.com/ghiscoding/slickgrid-universal/commit/4f9114031ca6236ef45f04b67dcba1a9981035c4))
243
-
244
-
245
-
246
-
247
-
248
-
249
- # [0.8.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.7...v0.8.0) (2020-12-22)
250
-
251
- **Note:** Version bump only for package @slickgrid-universal/graphql
252
-
253
-
254
-
255
-
256
-
257
- ## [0.7.7](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.6...v0.7.7) (2020-12-20)
258
-
259
- **Note:** Version bump only for package @slickgrid-universal/graphql
260
-
261
-
262
-
263
-
264
-
265
- ## [0.7.6](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.5...v0.7.6) (2020-12-20)
266
-
267
- **Note:** Version bump only for package @slickgrid-universal/graphql
268
-
269
-
270
-
271
-
272
-
273
- ## [0.7.5](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.4...v0.7.5) (2020-12-20)
274
-
275
- **Note:** Version bump only for package @slickgrid-universal/graphql
276
-
277
-
278
-
279
-
280
-
281
- ## [0.7.4](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.3...v0.7.4) (2020-12-20)
282
-
283
- **Note:** Version bump only for package @slickgrid-universal/graphql
284
-
285
-
286
-
287
-
288
-
289
-
290
- ## [0.7.3](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.2...v0.7.3) (2020-12-20)
291
-
292
- **Note:** Version bump only for package @slickgrid-universal/graphql
293
-
294
-
295
-
296
-
297
-
298
-
299
- ## [0.7.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.1...v0.7.2) (2020-12-17)
300
-
301
-
302
- ### Bug Fixes
303
-
304
- * **core:** range default should be inclusive instead of exclusive ([#203](https://github.com/ghiscoding/slickgrid-universal/issues/203)) ([b7f74ad](https://github.com/ghiscoding/slickgrid-universal/commit/b7f74ad8a1539aed32ac643b4fe395fbdecf4459))
305
-
306
-
307
-
308
-
309
-
310
-
311
- ## [0.7.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.7.0...v0.7.1) (2020-12-17)
312
-
313
- **Note:** Version bump only for package @slickgrid-universal/graphql
314
-
315
-
316
-
317
-
318
-
319
-
320
- # [0.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.6.0...v0.7.0) (2020-12-16)
321
-
322
- **Note:** Version bump only for package @slickgrid-universal/graphql
323
-
324
-
325
-
326
-
327
-
328
- # [0.6.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.5.1...v0.6.0) (2020-12-14)
329
-
330
- **Note:** Version bump only for package @slickgrid-universal/graphql
331
-
332
-
333
-
334
-
335
-
336
- ## [0.5.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.5.0...v0.5.1) (2020-12-10)
337
-
338
- **Note:** Version bump only for package @slickgrid-universal/graphql
339
-
340
-
341
-
342
-
343
-
344
- # [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10)
345
-
346
-
347
- ### Features
348
-
349
- * **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1))
350
-
351
-
352
-
353
-
354
-
355
- # [0.4.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.3.0...v0.4.0) (2020-12-07)
356
-
357
- **Note:** Version bump only for package @slickgrid-universal/graphql
358
-
359
-
360
-
361
-
362
-
363
- # [0.3.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.2.15...v0.3.0) (2020-12-02)
364
-
365
- **Note:** Version bump only for package @slickgrid-universal/graphql
366
-
367
-
368
-
369
-
370
-
371
- ## [0.2.15](https://github.com/ghiscoding/slickgrid-universal/compare/v0.2.0...v0.2.15) (2020-11-30)
372
-
373
-
374
- ### Bug Fixes
375
-
376
- * **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))
377
- * **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))
378
-
379
-
380
-
381
-
382
-
383
- ## [0.2.13](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.12...@slickgrid-universal/graphql@0.2.13) (2020-11-26)
384
-
385
- **Note:** Version bump only for package @slickgrid-universal/graphql
386
-
387
-
388
-
389
-
390
-
391
- ## [0.2.12](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.11...@slickgrid-universal/graphql@0.2.12) (2020-11-26)
392
-
393
- **Note:** Version bump only for package @slickgrid-universal/graphql
394
-
395
-
396
-
397
-
398
-
399
- ## [0.2.11](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.10...@slickgrid-universal/graphql@0.2.11) (2020-11-25)
400
-
401
- **Note:** Version bump only for package @slickgrid-universal/graphql
402
-
403
-
404
-
405
-
406
-
407
- ## [0.2.10](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.9...@slickgrid-universal/graphql@0.2.10) (2020-11-25)
408
-
409
- **Note:** Version bump only for package @slickgrid-universal/graphql
410
-
411
-
412
-
413
-
414
-
415
- ## [0.2.9](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.8...@slickgrid-universal/graphql@0.2.9) (2020-11-25)
416
-
417
- **Note:** Version bump only for package @slickgrid-universal/graphql
418
-
419
-
420
-
421
-
422
-
423
- ## [0.2.8](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.7...@slickgrid-universal/graphql@0.2.8) (2020-11-25)
424
-
425
- **Note:** Version bump only for package @slickgrid-universal/graphql
426
-
427
-
428
-
429
-
430
-
431
- ## [0.2.7](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.6...@slickgrid-universal/graphql@0.2.7) (2020-11-25)
432
-
433
- **Note:** Version bump only for package @slickgrid-universal/graphql
434
-
435
-
436
-
437
-
438
-
439
- ## [0.2.6](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.5...@slickgrid-universal/graphql@0.2.6) (2020-11-25)
440
-
441
- **Note:** Version bump only for package @slickgrid-universal/graphql
442
-
443
-
444
-
445
-
446
-
447
- ## [0.2.5](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.4...@slickgrid-universal/graphql@0.2.5) (2020-11-25)
448
-
449
- **Note:** Version bump only for package @slickgrid-universal/graphql
450
-
451
-
452
-
453
-
454
-
455
- ## [0.2.4](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.3...@slickgrid-universal/graphql@0.2.4) (2020-11-25)
456
-
457
- **Note:** Version bump only for package @slickgrid-universal/graphql
458
-
459
-
460
-
461
-
462
-
463
- ## [0.2.3](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.3...@slickgrid-universal/graphql@0.2.3) (2020-11-25)
464
-
465
- **Note:** Version bump only for package @slickgrid-universal/graphql
466
-
467
-
468
-
469
-
470
-
471
- ## [0.2.3](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.2...@slickgrid-universal/graphql@0.2.3) (2020-11-25)
472
-
473
- **Note:** Version bump only for package @slickgrid-universal/graphql
474
-
475
-
476
-
477
-
478
-
479
- ## [0.2.2](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.1...@slickgrid-universal/graphql@0.2.2) (2020-11-25)
480
-
481
- **Note:** Version bump only for package @slickgrid-universal/graphql
482
-
483
-
484
-
485
-
486
-
487
- ## [0.2.1](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.2.0...@slickgrid-universal/graphql@0.2.1) (2020-11-25)
488
-
489
-
490
- ### Bug Fixes
491
-
492
- * **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))
493
-
494
-
495
-
496
-
497
-
498
- # [0.2.0](https://github.com/ghiscoding/slickgrid-universal/compare/@slickgrid-universal/graphql@0.1.0...@slickgrid-universal/graphql@0.2.0) (2020-11-20)
499
-
500
-
501
- ### Features
502
-
503
- * **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))
504
- * **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))
505
- * **tests:** add more unit tests to vanilla bundle ([#51](https://github.com/ghiscoding/slickgrid-universal/issues/51)) ([10e5c5a](https://github.com/ghiscoding/slickgrid-universal/commit/10e5c5aa647c0af3e1c5804006acd216ca7d447b))
506
-
507
-
508
-
509
-
510
-
511
-
512
- # 0.1.0 (2020-07-28)
513
-
514
-
515
- ### Features
516
-
517
- * **backend:** add OData & GraphQL packages ([#2](https://github.com/ghiscoding/slickgrid-universal/issues/2)) ([53cf08b](https://github.com/ghiscoding/slickgrid-universal/commit/53cf08bff2eea18e677770f70eedef1bda9aefcc))
518
- * **core:** add Translation into demo with fetch locale from json file ([#23](https://github.com/ghiscoding/slickgrid-universal/issues/23)) ([b5608e9](https://github.com/ghiscoding/slickgrid-universal/commit/b5608e958f659b839a8460ffee4a555c66774893))
519
- * **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))
520
- * **footer:** add Custom Footer component ([#5](https://github.com/ghiscoding/slickgrid-universal/issues/5)) ([59d0ba8](https://github.com/ghiscoding/slickgrid-universal/commit/59d0ba8921c2e0886b0c34705ac5a74f35ab4e43))