@smui/list
Advanced tools
Comparing version 6.0.0-beta.5 to 6.0.0-beta.6
@@ -6,2 +6,18 @@ # Change Log | ||
# [6.0.0-beta.6](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.5...v6.0.0-beta.6) (2021-12-11) | ||
### Bug Fixes | ||
* migrate autocomplete to typescript and new features, also some fixes ([0107ca6](https://github.com/hperrin/svelte-material-ui/commit/0107ca6c8a01af66a69db74626e931afd598eff1)) | ||
### Features | ||
* export action function ([9c0f9f5](https://github.com/hperrin/svelte-material-ui/commit/9c0f9f5762c39be67692f0891f6c3bd57fe57a3c)) | ||
# [6.0.0-beta.5](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.4...v6.0.0-beta.5) (2021-12-10) | ||
@@ -8,0 +24,0 @@ |
@@ -31,2 +31,6 @@ /// <reference types="svelte2tsx/svelte-jsx" /> | ||
getValue(): any; | ||
action(e: Event): void; | ||
tabindex: number; | ||
readonly disabled: boolean; | ||
activated: boolean; | ||
} |
{ | ||
"name": "@smui/list", | ||
"version": "6.0.0-beta.5", | ||
"version": "6.0.0-beta.6", | ||
"description": "Svelte Material UI - List", | ||
@@ -42,4 +42,4 @@ "type": "module", | ||
"@material/list": "^13.0.0", | ||
"@smui/common": "^6.0.0-beta.5", | ||
"@smui/ripple": "^6.0.0-beta.5", | ||
"@smui/common": "^6.0.0-beta.6", | ||
"@smui/ripple": "^6.0.0-beta.6", | ||
"svelte2tsx": "^0.4.11" | ||
@@ -54,3 +54,3 @@ }, | ||
}, | ||
"gitHead": "fa3f93de26f912d220701200b1025c87b80b7892" | ||
"gitHead": "735560d27548748d2e8c6f97ad0c7f3c0c6e71b0" | ||
} |
@@ -55,2 +55,8 @@ import type { SvelteComponentDev } from 'svelte/internal'; | ||
getValue(): any; | ||
// For autocomplete. | ||
action(e: Event): void; | ||
tabindex: number; | ||
readonly disabled: boolean; | ||
activated: boolean; | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
243946
4254
Updated@smui/common@^6.0.0-beta.6
Updated@smui/ripple@^6.0.0-beta.6