@digital-ai/dot-components 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGE_LOG.md +21 -7
- package/index.esm.js +949 -254
- package/index.umd.js +1074 -271
- package/lib/components/app-switcher/AppSwitcher.d.ts +24 -0
- package/lib/components/app-switcher/AppSwitcher.styles.d.ts +2 -0
- package/lib/components/core-api/CancelablePromise.d.ts +7 -0
- package/lib/components/core-api/CoreApiProvider.d.ts +16 -0
- package/lib/components/core-api/mocks.d.ts +23 -0
- package/lib/components/core-api/openapi/core/ApiError.d.ts +8 -0
- package/lib/components/core-api/openapi/core/ApiRequestOptions.d.ts +12 -0
- package/lib/components/core-api/openapi/core/ApiResult.d.ts +7 -0
- package/lib/components/core-api/openapi/core/OpenAPI.d.ts +15 -0
- package/lib/components/core-api/openapi/core/request.d.ts +9 -0
- package/lib/components/core-api/openapi/index.d.ts +12 -0
- package/lib/components/core-api/openapi/models/AccountModel.d.ts +50 -0
- package/lib/components/core-api/openapi/models/AccountModelWrapper.d.ts +4 -0
- package/lib/components/core-api/openapi/models/AccountModelsWrapper.d.ts +6 -0
- package/lib/components/core-api/openapi/models/ApplicationInstanceStates.d.ts +4 -0
- package/lib/components/core-api/openapi/models/ApplicationModel.d.ts +67 -0
- package/lib/components/core-api/openapi/models/ApplicationModelWrapper.d.ts +4 -0
- package/lib/components/core-api/openapi/models/ApplicationModelsWrapper.d.ts +6 -0
- package/lib/components/core-api/openapi/models/PaginationModel.d.ts +22 -0
- package/lib/components/core-api/openapi/services/AccountsService.d.ts +25 -0
- package/lib/components/core-api/openapi/services/ApplicationsService.d.ts +38 -0
- package/lib/components/index.d.ts +2 -0
- package/package.json +2 -1
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.4](https://github.com/digital-ai/dot-components/tree/2.0.4) (12/10/2022)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/2.0.3...2.0.4)
|
|
6
|
+
|
|
7
|
+
## [2.0.3](https://github.com/digital-ai/dot-components/tree/2.0.3) (12/10/2022)
|
|
8
|
+
|
|
9
|
+
[Full Changelog](https://github.com/digital-ai/dot-components/compare/2.0.2...2.0.3)
|
|
10
|
+
|
|
11
|
+
**Features:**
|
|
12
|
+
|
|
13
|
+
- S-88447: App switcher [\#1322](https://github.com/digital-ai/dot-components/pull/1322) ([jmcnally](https://github.com/jmcnally))
|
|
14
|
+
|
|
3
15
|
## [2.0.2](https://github.com/digital-ai/dot-components/tree/2.0.2) (12/06/2022)
|
|
4
16
|
|
|
5
17
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/2.0.1...2.0.2)
|
|
@@ -142,14 +154,18 @@
|
|
|
142
154
|
**Fixed bugs:**
|
|
143
155
|
|
|
144
156
|
- Use of `release-2.0` branch causes `Typography` to use default styling [\#1151](https://github.com/digital-ai/dot-components/issues/1151)
|
|
145
|
-
- D-22241: `DotFileListItem`: fix focus states and expose `onKeyPress` [\#1254](https://github.com/digital-ai/dot-components/pull/1254) ([dmiletic85](https://github.com/dmiletic85))
|
|
146
157
|
|
|
147
158
|
## [2.0.0-rc.1](https://github.com/digital-ai/dot-components/tree/2.0.0-rc.1) (08/31/2022)
|
|
148
159
|
|
|
149
160
|
[Full Changelog](https://github.com/digital-ai/dot-components/compare/1.21.1...2.0.0-rc.1)
|
|
150
161
|
|
|
162
|
+
**Features:**
|
|
163
|
+
|
|
164
|
+
- S-86683: `DotAutocomplete`: expose `onBlur` [\#1236](https://github.com/digital-ai/dot-components/pull/1236) ([dmiletic85](https://github.com/dmiletic85))
|
|
165
|
+
|
|
151
166
|
**Fixed bugs:**
|
|
152
167
|
|
|
168
|
+
- D-22241: `DotFileListItem`: fix focus states and expose `onKeyPress` [\#1254](https://github.com/digital-ai/dot-components/pull/1254) ([dmiletic85](https://github.com/dmiletic85))
|
|
153
169
|
- S-86692: component cleanup [\#1238](https://github.com/digital-ai/dot-components/pull/1238) ([CWSites](https://github.com/CWSites))
|
|
154
170
|
- S-84151: fix e2e tests for Release 2.0 [\#1146](https://github.com/digital-ai/dot-components/pull/1146) ([CWSites](https://github.com/CWSites))
|
|
155
171
|
|
|
@@ -180,9 +196,6 @@
|
|
|
180
196
|
- `DotAutocomplete` should allow to pass `readOnly` property into the inner textfield [\#1233](https://github.com/digital-ai/dot-components/issues/1233)
|
|
181
197
|
- S-86896 Add option in the InlineEdit component to select all input on edit [\#1240](https://github.com/digital-ai/dot-components/pull/1240) ([tonac](https://github.com/tonac))
|
|
182
198
|
- S-86128: `DotAutocomplete`: Support error/warning icons with the tooltip [\#1237](https://github.com/digital-ai/dot-components/pull/1237) ([dmiletic85](https://github.com/dmiletic85))
|
|
183
|
-
- S-86683: `DotAutocomplete`: expose `onBlur` [\#1236](https://github.com/digital-ai/dot-components/pull/1236) ([dmiletic85](https://github.com/dmiletic85))
|
|
184
|
-
- S-86581: `DotAutocomplete` should allow to pass `readOnly` property into the inner `TextField` [\#1235](https://github.com/digital-ai/dot-components/pull/1235) ([dmiletic85](https://github.com/dmiletic85))
|
|
185
|
-
- S-84069: expose shrink prop to input fields [\#1223](https://github.com/digital-ai/dot-components/pull/1223) ([CWSites](https://github.com/CWSites))
|
|
186
199
|
|
|
187
200
|
**Fixed bugs:**
|
|
188
201
|
|
|
@@ -209,7 +222,9 @@
|
|
|
209
222
|
- Adjust margin of `DotTypography` [\#1210](https://github.com/digital-ai/dot-components/issues/1210)
|
|
210
223
|
- `DotInputText` allow to set `shrink` property [\#1124](https://github.com/digital-ai/dot-components/issues/1124)
|
|
211
224
|
- `DotInputText` Should show `\*` on `helperText` if field is required [\#1122](https://github.com/digital-ai/dot-components/issues/1122)
|
|
225
|
+
- S-86581: `DotAutocomplete` should allow to pass `readOnly` property into the inner `TextField` [\#1235](https://github.com/digital-ai/dot-components/pull/1235) ([dmiletic85](https://github.com/dmiletic85))
|
|
212
226
|
- S-86369: input field success [\#1226](https://github.com/digital-ai/dot-components/pull/1226) ([CWSites](https://github.com/CWSites))
|
|
227
|
+
- S-84069: expose shrink prop to input fields [\#1223](https://github.com/digital-ai/dot-components/pull/1223) ([CWSites](https://github.com/CWSites))
|
|
213
228
|
- Issue \#1210: add prop for noMargin to typography [\#1222](https://github.com/digital-ai/dot-components/pull/1222) ([CWSites](https://github.com/CWSites))
|
|
214
229
|
- S-83952: persistent label for text field and select field [\#1219](https://github.com/digital-ai/dot-components/pull/1219) ([CWSites](https://github.com/CWSites))
|
|
215
230
|
- S-85811: `NavigationRail` Allow badges [\#1215](https://github.com/digital-ai/dot-components/pull/1215) ([dmiletic85](https://github.com/dmiletic85))
|
|
@@ -348,7 +363,6 @@
|
|
|
348
363
|
|
|
349
364
|
- DotTable action menu does not work according to design [\#1133](https://github.com/digital-ai/dot-components/issues/1133)
|
|
350
365
|
- Accordion summary has badly styled tooltip when summary is not a string and noWrap is true [\#1069](https://github.com/digital-ai/dot-components/issues/1069)
|
|
351
|
-
- D-20970: DotTableActions component [\#1134](https://github.com/digital-ai/dot-components/pull/1134) ([selsemore](https://github.com/selsemore))
|
|
352
366
|
- D-20359: only display tooltip if string [\#1127](https://github.com/digital-ai/dot-components/pull/1127) ([CWSites](https://github.com/CWSites))
|
|
353
367
|
|
|
354
368
|
## [1.15.0](https://github.com/digital-ai/dot-components/tree/1.15.0) (04/21/2022)
|
|
@@ -1074,7 +1088,6 @@
|
|
|
1074
1088
|
- S-79291: update nested dependencies [\#700](https://github.com/digital-ai/dot-components/pull/700) ([CWSites](https://github.com/CWSites))
|
|
1075
1089
|
- S-78832: Agility icon & badge updates [\#698](https://github.com/digital-ai/dot-components/pull/698) ([CWSites](https://github.com/CWSites))
|
|
1076
1090
|
- S-79251: add workflow for sonarqube scan when code merged to develop [\#697](https://github.com/digital-ai/dot-components/pull/697) ([CWSites](https://github.com/CWSites))
|
|
1077
|
-
- S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
|
|
1078
1091
|
|
|
1079
1092
|
## [1.1.0](https://github.com/digital-ai/dot-components/tree/1.1.0) (09/29/2021)
|
|
1080
1093
|
|
|
@@ -1088,6 +1101,7 @@
|
|
|
1088
1101
|
|
|
1089
1102
|
- MINOR release [\#695](https://github.com/digital-ai/dot-components/pull/695) ([CWSites](https://github.com/CWSites))
|
|
1090
1103
|
- pass value to tab [\#694](https://github.com/digital-ai/dot-components/pull/694) ([kmmarsh](https://github.com/kmmarsh))
|
|
1104
|
+
- S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
|
|
1091
1105
|
- S-78831: update AppToolbar component for Agility [\#691](https://github.com/digital-ai/dot-components/pull/691) ([CWSites](https://github.com/CWSites))
|
|
1092
1106
|
|
|
1093
1107
|
## [1.0.12](https://github.com/digital-ai/dot-components/tree/1.0.12) (09/23/2021)
|
|
@@ -1132,6 +1146,7 @@
|
|
|
1132
1146
|
**Fixed bugs:**
|
|
1133
1147
|
|
|
1134
1148
|
- Console warnings while running unit tests for codebase that is consuming dot-components library [\#629](https://github.com/digital-ai/dot-components/issues/629)
|
|
1149
|
+
- D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
|
|
1135
1150
|
- D-18536: material 4.12.3 upgrade [\#667](https://github.com/digital-ai/dot-components/pull/667) ([CWSites](https://github.com/CWSites))
|
|
1136
1151
|
|
|
1137
1152
|
**Merged pull requests:**
|
|
@@ -1153,7 +1168,6 @@
|
|
|
1153
1168
|
- untouched modified files [\#660](https://github.com/digital-ai/dot-components/issues/660)
|
|
1154
1169
|
- Update Agility colors [\#656](https://github.com/digital-ai/dot-components/issues/656)
|
|
1155
1170
|
- Add aria-label property [\#632](https://github.com/digital-ai/dot-components/issues/632)
|
|
1156
|
-
- D-18424: include breadcrumb wrapper with breadcrumb component [\#675](https://github.com/digital-ai/dot-components/pull/675) ([CWSites](https://github.com/CWSites))
|
|
1157
1171
|
- D-18730: action toolbar support [\#671](https://github.com/digital-ai/dot-components/pull/671) ([CWSites](https://github.com/CWSites))
|
|
1158
1172
|
- D-18607: Fix rowsPerPage parsing and do not pad table with empty rows [\#655](https://github.com/digital-ai/dot-components/pull/655) ([selsemore](https://github.com/selsemore))
|
|
1159
1173
|
|