Skip to content

Commit

Permalink
Version Packages (#473)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 29, 2024
1 parent 6f02b24 commit e73d89a
Show file tree
Hide file tree
Showing 24 changed files with 96 additions and 143 deletions.
5 changes: 0 additions & 5 deletions .changeset/breezy-bears-stare.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cold-spoons-taste.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curly-tools-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dry-rules-hunt.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/five-trees-jog.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/four-sheep-mix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gold-llamas-develop.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/heavy-rats-cheat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-wasps-yell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-mugs-fry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-ladybugs-ring.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/late-socks-tie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-cherries-promise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/popular-pillows-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-coats-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/selfish-pears-prove.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/selfish-spiders-shop.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/strong-dryers-relax.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/thin-pianos-shave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-pans-crash.md

This file was deleted.

18 changes: 18 additions & 0 deletions packages/codemod/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @utilitywarehouse/ds-codemod

## 1.0.0

### Major Changes

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Add codemod to update IconButton size

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Add codemod to update lab Button size

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Add codemod to migrate `Button` components.

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Add Button to lab imports transform

### Minor Changes

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Add codemod to update lab imports

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Add codemod to update `Typography` components

## 0.0.24

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/codemod/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@utilitywarehouse/ds-codemod",
"version": "0.0.24",
"version": "1.0.0",
"description": "Codemod scripts for Design Systems packages.",
"bin": {
"@utilitywarehouse/ds-codemod": "bin/codemod.js"
Expand Down
76 changes: 76 additions & 0 deletions packages/web-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,81 @@
# @utilitywarehouse/web-ui

## 1.0.0

### Major Changes

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Refactor typography overrides

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Rename the `large` IconButton size to `medium`.

```diff
- <IconButton size='large'></IconButton>
+ <IconButton size='medium'></IconButton>
<IconButton
size={{
mobile: 'small',
- desktop: 'large',
+ desktop: 'medium',
}}
></IconButton>
```

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Rename the `large` Button size to `medium`.

```diff
- <Button size='large'></Button>
+ <Button size='medium'></Button>
<Button
size={{
mobile: 'small',
- desktop: 'large',
+ desktop: 'medium',
}}
></Button>
```

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Remove `isBrandBackground` from `Box` context, please use `isInvertedBackground`
instead.

```diff
- const { isBrandBackground } = useBackground();
- const bg = isBrandBackground ? colorsCommon.brandWhite : colorsCommon.brandPrimaryPurple;
+ const { isInvertedBackground } = useBackground();
+ const bg = isInvertedBackground ? colorsCommon.brandWhite : colorsCommon.brandPrimaryPurple;
```

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Replace Button component

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Replace `Link` and `TextLink` components with lab components

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Remove custom MUI typography theme.

You will no longer be able to do the following:

```
sx={{ ...theme.typography.body }}
```

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Remove deprecated `Typography` component. Consumers should use the `Text` &
`Heading` components instead. Please see the [migration documentation](https://uw-web-ui.vercel.app/?path=/docs/web-ui-guides-migration-v1--documentation) for further
details.

### Minor Changes

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Implement `textTransform` for `Link` & `TextLink` components

### Patch Changes

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Fix Link component asChild

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Fix Links text-wrapping issue

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Deprecate `Stack`. Please use the `Flex` component instead.

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Deprecate `Grid` component

- [#422](https://github.com/utilitywarehouse/design-systems/pull/422) [`6f02b24c`](https://github.com/utilitywarehouse/design-systems/commit/6f02b24cccc3534ca8239d38a553b2b12a98c336) Thanks [@robphoenix](https://github.com/robphoenix)! - Remove `justify-content: center` from link components.

## 0.9.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@utilitywarehouse/web-ui",
"version": "0.9.7",
"version": "1.0.0",
"description": "React components for building UW UIs",
"type": "module",
"main": "dist/index.cjs",
Expand Down

0 comments on commit e73d89a

Please sign in to comment.