Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# @weave-design/modal-v1.0.0 (2023-02-28)

### BREAKING

* **icon/icon-button:** Removes [@hig](https://github.com/hig)/icon and refactor [@hig](https://github.com/hig)/icon-button to use [@hig](https://github.com/hig)/icons ([49d78f4](Autodesk@49d78f4))

### Bug Fixes

*  react v. in peerDependencies instead of dependencies ([4701332](Autodesk@4701332))
* **a11y:** correct markup semantics ([2a328ea](Autodesk@2a328ea))
* add missing `[@hig](https://github.com/hig)/icon-button` dependency ([01ccb76](Autodesk@01ccb76))
* **bundle:** Fix package bundles ([a1b479d](Autodesk@a1b479d))
* **bundle:** include dependency CSS ([f5a4a62](Autodesk@f5a4a62))
* combined greenkeeper prs for version updates see pr 1392 ([d0a017a](Autodesk@d0a017a))
* design updates ([5d9d1b9](Autodesk@5d9d1b9))
* Forcing semantic release by editing readmes ([d39b61f](Autodesk@d39b61f))
* header font-weight, line height & body padding ([828d5d7](Autodesk@828d5d7))
* **package:** update [@hig](https://github.com/hig)/icons to version 2.0.0 ([b04b9e5](Autodesk@b04b9e5))
* **package:** update [@hig](https://github.com/hig)/utils to version 0.4.0 ([ba296ed](Autodesk@ba296ed))
* pass closeButtonAriaLabel to title attribute ([b9348f9](Autodesk@b9348f9))
* remove key duplicated ([2683acc](Autodesk@2683acc))
* stop using deprecated theme-data roles ([38960a5](Autodesk@38960a5))
* **storybook:** Add back Icon stories ([f38f2d4](Autodesk@f38f2d4))
* stylesheet function needs to be passed down to the header ([b7e8d0e](Autodesk@b7e8d0e))
* theme-context and theme-data as peer dependencies ([676136d](Autodesk@676136d))
* update dependencies ([70fb27c](Autodesk@70fb27c))
* update icon-button dependency ([1526394](Autodesk@1526394))

### Code Refactoring

* Major Release - React 17 Upgrade ([2523711](Autodesk@2523711))

### Features

* add stylesheet prop for Modal customization ([7034cea](Autodesk@7034cea))
* allow PropTypes.node for title prop ([b0744d8](Autodesk@b0744d8))
* Initialize remaining components to be migrated into packages ([3b654ce](Autodesk@3b654ce))
* **modal:** Add Modal placeholders ([87cd8d7](Autodesk@87cd8d7))
* pass down css className to all emotion styled elements ([d1e5ee8](Autodesk@d1e5ee8))
* props.style becomes props.type for consistency with other React components ([aa32562](Autodesk@aa32562))
* Pure React modal ([1e03939](Autodesk@1e03939))
* themable Modal ([0c71121](Autodesk@0c71121))
* updating peer dependencies release ([0a8a2b6](Autodesk@0a8a2b6))
* use emotion and stylesheet function in Modal ([057d56f](Autodesk@057d56f))
* use latest theme-data ([bb2cca9](Autodesk@bb2cca9))

### Reverts

* "Revert "Revert "feat : Migrate all repository to React v17.0 """ ([bf78986](Autodesk@bf78986))

### BREAKING CHANGES

* This release includes upgrading to React 17 and all associated libraries. The components have also had structural changes, utilizing stateless components and hooks. There should be no change in look or behavior of components. The code usage is the same so if you’re already on react 17 you can bump the version directly. If you’re on an old version of react you’ll need to upgrade your project’s react first to 17 and then the HIG components. This upgrade also means no more fixes for the react 15 version but it will still be available for download from NPM. You can fork the repo and make fixes with the older version if there is something critical past this release date.
* A new look for Modal with theming options and a new `stylesheet` prop
for customizing styles.
* DOM classNames like hig__modal-V1* replaced with
emotion-generated class names
* **icon/icon-button:** Removes @hig/icon
* **icon/icon-button:** Use icon prop instead of name or svg in @hig/icon-button to render Icon/svg
* **icon/icon-button:** No longer export `names` from @hig/icon-button

Usage:
```
import { Assets24 } from "@hig/icons"

function MyComponent() {
  return (
    <IconButton
      icon={<Assets24 />}
      onClick={() => console.log('Clicked it.')}
    />
  );
}
```
  • Loading branch information
hig-bot committed Feb 28, 2023
1 parent 747a6f8 commit 8e3f62b
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions packages/modal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,84 @@
# @weave-design/modal-v1.0.0 (2023-02-28)


### BREAKING

* **icon/icon-button:** Removes [@hig](https://github.com/hig)/icon and refactor [@hig](https://github.com/hig)/icon-button to use [@hig](https://github.com/hig)/icons ([49d78f4](https://github.com/Autodesk/hig/commit/49d78f4))


### Bug Fixes

* react v. in peerDependencies instead of dependencies ([4701332](https://github.com/Autodesk/hig/commit/4701332))
* **a11y:** correct markup semantics ([2a328ea](https://github.com/Autodesk/hig/commit/2a328ea))
* add missing `[@hig](https://github.com/hig)/icon-button` dependency ([01ccb76](https://github.com/Autodesk/hig/commit/01ccb76))
* **bundle:** Fix package bundles ([a1b479d](https://github.com/Autodesk/hig/commit/a1b479d))
* **bundle:** include dependency CSS ([f5a4a62](https://github.com/Autodesk/hig/commit/f5a4a62))
* combined greenkeeper prs for version updates see pr 1392 ([d0a017a](https://github.com/Autodesk/hig/commit/d0a017a))
* design updates ([5d9d1b9](https://github.com/Autodesk/hig/commit/5d9d1b9))
* Forcing semantic release by editing readmes ([d39b61f](https://github.com/Autodesk/hig/commit/d39b61f))
* header font-weight, line height & body padding ([828d5d7](https://github.com/Autodesk/hig/commit/828d5d7))
* **package:** update [@hig](https://github.com/hig)/icons to version 2.0.0 ([b04b9e5](https://github.com/Autodesk/hig/commit/b04b9e5))
* **package:** update [@hig](https://github.com/hig)/utils to version 0.4.0 ([ba296ed](https://github.com/Autodesk/hig/commit/ba296ed))
* pass closeButtonAriaLabel to title attribute ([b9348f9](https://github.com/Autodesk/hig/commit/b9348f9))
* remove key duplicated ([2683acc](https://github.com/Autodesk/hig/commit/2683acc))
* stop using deprecated theme-data roles ([38960a5](https://github.com/Autodesk/hig/commit/38960a5))
* **storybook:** Add back Icon stories ([f38f2d4](https://github.com/Autodesk/hig/commit/f38f2d4))
* stylesheet function needs to be passed down to the header ([b7e8d0e](https://github.com/Autodesk/hig/commit/b7e8d0e))
* theme-context and theme-data as peer dependencies ([676136d](https://github.com/Autodesk/hig/commit/676136d))
* update dependencies ([70fb27c](https://github.com/Autodesk/hig/commit/70fb27c))
* update icon-button dependency ([1526394](https://github.com/Autodesk/hig/commit/1526394))


### Code Refactoring

* Major Release - React 17 Upgrade ([2523711](https://github.com/Autodesk/hig/commit/2523711))


### Features

* add stylesheet prop for Modal customization ([7034cea](https://github.com/Autodesk/hig/commit/7034cea))
* allow PropTypes.node for title prop ([b0744d8](https://github.com/Autodesk/hig/commit/b0744d8))
* Initialize remaining components to be migrated into packages ([3b654ce](https://github.com/Autodesk/hig/commit/3b654ce))
* **modal:** Add Modal placeholders ([87cd8d7](https://github.com/Autodesk/hig/commit/87cd8d7))
* pass down css className to all emotion styled elements ([d1e5ee8](https://github.com/Autodesk/hig/commit/d1e5ee8))
* props.style becomes props.type for consistency with other React components ([aa32562](https://github.com/Autodesk/hig/commit/aa32562))
* Pure React modal ([1e03939](https://github.com/Autodesk/hig/commit/1e03939))
* themable Modal ([0c71121](https://github.com/Autodesk/hig/commit/0c71121))
* updating peer dependencies release ([0a8a2b6](https://github.com/Autodesk/hig/commit/0a8a2b6))
* use emotion and stylesheet function in Modal ([057d56f](https://github.com/Autodesk/hig/commit/057d56f))
* use latest theme-data ([bb2cca9](https://github.com/Autodesk/hig/commit/bb2cca9))


### Reverts

* "Revert "Revert "feat : Migrate all repository to React v17.0 """ ([bf78986](https://github.com/Autodesk/hig/commit/bf78986))


### BREAKING CHANGES

* This release includes upgrading to React 17 and all associated libraries. The components have also had structural changes, utilizing stateless components and hooks. There should be no change in look or behavior of components. The code usage is the same so if you’re already on react 17 you can bump the version directly. If you’re on an old version of react you’ll need to upgrade your project’s react first to 17 and then the HIG components. This upgrade also means no more fixes for the react 15 version but it will still be available for download from NPM. You can fork the repo and make fixes with the older version if there is something critical past this release date.
* A new look for Modal with theming options and a new `stylesheet` prop
for customizing styles.
* DOM classNames like hig__modal-V1* replaced with
emotion-generated class names
* **icon/icon-button:** Removes @hig/icon
* **icon/icon-button:** Use icon prop instead of name or svg in @hig/icon-button to render Icon/svg
* **icon/icon-button:** No longer export `names` from @hig/icon-button

Usage:
```
import { Assets24 } from "@hig/icons"
function MyComponent() {
return (
<IconButton
icon={<Assets24 />}
onClick={() => console.log('Clicked it.')}
/>
);
}
```

# [@hig/modal-v3.2.0](https://github.com/Autodesk/hig/compare/@hig/[email protected]...@hig/[email protected]) (2022-08-26)


Expand Down

0 comments on commit 8e3f62b

Please sign in to comment.