@digital-ai/dot-components 2.0.1 → 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.
Files changed (35) hide show
  1. package/CHANGE_LOG.md +49 -5
  2. package/index.esm.js +1248 -491
  3. package/index.umd.js +1436 -569
  4. package/lib/components/app-switcher/AppSwitcher.d.ts +24 -0
  5. package/lib/components/app-switcher/AppSwitcher.styles.d.ts +2 -0
  6. package/lib/components/avatar/Avatar.d.ts +2 -2
  7. package/lib/components/button-toggle/ButtonToggle.d.ts +3 -1
  8. package/lib/components/core-api/CancelablePromise.d.ts +7 -0
  9. package/lib/components/core-api/CoreApiProvider.d.ts +16 -0
  10. package/lib/components/core-api/mocks.d.ts +23 -0
  11. package/lib/components/core-api/openapi/core/ApiError.d.ts +8 -0
  12. package/lib/components/core-api/openapi/core/ApiRequestOptions.d.ts +12 -0
  13. package/lib/components/core-api/openapi/core/ApiResult.d.ts +7 -0
  14. package/lib/components/core-api/openapi/core/OpenAPI.d.ts +15 -0
  15. package/lib/components/core-api/openapi/core/request.d.ts +9 -0
  16. package/lib/components/core-api/openapi/index.d.ts +12 -0
  17. package/lib/components/core-api/openapi/models/AccountModel.d.ts +50 -0
  18. package/lib/components/core-api/openapi/models/AccountModelWrapper.d.ts +4 -0
  19. package/lib/components/core-api/openapi/models/AccountModelsWrapper.d.ts +6 -0
  20. package/lib/components/core-api/openapi/models/ApplicationInstanceStates.d.ts +4 -0
  21. package/lib/components/core-api/openapi/models/ApplicationModel.d.ts +67 -0
  22. package/lib/components/core-api/openapi/models/ApplicationModelWrapper.d.ts +4 -0
  23. package/lib/components/core-api/openapi/models/ApplicationModelsWrapper.d.ts +6 -0
  24. package/lib/components/core-api/openapi/models/PaginationModel.d.ts +22 -0
  25. package/lib/components/core-api/openapi/services/AccountsService.d.ts +25 -0
  26. package/lib/components/core-api/openapi/services/ApplicationsService.d.ts +38 -0
  27. package/lib/components/index.d.ts +4 -0
  28. package/lib/components/linear-progress/LinearProgress.d.ts +14 -0
  29. package/lib/components/linear-progress/LinearProgress.styles.d.ts +3 -0
  30. package/lib/components/linear-progress/index.d.ts +2 -0
  31. package/lib/components/menu/utils/constants.d.ts +2 -2
  32. package/lib/components/menu/utils/helpers.d.ts +1 -1
  33. package/lib/components/table/TablePagination.styles.d.ts +1 -0
  34. package/lib/theme-provider/ThemeProvider.d.ts +14 -1
  35. package/package.json +3 -2
package/CHANGE_LOG.md CHANGED
@@ -1,5 +1,50 @@
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
+
15
+ ## [2.0.2](https://github.com/digital-ai/dot-components/tree/2.0.2) (12/06/2022)
16
+
17
+ [Full Changelog](https://github.com/digital-ai/dot-components/compare/2.0.1...2.0.2)
18
+
19
+ **Features:**
20
+
21
+ - New Component: Linear progress indicator [\#1132](https://github.com/digital-ai/dot-components/issues/1132)
22
+ - `DotToggleButton` should allow to change selected color [\#1121](https://github.com/digital-ai/dot-components/issues/1121)
23
+ - S-84354: New Component: Linear progress indicator [\#1312](https://github.com/digital-ai/dot-components/pull/1312) ([dmiletic85](https://github.com/dmiletic85))
24
+ - S-84032: `DotToggleButton` should allow to change selected color [\#1311](https://github.com/digital-ai/dot-components/pull/1311) ([dmiletic85](https://github.com/dmiletic85))
25
+
26
+ **Fixed bugs:**
27
+
28
+ - `DotInputSelect`: doesn't have the same height as `DotInputText` [\#1319](https://github.com/digital-ai/dot-components/issues/1319)
29
+ - `DotInputText`: persistent label is hidden when using it inside a flex container [\#1318](https://github.com/digital-ai/dot-components/issues/1318)
30
+ - There is no spacing between the input field and its helper text [\#1316](https://github.com/digital-ai/dot-components/issues/1316)
31
+ - `Menu` items inside the menu should have 14px font size [\#1313](https://github.com/digital-ai/dot-components/issues/1313)
32
+ - \[DOT 2.0\] NavigationRail badge is broken [\#1301](https://github.com/digital-ai/dot-components/issues/1301)
33
+ - 2.0 Design differences II [\#1287](https://github.com/digital-ai/dot-components/issues/1287)
34
+ - `DotChip`: Image is moved when having tooltip [\#1137](https://github.com/digital-ai/dot-components/issues/1137)
35
+ - `DotAvatar`: should be able to remove the background color when using images [\#1136](https://github.com/digital-ai/dot-components/issues/1136)
36
+ - S-84511: Allow avatar colors to be transparent [\#1324](https://github.com/digital-ai/dot-components/pull/1324) ([CWSites](https://github.com/CWSites))
37
+ - D-23494: Update TablePagination and AlertBanner [\#1323](https://github.com/digital-ai/dot-components/pull/1323) ([CWSites](https://github.com/CWSites))
38
+ - D-23465 Add wrapper div for InputText and InputSelect [\#1320](https://github.com/digital-ai/dot-components/pull/1320) ([nikolinadapic](https://github.com/nikolinadapic))
39
+ - S-88833 Fix spacing between input and helper text, fix input select height [\#1317](https://github.com/digital-ai/dot-components/pull/1317) ([nikolinadapic](https://github.com/nikolinadapic))
40
+ - S-88324: Updated the Brand logo for dark theme [\#1315](https://github.com/digital-ai/dot-components/pull/1315) ([csmathguy](https://github.com/csmathguy))
41
+ - D-23353: `DotMenu` items inside the menu should have 14px font size [\#1314](https://github.com/digital-ai/dot-components/pull/1314) ([dmiletic85](https://github.com/dmiletic85))
42
+ - D-23298: `NavigationRail` Fix badges issue [\#1303](https://github.com/digital-ai/dot-components/pull/1303) ([dmiletic85](https://github.com/dmiletic85))
43
+
44
+ **Merged pull requests:**
45
+
46
+ - S-88919: Update react-router-dom [\#1325](https://github.com/digital-ai/dot-components/pull/1325) ([ryangamble](https://github.com/ryangamble))
47
+
3
48
  ## [2.0.1](https://github.com/digital-ai/dot-components/tree/2.0.1) (11/15/2022)
4
49
 
5
50
  [Full Changelog](https://github.com/digital-ai/dot-components/compare/2.0.0...2.0.1)
@@ -109,7 +154,6 @@
109
154
  **Fixed bugs:**
110
155
 
111
156
  - Use of `release-2.0` branch causes `Typography` to use default styling [\#1151](https://github.com/digital-ai/dot-components/issues/1151)
112
- - D-22241: `DotFileListItem`: fix focus states and expose `onKeyPress` [\#1254](https://github.com/digital-ai/dot-components/pull/1254) ([dmiletic85](https://github.com/dmiletic85))
113
157
 
114
158
  ## [2.0.0-rc.1](https://github.com/digital-ai/dot-components/tree/2.0.0-rc.1) (08/31/2022)
115
159
 
@@ -117,10 +161,11 @@
117
161
 
118
162
  **Features:**
119
163
 
120
- - 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))
164
+ - S-86683: `DotAutocomplete`: expose `onBlur` [\#1236](https://github.com/digital-ai/dot-components/pull/1236) ([dmiletic85](https://github.com/dmiletic85))
121
165
 
122
166
  **Fixed bugs:**
123
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))
124
169
  - S-86692: component cleanup [\#1238](https://github.com/digital-ai/dot-components/pull/1238) ([CWSites](https://github.com/CWSites))
125
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))
126
171
 
@@ -151,7 +196,6 @@
151
196
  - `DotAutocomplete` should allow to pass `readOnly` property into the inner textfield [\#1233](https://github.com/digital-ai/dot-components/issues/1233)
152
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))
153
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))
154
- - S-86683: `DotAutocomplete`: expose `onBlur` [\#1236](https://github.com/digital-ai/dot-components/pull/1236) ([dmiletic85](https://github.com/dmiletic85))
155
199
 
156
200
  **Fixed bugs:**
157
201
 
@@ -178,6 +222,7 @@
178
222
  - Adjust margin of `DotTypography` [\#1210](https://github.com/digital-ai/dot-components/issues/1210)
179
223
  - `DotInputText` allow to set `shrink` property [\#1124](https://github.com/digital-ai/dot-components/issues/1124)
180
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))
181
226
  - S-86369: input field success [\#1226](https://github.com/digital-ai/dot-components/pull/1226) ([CWSites](https://github.com/CWSites))
182
227
  - S-84069: expose shrink prop to input fields [\#1223](https://github.com/digital-ai/dot-components/pull/1223) ([CWSites](https://github.com/CWSites))
183
228
  - Issue \#1210: add prop for noMargin to typography [\#1222](https://github.com/digital-ai/dot-components/pull/1222) ([CWSites](https://github.com/CWSites))
@@ -318,7 +363,6 @@
318
363
 
319
364
  - DotTable action menu does not work according to design [\#1133](https://github.com/digital-ai/dot-components/issues/1133)
320
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)
321
- - D-20970: DotTableActions component [\#1134](https://github.com/digital-ai/dot-components/pull/1134) ([selsemore](https://github.com/selsemore))
322
366
  - D-20359: only display tooltip if string [\#1127](https://github.com/digital-ai/dot-components/pull/1127) ([CWSites](https://github.com/CWSites))
323
367
 
324
368
  ## [1.15.0](https://github.com/digital-ai/dot-components/tree/1.15.0) (04/21/2022)
@@ -1044,7 +1088,6 @@
1044
1088
  - S-79291: update nested dependencies [\#700](https://github.com/digital-ai/dot-components/pull/700) ([CWSites](https://github.com/CWSites))
1045
1089
  - S-78832: Agility icon & badge updates [\#698](https://github.com/digital-ai/dot-components/pull/698) ([CWSites](https://github.com/CWSites))
1046
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))
1047
- - S-76906: table action column [\#692](https://github.com/digital-ai/dot-components/pull/692) ([monapatel91](https://github.com/monapatel91))
1048
1091
 
1049
1092
  ## [1.1.0](https://github.com/digital-ai/dot-components/tree/1.1.0) (09/29/2021)
1050
1093
 
@@ -1058,6 +1101,7 @@
1058
1101
 
1059
1102
  - MINOR release [\#695](https://github.com/digital-ai/dot-components/pull/695) ([CWSites](https://github.com/CWSites))
1060
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))
1061
1105
  - S-78831: update AppToolbar component for Agility [\#691](https://github.com/digital-ai/dot-components/pull/691) ([CWSites](https://github.com/CWSites))
1062
1106
 
1063
1107
  ## [1.0.12](https://github.com/digital-ai/dot-components/tree/1.0.12) (09/23/2021)