Comparing version 2.3.1 to 2.3.2
{ | ||
"main": "dist/alpine.js", | ||
"name": "alpinejs", | ||
"version": "2.3.1", | ||
"version": "2.3.2", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
@@ -612,2 +612,4 @@ # Alpine.js | ||
* Add "deep watching" support in V3 ([#294](https://github.com/alpinejs/alpine/pull/294)) | ||
* Add `$el` shortcut | ||
* Change `@click.away` to `@click.outside`? | ||
@@ -614,0 +616,0 @@ ## License |
@@ -45,3 +45,3 @@ import { arrayUnique , isBooleanAttr } from '../utils' | ||
updateSelect(el, value) | ||
} else { | ||
} else if (el.type === 'text') { | ||
// Cursor position should be restored back to origin due to a safari bug | ||
@@ -57,2 +57,4 @@ const selectionStart = el.selectionStart | ||
} | ||
} else { | ||
el.value = value | ||
} | ||
@@ -59,0 +61,0 @@ } else if (attrName === 'class') { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
577089
11824
620