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

mini-antui

Package Overview
Dependencies
Maintainers
4
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mini-antui - npm Package Compare versions

Comparing version 0.4.6 to 0.4.7

15

CHANGELOG.md

@@ -0,1 +1,16 @@

## 0.4.7
`2018-12-07`
- **Enhancement**
- `swipe-action`版本判断优化([#176](https://github.com/ant-mini-program/mini-antui/issues/176))
- `stepper`value属性类型兼容字符串
## 0.4.6
`2018-11-28`
- **Enhancement**
- `list-item`替换图片资源为base64
## 0.4.5

@@ -2,0 +17,0 @@

4

es/stepper/index.js

@@ -63,3 +63,3 @@ Component({

opaAdd = 1;
value = Math.max(min, value - step);
value = Math.max(min, +value - +step);
opaReduce = value === min ? 0.4 : 1;

@@ -71,3 +71,3 @@ }

opaReduce = 1;
value = Math.min(value + step, max);
value = Math.min(+value + +step, max);
opaAdd = value === max ? 0.4 : 1;

@@ -74,0 +74,0 @@ }

@@ -1,4 +0,6 @@

var windowWidth = my.getSystemInfoSync().windowWidth;
var isV2 = +my.SDKVersion.split('.').join('') > 1112;
var _my$getSystemInfoSync = my.getSystemInfoSync(),
windowWidth = _my$getSystemInfoSync.windowWidth;
var isV2 = my.canIUse('movable-view.onTouchStart');
Component({

@@ -5,0 +7,0 @@ data: {

{
"name": "mini-antui",
"version": "0.4.6",
"version": "0.4.7",
"description": "小程序版AntUI",

@@ -25,4 +25,4 @@ "repository": {

"build": "rc-tools run compile && node scripts/cp.js && node scripts/rm.js",
"pub": "git push origin && npm run build && npm publish"
"pub": "npm run build && node scripts/pub.js"
}
}
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