Skip to content

Commit 06abfba

Browse files
committed
v6.0.0
1 parent c7b43a4 commit 06abfba

File tree

133 files changed

+905
-341
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+905
-341
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
7+
8+
9+
### Bug Fixes
10+
11+
* add type="button" on chip action to prevent form submit ([29d91ed](https://github.com/hperrin/svelte-material-ui/commit/29d91edd6586d3856d92350706b090101d35dbe3))
12+
* resolved "max height" typo in menu-surface ([b5f334f](https://github.com/hperrin/svelte-material-ui/commit/b5f334f47a9cbefc1a1cf6ef00f30e02dff6dc7a))
13+
* set accordion opened state based on open value ([8f939b3](https://github.com/hperrin/svelte-material-ui/commit/8f939b3ec666e5cb27fddf329cd5d15193912b64))
14+
* set menu surface max height if it changes to zero after initialization ([563163a](https://github.com/hperrin/svelte-material-ui/commit/563163a45bc45d2d0c640d1f3ede32de38e2da5b))
15+
* update sveltekit and fix package.json ([9dfb3d0](https://github.com/hperrin/svelte-material-ui/commit/9dfb3d03209d62c9a9febf49fff884df3ba96964)), closes [#425](https://github.com/hperrin/svelte-material-ui/issues/425)
16+
* upgrade packages and fix issues with new versions ([67f45cc](https://github.com/hperrin/svelte-material-ui/commit/67f45cc6bd628bd772c8717d20c0699be08e5d0d))
17+
18+
19+
### Features
20+
21+
* add demo code to illustrate how to have multiple snackbar colours ([bf9f0bc](https://github.com/hperrin/svelte-material-ui/commit/bf9f0bc90feca37bb75dc2fa1a149b3501d8b4b3))
22+
* cancel tab click if event.defaultPrevented ([4f0c60a](https://github.com/hperrin/svelte-material-ui/commit/4f0c60a86f9cb64f2631b7e7462451024558c346))
23+
24+
25+
26+
27+
628
# [6.0.0-beta.16](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.15...v6.0.0-beta.16) (2022-04-11)
729

830

lerna.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
{
2-
"version": "6.0.0-beta.16",
2+
"version": "6.0.0",
33
"command": {
44
"version": {
5-
"allowBranch": ["master"],
5+
"allowBranch": [
6+
"master"
7+
],
68
"conventionalCommits": true
79
}
810
},
9-
"packages": ["packages/*"]
11+
"packages": [
12+
"packages/*"
13+
]
1014
}

packages/accordion/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
7+
8+
9+
### Bug Fixes
10+
11+
* set accordion opened state based on open value ([8f939b3](https://github.com/hperrin/svelte-material-ui/commit/8f939b3ec666e5cb27fddf329cd5d15193912b64))
12+
* update sveltekit and fix package.json ([9dfb3d0](https://github.com/hperrin/svelte-material-ui/commit/9dfb3d03209d62c9a9febf49fff884df3ba96964)), closes [#425](https://github.com/hperrin/svelte-material-ui/issues/425)
13+
* upgrade packages and fix issues with new versions ([67f45cc](https://github.com/hperrin/svelte-material-ui/commit/67f45cc6bd628bd772c8717d20c0699be08e5d0d))
14+
15+
16+
17+
18+
619
# [6.0.0-beta.16](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.15...v6.0.0-beta.16) (2022-04-11)
720

821
**Note:** Version bump only for package @smui-extra/accordion

packages/accordion/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/accordion/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@smui-extra/accordion",
3-
"version": "6.0.0-beta.16",
3+
"version": "6.0.0",
44
"description": "Svelte Material UI - Accordion",
55
"type": "module",
66
"main": "dist/index.js",
@@ -44,9 +44,9 @@
4444
"@material/ripple": "^13.0.0",
4545
"@material/theme": "^13.0.0",
4646
"@material/typography": "^13.0.0",
47-
"@smui/common": "^6.0.0-beta.16",
48-
"@smui/paper": "^6.0.0-beta.16",
49-
"@smui/ripple": "^6.0.0-beta.16",
47+
"@smui/common": "^6.0.0",
48+
"@smui/paper": "^6.0.0",
49+
"@smui/ripple": "^6.0.0",
5050
"svelte2tsx": "^0.5.12"
5151
},
5252
"devDependencies": {

packages/autocomplete/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
7+
8+
9+
### Bug Fixes
10+
11+
* update sveltekit and fix package.json ([9dfb3d0](https://github.com/hperrin/svelte-material-ui/commit/9dfb3d03209d62c9a9febf49fff884df3ba96964)), closes [#425](https://github.com/hperrin/svelte-material-ui/issues/425)
12+
* upgrade packages and fix issues with new versions ([67f45cc](https://github.com/hperrin/svelte-material-ui/commit/67f45cc6bd628bd772c8717d20c0699be08e5d0d))
13+
14+
15+
16+
17+
618
# [6.0.0-beta.16](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.15...v6.0.0-beta.16) (2022-04-11)
719

820
**Note:** Version bump only for package @smui-extra/autocomplete

packages/autocomplete/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/autocomplete/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@smui-extra/autocomplete",
3-
"version": "6.0.0-beta.16",
3+
"version": "6.0.0",
44
"description": "Svelte Material UI - Autocomplete",
55
"type": "module",
66
"main": "dist/index.js",
@@ -41,11 +41,11 @@
4141
},
4242
"license": "Apache-2.0",
4343
"dependencies": {
44-
"@smui/common": "^6.0.0-beta.16",
45-
"@smui/list": "^6.0.0-beta.16",
46-
"@smui/menu": "^6.0.0-beta.16",
47-
"@smui/menu-surface": "^6.0.0-beta.16",
48-
"@smui/textfield": "^6.0.0-beta.16",
44+
"@smui/common": "^6.0.0",
45+
"@smui/list": "^6.0.0",
46+
"@smui/menu": "^6.0.0",
47+
"@smui/menu-surface": "^6.0.0",
48+
"@smui/textfield": "^6.0.0",
4949
"svelte2tsx": "^0.5.12"
5050
},
5151
"devDependencies": {

packages/badge/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23)
7+
8+
9+
### Bug Fixes
10+
11+
* update sveltekit and fix package.json ([9dfb3d0](https://github.com/hperrin/svelte-material-ui/commit/9dfb3d03209d62c9a9febf49fff884df3ba96964)), closes [#425](https://github.com/hperrin/svelte-material-ui/issues/425)
12+
* upgrade packages and fix issues with new versions ([67f45cc](https://github.com/hperrin/svelte-material-ui/commit/67f45cc6bd628bd772c8717d20c0699be08e5d0d))
13+
14+
15+
16+
17+
618
# [6.0.0-beta.16](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.15...v6.0.0-beta.16) (2022-04-11)
719

820
**Note:** Version bump only for package @smui-extra/badge

packages/badge/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)