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 Mar 5, 2024
1 parent 22b95d3 commit b05d4fb
Show file tree
Hide file tree
Showing 23 changed files with 41 additions and 101 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.

6 changes: 0 additions & 6 deletions .changeset/dull-windows-add.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/nice-bottles-fold.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/quiet-files-judge.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/silly-rockets-sip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-beers-shout.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.

19 changes: 19 additions & 0 deletions packages/itwinui-css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# 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`.
- [#1889](https://github.com/iTwin/iTwinUI/pull/1889): Added `data-iui-shift` attribute selectors to borderless buttons, to help with visual alignment.
- [#1879](https://github.com/iTwin/iTwinUI/pull/1879): Add styling for native `<select>` element.
- [#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`.
- [#1889](https://github.com/iTwin/iTwinUI/pull/1889): The close button in dialog will now be visually aligned based on the icon inside it, excluding the padding.
- [#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.
- [#1894](https://github.com/iTwin/iTwinUI/pull/1894): All instances of `box-sizing: content-box` have been reinforced with `!important` to prevent accidental overrides from application styles.
- [#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
19 changes: 19 additions & 0 deletions packages/itwinui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# 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.
- [#1879](https://github.com/iTwin/iTwinUI/pull/1879): Added a new `native` prop to `Select` and `LabeledSelect`. When true, a native `<select>` element will be rendered.
- [#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

- [#1889](https://github.com/iTwin/iTwinUI/pull/1889): The close button in dialog will now be visually aligned based on the icon inside it, excluding the padding.
- [#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.
- [#1894](https://github.com/iTwin/iTwinUI/pull/1894): All instances of `box-sizing: content-box` have been reinforced with `!important` to prevent accidental overrides from application styles.
- [#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 b05d4fb

Please sign in to comment.