Skip to content

Commit

Permalink
Release packages (#996)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 23, 2023
1 parent c06caff commit 5fad921
Show file tree
Hide file tree
Showing 11 changed files with 93 additions and 83 deletions.
17 changes: 0 additions & 17 deletions .changeset/chilly-ladybugs-tap.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/cool-baboons-crash.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/large-chefs-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-mayflies-eat.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/six-turkeys-type.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-insects-sip.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/unlucky-bears-chew.md

This file was deleted.

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

## 1.4.0

### Minor Changes

- f7caf384: \* Added new `iui-tabs-actions-wrapper` and `iui-tabs-actions` to `.iui-tabs-wrapper` to add right/bottom content to the horizontal/vertical tabs.

```html
<div class="iui-tabs-wrapper iui-horizontal">
<ul class="iui-tabs iui-default">
...
</ul>

<div class="iui-tabs-actions-wrapper">
<div class="iui-tabs-actions">...</div>
</div>

<div class="iui-tabs-content">...</div>
</div>
```

- dd13257f: Added new `iui-svg-icon` class for displaying svgs

- Supports `data-iui-icon-size` attribute for size. Can be one of: 's', 'm', 'l', 'auto'
- Supports `data-iui-icon-color` attribute for fill. Can be one of: 'informational', 'positive', 'warning', 'negative'

```html
<span
class="iui-svg-icon"
data-iui-icon-size="m"
data-iui-icon-color="positive"
>
<svg>...</svg>
</span>
```

### Patch Changes

- ec26b72d: `Anchor` can now be rendered as a button using `as` prop.

```jsx
<Anchor as='button' onClick={() => {}}>
...
</Anchor>
```

## [1.3.0](https://www.github.com/iTwin/iTwinUI/compare/v1.2.2...v1.3.0) (2022-12-19)

### 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": "1.3.0",
"version": "1.4.0",
"author": "Bentley Systems",
"license": "MIT",
"main": "css/all.css",
Expand Down
45 changes: 45 additions & 0 deletions packages/itwinui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# Changelog

## 2.3.0

### Minor Changes

- c06caffe: Added `actions` prop to `Tabs` to add right/bottom content to the horizontal/vertical tabs.

```tsx
<Tabs
// ...
actions={[
<Button key={'Small'} size={'small'}>
Small size button
</Button>,
<Button key={'Normal'}>Normal size button</Button>,
]}
>
// ...
</Tabs>
```

- ec26b72d: `Anchor` can now be rendered as a button using `as` prop.

```jsx
<Anchor as='button' onClick={() => {}}>
...
</Anchor>
```

- dd13257f: Added new Icon component for displaying svgs

- Supports `size` and `fill` props

```tsx
<Icon size='medium' fill='positive'>
<svg>...</svg>
</Icon>
```

### Patch Changes

- 8e319bea: Removes transitions for `Toast` component when `prefer-reduced-motion` is active
- 24a0cf94: Fixed an issue where Table's `onBottomReached` callback was not being invoked when using strict mode with react 18.
- Updated dependencies
- @itwin/itwinui-css@1.4.0

## 2.2.1

### Patch 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": "2.2.1",
"version": "2.3.0",
"author": "Bentley Systems",
"license": "MIT",
"main": "cjs/index.js",
Expand Down Expand Up @@ -62,7 +62,7 @@
"dev:types": "concurrently \"tsc -p tsconfig.cjs.json --emitDeclarationOnly --watch --preserveWatchOutput\" \"tsc -p tsconfig.esm.json --emitDeclarationOnly --watch --preserveWatchOutput\""
},
"dependencies": {
"@itwin/itwinui-css": "^1.2.0",
"@itwin/itwinui-css": "^1.4.0",
"@itwin/itwinui-illustrations-react": "^2.0.0",
"@itwin/itwinui-variables": "^1.0.0",
"@tippyjs/react": "^4.2.6",
Expand Down

0 comments on commit 5fad921

Please sign in to comment.