@smui/common
Advanced tools
Comparing version 6.0.0-beta.16 to 6.0.0
@@ -6,2 +6,14 @@ # Change Log | ||
# [6.0.0](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.16...v6.0.0) (2022-07-23) | ||
### Bug Fixes | ||
* 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) | ||
* upgrade packages and fix issues with new versions ([67f45cc](https://github.com/hperrin/svelte-material-ui/commit/67f45cc6bd628bd772c8717d20c0699be08e5d0d)) | ||
# [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) | ||
@@ -8,0 +20,0 @@ |
{ | ||
"name": "@smui/common", | ||
"version": "6.0.0-beta.16", | ||
"version": "6.0.0", | ||
"description": "Svelte Material UI - Common", | ||
@@ -60,6 +60,6 @@ "type": "module", | ||
"devDependencies": { | ||
"sass": "^1.49.9", | ||
"sass": "^1.54.0", | ||
"svelte-strip": "^1.0.1", | ||
"tslib": "^2.3.1", | ||
"typescript": "^4.6.2" | ||
"tslib": "^2.4.0", | ||
"typescript": "^4.7.4" | ||
}, | ||
@@ -69,5 +69,5 @@ "dependencies": { | ||
"@tsconfig/svelte": "^3.0.0", | ||
"svelte2tsx": "^0.5.5" | ||
"svelte2tsx": "^0.5.12" | ||
}, | ||
"gitHead": "5c4437761e9b7231457214920367a4feec445e5d" | ||
"gitHead": "06abfba3b8b5464383612c05c4b4ef75c897cd3c" | ||
} |
@@ -10,5 +10,7 @@ import type { SvelteComponent } from 'svelte'; | ||
// Match old modifiers. (only works on DOM events) | ||
const oldModifierRegex = /^[a-z]+(?::(?:preventDefault|stopPropagation|passive|nonpassive|capture|once|self))+$/; | ||
const oldModifierRegex = | ||
/^[a-z]+(?::(?:preventDefault|stopPropagation|passive|nonpassive|capture|once|self))+$/; | ||
// Match new modifiers. | ||
const newModifierRegex = /^[^$]+(?:\$(?:preventDefault|stopPropagation|passive|nonpassive|capture|once|self))+$/; | ||
const newModifierRegex = | ||
/^[^$]+(?:\$(?:preventDefault|stopPropagation|passive|nonpassive|capture|once|self))+$/; | ||
@@ -15,0 +17,0 @@ export function forwardEventsBuilder(component: SvelteComponent) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
194789
1872
2
Updatedsvelte2tsx@^0.5.12