@elliemae/ds-codemods 2.3.0-alpha.9 → 2.3.0-next.11

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