@itwin/itwinui-css 1.9.0 → 1.10.1
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/CHANGELOG.md +20 -0
- package/css/all.css +1 -1
- package/css/code.css +1 -1
- package/css/menu.css +1 -1
- package/css/select.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1215](https://github.com/iTwin/iTwinUI/pull/1215): Code component when used inside an Anchor will now have correct styling.
|
|
8
|
+
|
|
9
|
+
## 1.10.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#1106](https://github.com/iTwin/iTwinUI/pull/1106): Added new List and ListItem components.
|
|
14
|
+
|
|
15
|
+
```jsx
|
|
16
|
+
<List>
|
|
17
|
+
<ListItem>item 1</ListItem>
|
|
18
|
+
<ListItem>item 2</ListItem>
|
|
19
|
+
<ListItem>item 3</ListItem>
|
|
20
|
+
</List>
|
|
21
|
+
```
|
|
22
|
+
|
|
3
23
|
## 1.9.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|