@elliemae/ds-codemods 3.0.0-next.1 → 3.0.0-next.13

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