New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

wx-svelte-core

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wx-svelte-core - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

readme.md

19

package.json
{
"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"
]
}

10

src/components/calendar/helpers.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc