@elliemae/ds-codemods 2.3.0-alpha.8 → 2.3.0-next.2

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 (31) hide show
  1. package/.eslintrc-backup.js +70 -0
  2. package/CHANGELOG.md +1273 -0
  3. package/package.json +14 -17
  4. package/src/cli/code-mods/cli.js +32 -0
  5. package/src/cli/code-mods/command-arguments/promptCheckEmPackagesInconsistencies.js +22 -0
  6. package/src/cli/code-mods/command-arguments/promptFixLegacyImports.js +21 -0
  7. package/src/cli/code-mods/command-arguments/promptMissingPackages.js +29 -0
  8. package/src/cli/code-mods/command-logics/check-missing-packages/index.js +82 -0
  9. package/src/cli/code-mods/command-logics/check-packages-inconsistencies/getPackageJsonEmDsVersions.js +43 -0
  10. package/src/cli/code-mods/command-logics/check-packages-inconsistencies/index.js +59 -0
  11. package/src/cli/code-mods/command-logics/execute-commands-map.js +23 -0
  12. package/src/cli/code-mods/command-logics/fix-legacy-imports/index.js +29 -0
  13. package/src/cli/code-mods/command-logics/fix-legacy-imports/legacyImportMap.js +109 -0
  14. package/src/cli/code-mods/commands.js +9 -0
  15. package/src/cli/code-mods/inquirer-questions-prompter.js +52 -0
  16. package/src/cli/utils/generatePathFromCurrentFolder.js +5 -0
  17. package/src/cli/utils/getLatestDimsumVersion.js +15 -0
  18. package/src/cli/utils/globArray.js +11 -0
  19. package/src/cli/utils/index.js +5 -0
  20. package/src/cli/utils/matchHelpers.js +38 -0
  21. package/src/cli/utils/replaceFromMap.js +15 -0
  22. package/test-ables/check-packages-inconsistencies/package.json.test +54 -0
  23. package/test-ables/fix-legacy-imports/legacy-react-ts.tsx.mock +62 -0
  24. package/test-ables/fix-legacy-imports/legacy-react-ts2.tsx.mock +62 -0
  25. package/test-ables/fix-legacy-imports/legacy-react.jsx.mock +62 -0
  26. package/test-ables/fix-legacy-imports/legacy-react2.jsx.mock +62 -0
  27. package/test-ables/fix-legacy-imports/legacy-ts.ts.mock +62 -0
  28. package/test-ables/fix-legacy-imports/legacy-ts2.ts.mock +62 -0
  29. package/test-ables/fix-legacy-imports/legacy1.js.mock +61 -0
  30. package/test-ables/fix-legacy-imports/legacy2.js.mock +61 -0
  31. package/tsconfig.json +10 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1273 @@
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
+ ## [2.3.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v2.3.0-next.1...v2.3.0-next.2) (2022-01-10)
7
+
8
+ **Note:** Version bump only for package @elliemae/ds-codemods
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.3.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v2.3.0-next.0...v2.3.0-next.1) (2022-01-10)
15
+
16
+ **Note:** Version bump only for package @elliemae/ds-codemods
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.3.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.3-next.0...v2.3.0-next.0) (2022-01-07)
23
+
24
+ **Note:** Version bump only for package @elliemae/ds-codemods
25
+
26
+
27
+
28
+
29
+
30
+ ### [2.2.3-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.8...v2.2.3-next.0) (2022-01-06)
31
+
32
+ **Note:** Version bump only for package @elliemae/ds-codemods
33
+
34
+
35
+
36
+
37
+
38
+ ## [2.2.0-next.8](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.7...v2.2.0-next.8) (2022-01-04)
39
+
40
+ **Note:** Version bump only for package @elliemae/ds-codemods
41
+
42
+
43
+
44
+
45
+
46
+ ## [2.2.0-rc.0](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.7...v2.2.0-rc.0) (2022-01-04)
47
+
48
+ **Note:** Version bump only for package @elliemae/ds-codemods
49
+
50
+
51
+
52
+
53
+
54
+ ## [2.2.0-next.7](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.6...v2.2.0-next.7) (2022-01-03)
55
+
56
+ **Note:** Version bump only for package @elliemae/ds-codemods
57
+
58
+
59
+
60
+
61
+
62
+ ## [2.2.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.5...v2.2.0-next.6) (2021-12-29)
63
+
64
+ **Note:** Version bump only for package @elliemae/ds-codemods
65
+
66
+
67
+
68
+
69
+
70
+ ## [2.2.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.4...v2.2.0-next.5) (2021-12-29)
71
+
72
+ **Note:** Version bump only for package @elliemae/ds-codemods
73
+
74
+
75
+
76
+
77
+
78
+ ## [2.2.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.3...v2.2.0-next.4) (2021-12-28)
79
+
80
+ **Note:** Version bump only for package @elliemae/ds-codemods
81
+
82
+
83
+
84
+
85
+
86
+ ## [2.2.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.2...v2.2.0-next.3) (2021-12-28)
87
+
88
+ **Note:** Version bump only for package @elliemae/ds-codemods
89
+
90
+
91
+
92
+
93
+
94
+ ## [2.2.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v2.2.0-next.1...v2.2.0-next.2) (2021-12-27)
95
+
96
+ **Note:** Version bump only for package @elliemae/ds-codemods
97
+
98
+
99
+
100
+
101
+
102
+ ## [2.2.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.13...v2.2.0-next.1) (2021-12-27)
103
+
104
+
105
+ ### Bug Fixes
106
+
107
+ * dimsum:: fixed all the package.json missing/unused dependencies up to now ([#3758](https://git.elliemae.io/platform-ui/dimsum/issues/3758)) ([c5bd0d5](https://git.elliemae.io/platform-ui/dimsum/commit/c5bd0d5675be1680af6f12678b50421bac85cb1b))
108
+ * eslint and tsc commit issues ([#3781](https://git.elliemae.io/platform-ui/dimsum/issues/3781)) ([abb0f09](https://git.elliemae.io/platform-ui/dimsum/commit/abb0f0973e57a406ce444497d11a41933623fa51))
109
+
110
+
111
+
112
+ ## [2.1.0-rc.7](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.13...v2.1.0-rc.7) (2021-12-27)
113
+
114
+
115
+ ### Bug Fixes
116
+
117
+ * dimsum:: fixed all the package.json missing/unused dependencies up to now ([#3758](https://git.elliemae.io/platform-ui/dimsum/issues/3758)) ([c5bd0d5](https://git.elliemae.io/platform-ui/dimsum/commit/c5bd0d5675be1680af6f12678b50421bac85cb1b))
118
+ * eslint and tsc commit issues ([#3781](https://git.elliemae.io/platform-ui/dimsum/issues/3781)) ([abb0f09](https://git.elliemae.io/platform-ui/dimsum/commit/abb0f0973e57a406ce444497d11a41933623fa51))
119
+
120
+
121
+
122
+ ## [2.1.0-rc.7](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.13...v2.1.0-rc.7) (2021-12-21)
123
+
124
+
125
+ ### Bug Fixes
126
+
127
+ * dimsum:: fixed all the package.json missing/unused dependencies up to now ([#3758](https://git.elliemae.io/platform-ui/dimsum/issues/3758)) ([c5bd0d5](https://git.elliemae.io/platform-ui/dimsum/commit/c5bd0d5675be1680af6f12678b50421bac85cb1b))
128
+ * eslint and tsc commit issues ([#3781](https://git.elliemae.io/platform-ui/dimsum/issues/3781)) ([abb0f09](https://git.elliemae.io/platform-ui/dimsum/commit/abb0f0973e57a406ce444497d11a41933623fa51))
129
+
130
+
131
+
132
+ ## [2.0.0-next.13](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.12...v2.0.0-next.13) (2021-11-15)
133
+
134
+ **Note:** Version bump only for package @elliemae/ds-codemods
135
+
136
+
137
+
138
+
139
+
140
+ ## [2.0.0-next.12](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.11...v2.0.0-next.12) (2021-11-14)
141
+
142
+ **Note:** Version bump only for package @elliemae/ds-codemods
143
+
144
+
145
+
146
+
147
+
148
+ ## [2.0.0-next.11](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.10...v2.0.0-next.11) (2021-11-08)
149
+
150
+ **Note:** Version bump only for package @elliemae/ds-codemods
151
+
152
+
153
+
154
+
155
+
156
+ ## [2.0.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.4...v2.0.0-next.5) (2021-10-06)
157
+
158
+ **Note:** Version bump only for package @elliemae/ds-codemods
159
+
160
+
161
+
162
+
163
+
164
+ ## [2.0.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.3...v2.0.0-next.4) (2021-10-05)
165
+
166
+ **Note:** Version bump only for package @elliemae/ds-codemods
167
+
168
+
169
+
170
+
171
+
172
+ ## [2.0.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.2...v2.0.0-next.3) (2021-09-30)
173
+
174
+ **Note:** Version bump only for package @elliemae/ds-codemods
175
+
176
+
177
+
178
+
179
+
180
+ ## [2.0.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.1...v2.0.0-next.2) (2021-09-30)
181
+
182
+ **Note:** Version bump only for package @elliemae/ds-codemods
183
+
184
+
185
+
186
+
187
+
188
+ ## [2.0.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v2.0.0-next.0...v2.0.0-next.1) (2021-09-30)
189
+
190
+ **Note:** Version bump only for package @elliemae/ds-codemods
191
+
192
+
193
+
194
+
195
+
196
+ ## [2.0.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.15...v2.0.0-next.0) (2021-09-30)
197
+
198
+
199
+ ### ⚠ BREAKING CHANGES
200
+
201
+ * - discontinue IE11 support
202
+ - minimum supported NodeJS version is 14.x and higher
203
+
204
+ * fix: tsconfig correction
205
+
206
+ * fix: build error
207
+
208
+ * fix: upgrade open source libraries to their latest patch
209
+
210
+ * fix: dev dependencies
211
+
212
+ * fix: asynchornous execution of rollup and tsc
213
+
214
+ * chore: test
215
+
216
+ * chore: test
217
+
218
+ * chore: test
219
+
220
+ ### Features
221
+
222
+ * dependencies upgrade ([#3418](https://git.elliemae.io/platform-ui/dimsum/issues/3418)) ([88ff69d](https://git.elliemae.io/platform-ui/dimsum/commit/88ff69d7d9413ece6b202b2d6d489565ed566fc2))
223
+ * typescript integration ([#3398](https://git.elliemae.io/platform-ui/dimsum/issues/3398)) ([dc3a870](https://git.elliemae.io/platform-ui/dimsum/commit/dc3a87046af29e91162fb64207ce340ff28386c6))
224
+
225
+
226
+ ### Bug Fixes
227
+
228
+ * beyond trust issue ([06bbdac](https://git.elliemae.io/platform-ui/dimsum/commit/06bbdac70b1218268d09a84246c8de03dfefd71b))
229
+ * codemode fails to publish ([#3414](https://git.elliemae.io/platform-ui/dimsum/issues/3414)) ([12b833e](https://git.elliemae.io/platform-ui/dimsum/commit/12b833e7267ae72e3c559d8a8abff1f8019ba973))
230
+ * e2e tests failing with timeout ([#3438](https://git.elliemae.io/platform-ui/dimsum/issues/3438)) ([bbd9d62](https://git.elliemae.io/platform-ui/dimsum/commit/bbd9d6254838782da013a98ca14ca3d947b64653)), closes [#3413](https://git.elliemae.io/platform-ui/dimsum/issues/3413) [#3417](https://git.elliemae.io/platform-ui/dimsum/issues/3417) [#3408](https://git.elliemae.io/platform-ui/dimsum/issues/3408) [#3379](https://git.elliemae.io/platform-ui/dimsum/issues/3379) [#3412](https://git.elliemae.io/platform-ui/dimsum/issues/3412) [#3427](https://git.elliemae.io/platform-ui/dimsum/issues/3427) [#3425](https://git.elliemae.io/platform-ui/dimsum/issues/3425) [#3424](https://git.elliemae.io/platform-ui/dimsum/issues/3424) [#3422](https://git.elliemae.io/platform-ui/dimsum/issues/3422) [#3393](https://git.elliemae.io/platform-ui/dimsum/issues/3393) [#3397](https://git.elliemae.io/platform-ui/dimsum/issues/3397) [#3431](https://git.elliemae.io/platform-ui/dimsum/issues/3431) [#3430](https://git.elliemae.io/platform-ui/dimsum/issues/3430) [#3432](https://git.elliemae.io/platform-ui/dimsum/issues/3432)
231
+
232
+
233
+
234
+ ## [1.55.0-next.12](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.11...v1.55.0-next.12) (2021-09-27)
235
+
236
+ **Note:** Version bump only for package @elliemae/ds-codemods
237
+
238
+
239
+
240
+
241
+
242
+ ## [1.55.0-next.11](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.10...v1.55.0-next.11) (2021-09-27)
243
+
244
+ **Note:** Version bump only for package @elliemae/ds-codemods
245
+
246
+
247
+
248
+
249
+
250
+ ## [1.55.0-next.10](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.9...v1.55.0-next.10) (2021-09-27)
251
+
252
+ **Note:** Version bump only for package @elliemae/ds-codemods
253
+
254
+
255
+
256
+
257
+
258
+ ## [1.55.0-next.9](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.8...v1.55.0-next.9) (2021-09-23)
259
+
260
+ **Note:** Version bump only for package @elliemae/ds-codemods
261
+
262
+
263
+
264
+
265
+
266
+ ## [1.55.0-next.8](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.7...v1.55.0-next.8) (2021-09-23)
267
+
268
+ **Note:** Version bump only for package @elliemae/ds-codemods
269
+
270
+
271
+
272
+
273
+
274
+ ## [1.55.0-next.7](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.6...v1.55.0-next.7) (2021-09-23)
275
+
276
+ **Note:** Version bump only for package @elliemae/ds-codemods
277
+
278
+
279
+
280
+
281
+
282
+ ## [1.55.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.5...v1.55.0-next.6) (2021-09-22)
283
+
284
+ **Note:** Version bump only for package @elliemae/ds-codemods
285
+
286
+
287
+
288
+
289
+
290
+ ## [1.55.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.4...v1.55.0-next.5) (2021-09-22)
291
+
292
+ **Note:** Version bump only for package @elliemae/ds-codemods
293
+
294
+
295
+
296
+
297
+
298
+ ## [1.55.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.3...v1.55.0-next.4) (2021-09-21)
299
+
300
+ **Note:** Version bump only for package @elliemae/ds-codemods
301
+
302
+
303
+
304
+
305
+
306
+ ## [1.55.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.2...v1.55.0-next.3) (2021-09-21)
307
+
308
+ **Note:** Version bump only for package @elliemae/ds-codemods
309
+
310
+
311
+
312
+
313
+
314
+ ## [1.55.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.55.0-next.1...v1.55.0-next.2) (2021-09-21)
315
+
316
+ **Note:** Version bump only for package @elliemae/ds-codemods
317
+
318
+
319
+
320
+
321
+
322
+ ## [1.55.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.53.4-next.0...v1.55.0-next.1) (2021-09-19)
323
+
324
+ **Note:** Version bump only for package @elliemae/ds-codemods
325
+
326
+
327
+
328
+
329
+
330
+ ## [1.54.0-rc.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.53.4-next.0...v1.54.0-rc.1) (2021-09-17)
331
+
332
+ **Note:** Version bump only for package @elliemae/ds-codemods
333
+
334
+
335
+
336
+
337
+
338
+ ## [1.54.0-rc.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.53.4-next.0...v1.54.0-rc.1) (2021-09-17)
339
+
340
+ **Note:** Version bump only for package @elliemae/ds-codemods
341
+
342
+
343
+
344
+
345
+
346
+ ## [1.54.0-rc.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.53.4-next.0...v1.54.0-rc.1) (2021-09-17)
347
+
348
+ **Note:** Version bump only for package @elliemae/ds-codemods
349
+
350
+
351
+
352
+
353
+
354
+ ### [1.53.4-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.10...v1.53.4-next.0) (2021-09-14)
355
+
356
+
357
+ ### Bug Fixes
358
+
359
+ * package codemods ([3e5a5d0](https://git.elliemae.io/platform-ui/dimsum/commit/3e5a5d03ff5f852bb2454333b535894e41d43009))
360
+
361
+
362
+
363
+ ### [1.53.4-rc.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.10...v1.53.4-rc.3) (2021-09-14)
364
+
365
+
366
+ ### Bug Fixes
367
+
368
+ * package codemods ([3e5a5d0](https://git.elliemae.io/platform-ui/dimsum/commit/3e5a5d03ff5f852bb2454333b535894e41d43009))
369
+
370
+
371
+
372
+ ## [1.54.0-next.10](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.9...v1.54.0-next.10) (2021-09-13)
373
+
374
+ **Note:** Version bump only for package @elliemae/ds-codemods
375
+
376
+
377
+
378
+
379
+
380
+ ## [1.54.0-next.9](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.8...v1.54.0-next.9) (2021-09-13)
381
+
382
+ **Note:** Version bump only for package @elliemae/ds-codemods
383
+
384
+
385
+
386
+
387
+
388
+ ## [1.54.0-next.8](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.7...v1.54.0-next.8) (2021-09-13)
389
+
390
+ **Note:** Version bump only for package @elliemae/ds-codemods
391
+
392
+
393
+
394
+
395
+
396
+ ## [1.54.0-next.7](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.5...v1.54.0-next.7) (2021-09-13)
397
+
398
+ **Note:** Version bump only for package @elliemae/ds-codemods
399
+
400
+
401
+
402
+
403
+
404
+ ## [1.54.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.4...v1.54.0-next.5) (2021-09-13)
405
+
406
+ **Note:** Version bump only for package @elliemae/ds-codemods
407
+
408
+
409
+
410
+
411
+
412
+ ## [1.54.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.3...v1.54.0-next.4) (2021-09-10)
413
+
414
+ **Note:** Version bump only for package @elliemae/ds-codemods
415
+
416
+
417
+
418
+
419
+
420
+ ## [1.54.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.2...v1.54.0-next.3) (2021-09-10)
421
+
422
+ **Note:** Version bump only for package @elliemae/ds-codemods
423
+
424
+
425
+
426
+
427
+
428
+ ## [1.54.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.1...v1.54.0-next.2) (2021-09-08)
429
+
430
+
431
+ ### Features
432
+
433
+ * dimsum:: added script to validate unused or missing dependencies [PUI-6946](https://jira.elliemae.io/browse/PUI-6946) ([#3379](https://git.elliemae.io/platform-ui/dimsum/issues/3379)) ([395b328](https://git.elliemae.io/platform-ui/dimsum/commit/395b328dfd0b8b75c02bd46e578af3ec990a64da))
434
+
435
+
436
+
437
+ ## [1.54.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.54.0-next.0...v1.54.0-next.1) (2021-09-06)
438
+
439
+ **Note:** Version bump only for package @elliemae/ds-codemods
440
+
441
+
442
+
443
+
444
+
445
+ ## [1.54.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.53.0-next.2...v1.54.0-next.0) (2021-09-05)
446
+
447
+ **Note:** Version bump only for package @elliemae/ds-codemods
448
+
449
+
450
+
451
+
452
+
453
+ ## [1.53.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.53.0-next.1...v1.53.0-next.2) (2021-08-31)
454
+
455
+ **Note:** Version bump only for package @elliemae/ds-codemods
456
+
457
+
458
+
459
+
460
+
461
+ ## [1.53.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.52.0-next.6...v1.53.0-next.1) (2021-08-31)
462
+
463
+ **Note:** Version bump only for package @elliemae/ds-codemods
464
+
465
+
466
+
467
+
468
+
469
+ ## [1.52.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v1.52.0-next.4...v1.52.0-next.6) (2021-08-27)
470
+
471
+ **Note:** Version bump only for package @elliemae/ds-codemods
472
+
473
+
474
+
475
+
476
+
477
+ ## [1.52.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.52.0-next.4...v1.52.0-next.5) (2021-08-27)
478
+
479
+ **Note:** Version bump only for package @elliemae/ds-codemods
480
+
481
+
482
+
483
+
484
+
485
+ ## [1.52.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.52.0-next.3...v1.52.0-next.4) (2021-08-26)
486
+
487
+ **Note:** Version bump only for package @elliemae/ds-codemods
488
+
489
+
490
+
491
+
492
+
493
+ ## [1.52.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.52.0-next.2...v1.52.0-next.3) (2021-08-25)
494
+
495
+ **Note:** Version bump only for package @elliemae/ds-codemods
496
+
497
+
498
+
499
+
500
+
501
+ ## [1.52.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.52.0-next.1...v1.52.0-next.2) (2021-08-25)
502
+
503
+ **Note:** Version bump only for package @elliemae/ds-codemods
504
+
505
+
506
+
507
+
508
+
509
+ ## [1.52.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.52.0-next.0...v1.52.0-next.1) (2021-08-24)
510
+
511
+ **Note:** Version bump only for package @elliemae/ds-codemods
512
+
513
+
514
+
515
+
516
+
517
+ ## [1.52.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.51.0-next.2...v1.52.0-next.0) (2021-08-23)
518
+
519
+ **Note:** Version bump only for package @elliemae/ds-codemods
520
+
521
+
522
+
523
+
524
+
525
+ ## [1.51.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.51.0-next.1...v1.51.0-next.2) (2021-08-20)
526
+
527
+ **Note:** Version bump only for package @elliemae/ds-codemods
528
+
529
+
530
+
531
+
532
+
533
+ ## [1.51.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.51.0-next.0...v1.51.0-next.1) (2021-08-19)
534
+
535
+ **Note:** Version bump only for package @elliemae/ds-codemods
536
+
537
+
538
+
539
+
540
+
541
+ ## [1.51.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.11...v1.51.0-next.0) (2021-08-18)
542
+
543
+ **Note:** Version bump only for package @elliemae/ds-codemods
544
+
545
+
546
+
547
+
548
+
549
+ ## [1.50.0-next.11](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.10...v1.50.0-next.11) (2021-08-16)
550
+
551
+ **Note:** Version bump only for package @elliemae/ds-codemods
552
+
553
+
554
+
555
+
556
+
557
+ ## [1.50.0-next.10](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.9...v1.50.0-next.10) (2021-08-14)
558
+
559
+ **Note:** Version bump only for package @elliemae/ds-codemods
560
+
561
+
562
+
563
+
564
+
565
+ ## [1.50.0-next.9](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.8...v1.50.0-next.9) (2021-08-12)
566
+
567
+ **Note:** Version bump only for package @elliemae/ds-codemods
568
+
569
+
570
+
571
+
572
+
573
+ ## [1.50.0-next.8](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.7...v1.50.0-next.8) (2021-08-12)
574
+
575
+ **Note:** Version bump only for package @elliemae/ds-codemods
576
+
577
+
578
+
579
+
580
+
581
+ ## [1.50.0-next.7](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.6...v1.50.0-next.7) (2021-08-12)
582
+
583
+ **Note:** Version bump only for package @elliemae/ds-codemods
584
+
585
+
586
+
587
+
588
+
589
+ ## [1.50.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.5...v1.50.0-next.6) (2021-08-12)
590
+
591
+ **Note:** Version bump only for package @elliemae/ds-codemods
592
+
593
+
594
+
595
+
596
+
597
+ ## [1.50.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.4...v1.50.0-next.5) (2021-08-11)
598
+
599
+
600
+ ### Features
601
+
602
+ * ds-codemods:: script to ensure correct npm versions [PUI-6808](https://jira.elliemae.io/browse/PUI-6808) ([#3195](https://git.elliemae.io/platform-ui/dimsum/issues/3195)) ([b6459e7](https://git.elliemae.io/platform-ui/dimsum/commit/b6459e757125c02df108b0eaaaa116284e385d51))
603
+
604
+
605
+
606
+ ## [1.50.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.3...v1.50.0-next.4) (2021-08-11)
607
+
608
+ **Note:** Version bump only for package @elliemae/ds-codemods
609
+
610
+
611
+
612
+
613
+
614
+ ## [1.50.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.2...v1.50.0-next.3) (2021-08-11)
615
+
616
+ **Note:** Version bump only for package @elliemae/ds-codemods
617
+
618
+
619
+
620
+
621
+
622
+ ## [1.50.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.50.0-next.1...v1.50.0-next.2) (2021-08-10)
623
+
624
+ **Note:** Version bump only for package @elliemae/ds-codemods
625
+
626
+
627
+
628
+
629
+
630
+ ## [1.50.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.11...v1.50.0-next.1) (2021-08-09)
631
+
632
+ **Note:** Version bump only for package @elliemae/ds-codemods
633
+
634
+
635
+
636
+
637
+
638
+ ## [1.49.0-next.11](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.10...v1.49.0-next.11) (2021-08-09)
639
+
640
+ **Note:** Version bump only for package @elliemae/ds-codemods
641
+
642
+
643
+
644
+
645
+
646
+ ## [1.49.0-next.10](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.9...v1.49.0-next.10) (2021-08-05)
647
+
648
+ **Note:** Version bump only for package @elliemae/ds-codemods
649
+
650
+
651
+
652
+
653
+
654
+ ## [1.49.0-next.9](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.8...v1.49.0-next.9) (2021-08-05)
655
+
656
+ **Note:** Version bump only for package @elliemae/ds-codemods
657
+
658
+
659
+
660
+
661
+
662
+ ## [1.49.0-next.8](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.7...v1.49.0-next.8) (2021-08-03)
663
+
664
+
665
+ ### Features
666
+
667
+ * controlled-date-time-picker:: disabled time prop + unit-test [PUI-6721](https://jira.elliemae.io/browse/PUI-6721) [PUI-6408](https://jira.elliemae.io/browse/PUI-6408) ([#3167](https://git.elliemae.io/platform-ui/dimsum/issues/3167)) ([dcafda9](https://git.elliemae.io/platform-ui/dimsum/commit/dcafda952dae70f4755520dc2e2e18d0480a4377))
668
+
669
+
670
+
671
+ ## [1.49.0-next.7](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.6...v1.49.0-next.7) (2021-07-28)
672
+
673
+ **Note:** Version bump only for package @elliemae/ds-codemods
674
+
675
+
676
+
677
+
678
+
679
+ ## [1.49.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.5...v1.49.0-next.6) (2021-07-28)
680
+
681
+ **Note:** Version bump only for package @elliemae/ds-codemods
682
+
683
+
684
+
685
+
686
+
687
+ ## [1.49.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.4...v1.49.0-next.5) (2021-07-28)
688
+
689
+ **Note:** Version bump only for package @elliemae/ds-codemods
690
+
691
+
692
+
693
+
694
+
695
+ ## [1.49.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.3...v1.49.0-next.4) (2021-07-26)
696
+
697
+ **Note:** Version bump only for package @elliemae/ds-codemods
698
+
699
+
700
+
701
+
702
+
703
+ ## [1.49.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.2...v1.49.0-next.3) (2021-07-26)
704
+
705
+ **Note:** Version bump only for package @elliemae/ds-codemods
706
+
707
+
708
+
709
+
710
+
711
+ ## [1.49.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.49.0-next.1...v1.49.0-next.2) (2021-07-23)
712
+
713
+ **Note:** Version bump only for package @elliemae/ds-codemods
714
+
715
+
716
+
717
+
718
+
719
+ ## [1.49.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.48.0-next.5...v1.49.0-next.1) (2021-07-23)
720
+
721
+ **Note:** Version bump only for package @elliemae/ds-codemods
722
+
723
+
724
+
725
+
726
+
727
+ ## [1.48.0-rc.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.48.0-next.5...v1.48.0-rc.1) (2021-07-22)
728
+
729
+ **Note:** Version bump only for package @elliemae/ds-codemods
730
+
731
+
732
+
733
+
734
+
735
+ ## [1.48.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.48.0-next.4...v1.48.0-next.5) (2021-07-21)
736
+
737
+ **Note:** Version bump only for package @elliemae/ds-codemods
738
+
739
+
740
+
741
+
742
+
743
+ ## [1.48.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.48.0-next.3...v1.48.0-next.4) (2021-07-21)
744
+
745
+ **Note:** Version bump only for package @elliemae/ds-codemods
746
+
747
+
748
+
749
+
750
+
751
+ ## [1.48.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.48.0-next.2...v1.48.0-next.3) (2021-07-20)
752
+
753
+ **Note:** Version bump only for package @elliemae/ds-codemods
754
+
755
+
756
+
757
+
758
+
759
+ ## [1.48.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.48.0-next.1...v1.48.0-next.2) (2021-07-20)
760
+
761
+ **Note:** Version bump only for package @elliemae/ds-codemods
762
+
763
+
764
+
765
+
766
+
767
+ ## [1.48.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.47.0-next.0...v1.48.0-next.1) (2021-07-19)
768
+
769
+ **Note:** Version bump only for package @elliemae/ds-codemods
770
+
771
+
772
+
773
+
774
+
775
+ ## [1.47.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.47.0-next.4...v1.47.0-next.0) (2021-07-14)
776
+
777
+ **Note:** Version bump only for package @elliemae/ds-codemods
778
+
779
+
780
+
781
+
782
+
783
+ ## [1.47.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.47.0-next.3...v1.47.0-next.4) (2021-07-13)
784
+
785
+ **Note:** Version bump only for package @elliemae/ds-codemods
786
+
787
+
788
+
789
+
790
+
791
+ ## [1.47.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.47.0-next.2...v1.47.0-next.3) (2021-07-12)
792
+
793
+ **Note:** Version bump only for package @elliemae/ds-codemods
794
+
795
+
796
+
797
+
798
+
799
+ ## [1.47.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.4...v1.47.0-next.2) (2021-07-12)
800
+
801
+ **Note:** Version bump only for package @elliemae/ds-codemods
802
+
803
+
804
+
805
+
806
+
807
+ ## [1.47.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.4...v1.47.0-next.1) (2021-07-11)
808
+
809
+ **Note:** Version bump only for package @elliemae/ds-codemods
810
+
811
+
812
+
813
+
814
+
815
+ ### [1.46.1-rc.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.4...v1.46.1-rc.0) (2021-07-11)
816
+
817
+ **Note:** Version bump only for package @elliemae/ds-codemods
818
+
819
+
820
+
821
+
822
+
823
+ ### [1.46.1-rc.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.4...v1.46.1-rc.0) (2021-07-11)
824
+
825
+ **Note:** Version bump only for package @elliemae/ds-codemods
826
+
827
+
828
+
829
+
830
+
831
+ ### [1.46.1-rc.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.4...v1.46.1-rc.0) (2021-07-10)
832
+
833
+ **Note:** Version bump only for package @elliemae/ds-codemods
834
+
835
+
836
+
837
+
838
+
839
+ ## [1.46.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.3...v1.46.0-next.4) (2021-07-06)
840
+
841
+ **Note:** Version bump only for package @elliemae/ds-codemods
842
+
843
+
844
+
845
+
846
+
847
+ ## [1.46.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.2...v1.46.0-next.3) (2021-07-05)
848
+
849
+ **Note:** Version bump only for package @elliemae/ds-codemods
850
+
851
+
852
+
853
+
854
+
855
+ ## [1.46.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.1...v1.46.0-next.2) (2021-07-05)
856
+
857
+ **Note:** Version bump only for package @elliemae/ds-codemods
858
+
859
+
860
+
861
+
862
+
863
+ ## [1.46.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.46.0-next.0...v1.46.0-next.1) (2021-07-01)
864
+
865
+ **Note:** Version bump only for package @elliemae/ds-codemods
866
+
867
+
868
+
869
+
870
+
871
+ ## [1.46.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.9...v1.46.0-next.0) (2021-07-01)
872
+
873
+ **Note:** Version bump only for package @elliemae/ds-codemods
874
+
875
+
876
+
877
+
878
+
879
+ ## [1.45.0-next.9](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.8...v1.45.0-next.9) (2021-06-25)
880
+
881
+ **Note:** Version bump only for package @elliemae/ds-codemods
882
+
883
+
884
+
885
+
886
+
887
+ ## [1.45.0-next.8](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.7...v1.45.0-next.8) (2021-06-24)
888
+
889
+ **Note:** Version bump only for package @elliemae/ds-codemods
890
+
891
+
892
+
893
+
894
+
895
+ ## [1.45.0-next.7](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.6...v1.45.0-next.7) (2021-06-21)
896
+
897
+ **Note:** Version bump only for package @elliemae/ds-codemods
898
+
899
+
900
+
901
+
902
+
903
+ ## [1.45.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.5...v1.45.0-next.6) (2021-06-21)
904
+
905
+ **Note:** Version bump only for package @elliemae/ds-codemods
906
+
907
+
908
+
909
+
910
+
911
+ ## [1.45.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.4...v1.45.0-next.5) (2021-06-16)
912
+
913
+ **Note:** Version bump only for package @elliemae/ds-codemods
914
+
915
+
916
+
917
+
918
+
919
+ ## [1.45.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.3...v1.45.0-next.4) (2021-06-11)
920
+
921
+ **Note:** Version bump only for package @elliemae/ds-codemods
922
+
923
+
924
+
925
+
926
+
927
+ ## [1.45.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.2...v1.45.0-next.3) (2021-06-11)
928
+
929
+ **Note:** Version bump only for package @elliemae/ds-codemods
930
+
931
+
932
+
933
+
934
+
935
+ ## [1.45.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.45.0-next.1...v1.45.0-next.2) (2021-06-11)
936
+
937
+ **Note:** Version bump only for package @elliemae/ds-codemods
938
+
939
+
940
+
941
+
942
+
943
+ ## [1.45.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.44.0-next.5...v1.45.0-next.1) (2021-06-10)
944
+
945
+ **Note:** Version bump only for package @elliemae/ds-codemods
946
+
947
+
948
+
949
+
950
+
951
+ ### [1.44.1-rc.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.44.0-next.5...v1.44.1-rc.1) (2021-06-10)
952
+
953
+ **Note:** Version bump only for package @elliemae/ds-codemods
954
+
955
+
956
+
957
+
958
+
959
+ ## [1.44.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.44.0-next.4...v1.44.0-next.5) (2021-06-08)
960
+
961
+ **Note:** Version bump only for package @elliemae/ds-codemods
962
+
963
+
964
+
965
+
966
+
967
+ ## [1.44.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.44.0-next.3...v1.44.0-next.4) (2021-06-07)
968
+
969
+ **Note:** Version bump only for package @elliemae/ds-codemods
970
+
971
+
972
+
973
+
974
+
975
+ ## [1.44.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.44.0-next.2...v1.44.0-next.3) (2021-06-01)
976
+
977
+ **Note:** Version bump only for package @elliemae/ds-codemods
978
+
979
+
980
+
981
+
982
+
983
+ ## [1.44.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.44.0-next.1...v1.44.0-next.2) (2021-06-01)
984
+
985
+ **Note:** Version bump only for package @elliemae/ds-codemods
986
+
987
+
988
+
989
+
990
+
991
+ ## [1.44.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.6...v1.44.0-next.1) (2021-06-01)
992
+
993
+ **Note:** Version bump only for package @elliemae/ds-codemods
994
+
995
+
996
+
997
+
998
+
999
+ ### [1.43.1-rc.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.6...v1.43.1-rc.0) (2021-06-01)
1000
+
1001
+ **Note:** Version bump only for package @elliemae/ds-codemods
1002
+
1003
+
1004
+
1005
+
1006
+
1007
+ ### [1.43.1-rc.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.6...v1.43.1-rc.0) (2021-05-31)
1008
+
1009
+ **Note:** Version bump only for package @elliemae/ds-codemods
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+ ### [1.43.1-rc.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.6...v1.43.1-rc.0) (2021-05-30)
1016
+
1017
+ **Note:** Version bump only for package @elliemae/ds-codemods
1018
+
1019
+
1020
+
1021
+
1022
+
1023
+ ## [1.43.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.5...v1.43.0-next.6) (2021-05-27)
1024
+
1025
+ **Note:** Version bump only for package @elliemae/ds-codemods
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+ ## [1.43.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.4...v1.43.0-next.5) (2021-05-26)
1032
+
1033
+ **Note:** Version bump only for package @elliemae/ds-codemods
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+ ## [1.43.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.3...v1.43.0-next.4) (2021-05-25)
1040
+
1041
+ **Note:** Version bump only for package @elliemae/ds-codemods
1042
+
1043
+
1044
+
1045
+
1046
+
1047
+ ## [1.43.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.2...v1.43.0-next.3) (2021-05-24)
1048
+
1049
+ **Note:** Version bump only for package @elliemae/ds-codemods
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+ ## [1.43.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.1...v1.43.0-next.2) (2021-05-20)
1056
+
1057
+ **Note:** Version bump only for package @elliemae/ds-codemods
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+ ## [1.43.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.43.0-next.0...v1.43.0-next.1) (2021-05-17)
1064
+
1065
+ **Note:** Version bump only for package @elliemae/ds-codemods
1066
+
1067
+
1068
+
1069
+
1070
+
1071
+ ## [1.43.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.8...v1.43.0-next.0) (2021-05-17)
1072
+
1073
+ **Note:** Version bump only for package @elliemae/ds-codemods
1074
+
1075
+
1076
+
1077
+
1078
+
1079
+ ### [1.42.1-rc.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.8...v1.42.1-rc.0) (2021-05-14)
1080
+
1081
+ **Note:** Version bump only for package @elliemae/ds-codemods
1082
+
1083
+
1084
+
1085
+
1086
+
1087
+ ## [1.42.0-next.8](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.7...v1.42.0-next.8) (2021-05-14)
1088
+
1089
+ **Note:** Version bump only for package @elliemae/ds-codemods
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+ ## [1.42.0-next.7](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.6...v1.42.0-next.7) (2021-05-13)
1096
+
1097
+ **Note:** Version bump only for package @elliemae/ds-codemods
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+ ## [1.42.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.5...v1.42.0-next.6) (2021-05-12)
1104
+
1105
+ **Note:** Version bump only for package @elliemae/ds-codemods
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+ ## [1.42.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.4...v1.42.0-next.5) (2021-05-12)
1112
+
1113
+ **Note:** Version bump only for package @elliemae/ds-codemods
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+ ## [1.42.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.3...v1.42.0-next.4) (2021-05-12)
1120
+
1121
+ **Note:** Version bump only for package @elliemae/ds-codemods
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+ ## [1.42.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.2...v1.42.0-next.3) (2021-05-12)
1128
+
1129
+ ### [1.40.3-rc.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.1...v1.40.3-rc.2) (2021-05-07)
1130
+
1131
+
1132
+ ### Bug Fixes
1133
+
1134
+ * datetimepicker:: missing onChange cta ([#2794](https://git.elliemae.io/platform-ui/dimsum/issues/2794)) ([1b813af](https://git.elliemae.io/platform-ui/dimsum/commit/1b813af311311877b501ba38be62bcfe16a20adf))
1135
+
1136
+ ### [1.40.3-rc.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.3-rc.0...v1.40.3-rc.1) (2021-05-06)
1137
+
1138
+
1139
+
1140
+ ## [1.42.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.1...v1.42.0-next.2) (2021-05-07)
1141
+
1142
+ **Note:** Version bump only for package @elliemae/ds-codemods
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+ ## [1.42.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.42.0-next.0...v1.42.0-next.1) (2021-05-06)
1149
+
1150
+ **Note:** Version bump only for package @elliemae/ds-codemods
1151
+
1152
+
1153
+
1154
+
1155
+
1156
+ ## [1.42.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.41.1-next.2...v1.42.0-next.0) (2021-05-03)
1157
+
1158
+ **Note:** Version bump only for package @elliemae/ds-codemods
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+ ### [1.41.1-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.41.1-next.1...v1.41.1-next.2) (2021-04-30)
1165
+
1166
+ **Note:** Version bump only for package @elliemae/ds-codemods
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+ ### [1.41.1-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.41.1-next.0...v1.41.1-next.1) (2021-04-29)
1173
+
1174
+ **Note:** Version bump only for package @elliemae/ds-codemods
1175
+
1176
+
1177
+
1178
+
1179
+
1180
+ ### [1.41.1-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.9...v1.41.1-next.0) (2021-04-28)
1181
+
1182
+ **Note:** Version bump only for package @elliemae/ds-codemods
1183
+
1184
+
1185
+
1186
+
1187
+
1188
+ ## [1.40.0-next.9](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.8...v1.40.0-next.9) (2021-04-27)
1189
+
1190
+ **Note:** Version bump only for package @elliemae/ds-codemods
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+ ## [1.40.0-next.8](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.7...v1.40.0-next.8) (2021-04-26)
1197
+
1198
+ **Note:** Version bump only for package @elliemae/ds-codemods
1199
+
1200
+
1201
+
1202
+
1203
+
1204
+ ## [1.40.0-next.7](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.6...v1.40.0-next.7) (2021-04-26)
1205
+
1206
+ **Note:** Version bump only for package @elliemae/ds-codemods
1207
+
1208
+
1209
+
1210
+
1211
+
1212
+ ## [1.40.0-next.6](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.5...v1.40.0-next.6) (2021-04-26)
1213
+
1214
+ **Note:** Version bump only for package @elliemae/ds-codemods
1215
+
1216
+
1217
+
1218
+
1219
+
1220
+ ## [1.40.0-next.5](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.4...v1.40.0-next.5) (2021-04-26)
1221
+
1222
+ **Note:** Version bump only for package @elliemae/ds-codemods
1223
+
1224
+
1225
+
1226
+
1227
+
1228
+ ## [1.40.0-next.4](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.3...v1.40.0-next.4) (2021-04-26)
1229
+
1230
+ **Note:** Version bump only for package @elliemae/ds-codemods
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+ ## [1.40.0-next.3](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.2...v1.40.0-next.3) (2021-04-26)
1237
+
1238
+ **Note:** Version bump only for package @elliemae/ds-codemods
1239
+
1240
+
1241
+
1242
+
1243
+
1244
+ ## [1.40.0-next.2](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.1...v1.40.0-next.2) (2021-04-23)
1245
+
1246
+ **Note:** Version bump only for package @elliemae/ds-codemods
1247
+
1248
+
1249
+
1250
+
1251
+
1252
+ ## [1.40.0-next.1](https://git.elliemae.io/platform-ui/dimsum/compare/v1.40.0-next.0...v1.40.0-next.1) (2021-04-22)
1253
+
1254
+ **Note:** Version bump only for package @elliemae/ds-codemods
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+ ## [1.40.0-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.39.1-next.0...v1.40.0-next.0) (2021-04-21)
1261
+
1262
+ **Note:** Version bump only for package @elliemae/ds-codemods
1263
+
1264
+
1265
+
1266
+
1267
+
1268
+ ### [1.39.1-next.0](https://git.elliemae.io/platform-ui/dimsum/compare/v1.38.0-next.4...v1.39.1-next.0) (2021-04-21)
1269
+
1270
+
1271
+ ### Bug Fixes
1272
+
1273
+ * codemods:: publish config ([#2696](https://git.elliemae.io/platform-ui/dimsum/issues/2696)) ([2dca92a](https://git.elliemae.io/platform-ui/dimsum/commit/2dca92a3467fdcfe8a3a0efd851bbd60eb3205a7))