mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
Merge branch 'master' of https://github.com/sveltejs/svelte
This commit is contained in:
commit
d152e57968
@ -1,5 +1,9 @@
|
|||||||
# Svelte changelog
|
# Svelte changelog
|
||||||
|
|
||||||
|
## 1.0.2
|
||||||
|
|
||||||
|
Set `style.cssText` rather than `style` ([#44](https://github.com/sveltejs/svelte/issues/44))
|
||||||
|
|
||||||
## 1.0.1
|
## 1.0.1
|
||||||
|
|
||||||
* Preserve SVG namespace inside each blocks
|
* Preserve SVG namespace inside each blocks
|
||||||
|
@ -103,7 +103,7 @@ const lookup = {
|
|||||||
srcset: { appliesTo: [ 'img' ] },
|
srcset: { appliesTo: [ 'img' ] },
|
||||||
start: { appliesTo: [ 'ol' ] },
|
start: { appliesTo: [ 'ol' ] },
|
||||||
step: { appliesTo: [ 'input' ] },
|
step: { appliesTo: [ 'input' ] },
|
||||||
style: {},
|
style: { propertyName: 'style.cssText' },
|
||||||
summary: { appliesTo: [ 'table' ] },
|
summary: { appliesTo: [ 'table' ] },
|
||||||
tabindex: { propertyName: 'tabIndex' },
|
tabindex: { propertyName: 'tabIndex' },
|
||||||
target: { appliesTo: [ 'a', 'area', 'base', 'form' ] },
|
target: { appliesTo: [ 'a', 'area', 'base', 'form' ] },
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "svelte",
|
"name": "svelte",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"description": "The magical disappearing UI framework",
|
"description": "The magical disappearing UI framework",
|
||||||
"main": "dist/svelte.js",
|
"main": "dist/svelte.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
Loading…
Reference in New Issue
Block a user