Skip to content

Commit

Permalink
Release packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 29, 2024
1 parent 35058d2 commit ba06a60
Show file tree
Hide file tree
Showing 18 changed files with 34 additions and 74 deletions.
6 changes: 0 additions & 6 deletions .changeset/beige-knives-cry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cuddly-doors-pump.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curly-ads-march.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curvy-bananas-sleep.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-cycles-lie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-drinks-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/old-camels-study.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/polite-apples-promise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/proud-ligers-buy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-toes-own.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-bobcats-suffer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-chefs-eat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-camels-know.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-geckos-brake.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/itwinui-css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 2.5.0

### Minor Changes

- [#1881](https://github.com/iTwin/iTwinUI/pull/1881): `input`'s and `textarea`'s start/end inline padding when inside `.iui-input-flex-container` is now collapsed when it is preceded/followed by a `.iui-input-flex-container-icon` (e.g. borderless `.iui-button` or padded `.iui-svg-icon`). This prevents unnecessary empty space in the flex container. `.iui-input-flex-container-icon` is a new class with the main purpose of collapsing the padding between the icon/button and input/textarea in `.iui-input-flex-container`.
- [#1865](https://github.com/iTwin/iTwinUI/pull/1865): `iui-backdrop` will now also fade in when `iui-backdrop-visible` is present during mount.

### Patch Changes

- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): Inline padding of `Icon` no longer changes with the icon size. It is now a constant of `--iui-size-xs`.
- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): `.iui-input-flex-container` now has an inline padding of `1px` to account for the `1px` border's inline edges. This prevents content that touches the border's inline edges from being overlapped by the border by `1px`. Slightly modified `.iui-expandable-searchbox` styles to account for the new padding.
- [#1884](https://github.com/iTwin/iTwinUI/pull/1884): Fixes bug that caused the `.iui-tabs-wrapper` to change size dependent on which `.iui-tab` was active.
- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): The `.iui-svg-icon` inside the `.iui-searchbox` no longer has the same width as `.iui-button`. Its width also no longer changes with the `.iui-searchbox` size. This is because its padding behavior is now similar to `.iui-svg-icon`'s padding behavior, where it uses a constant padding.
- [#1881](https://github.com/iTwin/iTwinUI/pull/1881): `.iui-search-input` and `.iui-search-icon` are now no-op. This is because the main objective of these two classes was collapsing the padding between the icon and `input`/`textarea` in `.iui-input-flex-container`, and that is now handled by `.iui-input-flex-container-icon` instead.

## 2.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/itwinui-css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-css",
"version": "2.4.0",
"version": "2.5.0",
"author": "Bentley Systems",
"license": "MIT",
"main": "css/all.css",
Expand Down
16 changes: 16 additions & 0 deletions packages/itwinui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 3.6.0

### Minor Changes

- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): Inline padding of `Icon` no longer changes with the icon size. It is now a constant of `--iui-size-xs`.
- [#1877](https://github.com/iTwin/iTwinUI/pull/1877): Fixed `LabeledSelect` bug where nested `<StatusMessage>`s were rendered when `message={<StatusMessage>}`. As a result, now when `typeof message!=="string"`, `message` is no longer automatically wrapped in `<StatusMessage>`. So you might need to manually wrap your custom `ReactNode` with `<StatusMessage>` for proper styling of `message`.
- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): `SearchBox.Icon` no longer has the same width as `SearchBox.Button`. Its width also no longer changes with the `SearchBox` size. This is because its padding behavior is now similar to `Icon`'s padding behavior, where it uses a constant padding.
- [#1881](https://github.com/iTwin/iTwinUI/pull/1881): `Input`'s and `Textarea`'s start/end inline padding when inside `InputWithDecorations` is now collapsed when it is preceded/followed by a `InputWithDecorations.Icon` or `InputWithDecorations.Button`. This prevents unnecessary empty space in `InputWithDecorations`. `InputWithDecorations.Icon` is a new subcomponent with the main purpose of collapsing the padding between the icon/button and input/textarea in `InputWithDecorations`.

### Patch Changes

- [#1873](https://github.com/iTwin/iTwinUI/pull/1873): Fixed `Tab` stripe size and position calculation that sometimes used to cause unnecessary overflow and thus cause a horizontal scrollbar in `TabList`.
- [#1884](https://github.com/iTwin/iTwinUI/pull/1884): Fixes bug that caused the `Tabs.Wrapper` to change size dependent on which `Tabs.Tab` was active.
- [#1865](https://github.com/iTwin/iTwinUI/pull/1865): `Dialog`/`Modal` will no longer keep its wrapper in the DOM when `isOpen=false`.
- [#1828](https://github.com/iTwin/iTwinUI/pull/1828): `InputWithDecorations` now has an inline padding of `1px` to account for the `1px` border's inline edges. This prevents content that touches the border's inline edges from being overlapped by the border by `1px`. Slightly modified expandable `SearchBox` styles to account for the new padding.

## 3.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/itwinui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/itwinui-react",
"version": "3.5.0",
"version": "3.6.0",
"author": "Bentley Systems",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -85,7 +85,7 @@
"tslib": "^2.6.0"
},
"devDependencies": {
"@itwin/itwinui-css": "^2.4.0",
"@itwin/itwinui-css": "^2.5.0",
"@itwin/itwinui-variables": "3.1.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.68",
Expand Down

0 comments on commit ba06a60

Please sign in to comment.