wx-svelte-core
Advanced tools
Comparing version 1.3.0 to 1.3.1
{ | ||
"name": "wx-svelte-core", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "SVAR Svelte Core library, a collection of form controls and UI components", | ||
"productTag": "core", | ||
@@ -26,3 +27,3 @@ "productTrial": false, | ||
"dependencies": { | ||
"wx-core-locales": "1.3.0", | ||
"wx-core-locales": "1.3.1", | ||
"wx-lib-dom": "0.6.0" | ||
@@ -35,3 +36,17 @@ }, | ||
"license.txt" | ||
], | ||
"keywords": [ | ||
"svelte", | ||
"svelte library", | ||
"svelte ui components", | ||
"svelte-ui-library", | ||
"component-library", | ||
"components library", | ||
"ui library", | ||
"ui-library", | ||
"ui components", | ||
"ui components", | ||
"svelte ui library", | ||
"svar widgets" | ||
] | ||
} |
@@ -24,12 +24,8 @@ import Month from "./Month.svelte"; | ||
function prevMonth(current) { | ||
let newCurrent = new Date(current); | ||
newCurrent.setMonth(current.getMonth() - 1); | ||
while (current.getMonth() === newCurrent.getMonth()) { | ||
newCurrent.setDate(newCurrent.getDate() - 1); | ||
} | ||
return newCurrent; | ||
current = new Date(current); | ||
current.setMonth(current.getMonth() - 1); | ||
return current; | ||
} | ||
function nextMonth(current) { | ||
current = new Date(current); | ||
current.setDate(1); | ||
current.setMonth(current.getMonth() + 1); | ||
@@ -36,0 +32,0 @@ return current; |
@@ -0,4 +1,14 @@ | ||
### 1.3.1 | ||
- [fix] locale object lacks language marker | ||
- [fix] incorrect change event parameter in Tabbar | ||
- [fix] required fields do not have marks in labels | ||
- [fix] disabled Richselect throws an error on click/keydown | ||
- [fix] current month of Calendar does not update correctly | ||
### 1.3.0 | ||
- [update] improved popup positioning strategies | ||
- [fix] incorrect styling of right selection marker in Calendar | ||
- [fix] impossible to track input changes in Textarea | ||
@@ -5,0 +15,0 @@ ### 1.2.3 |
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
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
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
166502
61
0
67
355
+ Addedwx-core-locales@1.3.1(transitive)
- Removedwx-core-locales@1.3.0(transitive)
Updatedwx-core-locales@1.3.1