File tree Expand file tree Collapse file tree 10 files changed +15
-9
lines changed
components/form/pages/checkbox Expand file tree Collapse file tree 10 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 1
- <l-popup show="{{show}}" direction ="{{direction}}" transition="{{transition}}" opacity="{{opacity}}" locked="{{locked}}" z-index="{{zIndex}}" l-class="l-class" l-bg-class="l-bg-class" bind:lintap="onArcPopupTap">
1
+ <l-popup show="{{show}}" contentAlign ="{{direction}}" transition="{{transition}}" opacity="{{opacity}}" locked="{{locked}}" z-index="{{zIndex}}" l-class="l-class" l-bg-class="l-bg-class" bind:lintap="onArcPopupTap">
2
2
<scroll-view scroll-y="true" class="arc-popup l-panel-class" style="{{arcStyle}}">
3
3
<view class="header-popup {{headerFixed ? 'fixed' : ''}} l-header-class">
4
4
<slot name="header"/>
Original file line number Diff line number Diff line change 46
46
" pages/icon/index"
47
47
]
48
48
},
49
+ {
50
+ "root" : " pages/components/animation" ,
51
+ "pages" : [
52
+ " pages/transition/index"
53
+ ]
54
+ },
49
55
{
50
56
"root" : " pages/components/view" ,
51
57
"pages" : [
Original file line number Diff line number Diff line change 1
1
<l-popup
2
2
show="{{show}}"
3
- direction ="{{direction}}"
3
+ contentAlign ="{{direction}}"
4
4
transition="{{transition}}"
5
5
opacity="{{opacity}}"
6
6
locked="{{locked}}"
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Component({
70
70
} ,
71
71
72
72
blurCount ( value , callback ) {
73
- if ( value ) {
73
+ if ( value !== undefined ) {
74
74
this . valueRange ( value ) ;
75
75
}
76
76
callback && callback ( ) ;
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ Page({
194
194
let index = e . currentTarget . dataset [ 'index' ] ;
195
195
let items = this . data [ `items${ index } ` ] ;
196
196
items . forEach ( item => {
197
- if ( item . id === e . detail . key ) {
197
+ if ( item . id . toString ( ) === e . detail . key ) {
198
198
item . checked = e . detail . checked ;
199
199
}
200
200
} ) ;
Original file line number Diff line number Diff line change 1
1
2
2
const animationNaviConfigs = [
3
3
{
4
- icon : 'cloud://env-9eb476.656e-env-9eb476-1258886794/ images/components/transition/transition- icon.png' ,
4
+ icon : '/ images/component/ icon.png' ,
5
5
title : 'Transition' ,
6
6
desc : '过渡' ,
7
7
componentsPath : '/pages/components/animation/pages/transition/index'
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " lin-ui" ,
3
- "version" : " 0.9.8 " ,
3
+ "version" : " 0.9.9 " ,
4
4
"description" : " A high quality UI components library with MiniProgram" ,
5
5
"main" : " app.js" ,
6
6
"directories" : {
Original file line number Diff line number Diff line change 1
1
<l-popup
2
2
show="{{show}}"
3
- direction ="{{direction}}"
3
+ contentAlign ="{{direction}}"
4
4
transition="{{transition}}"
5
5
opacity="{{opacity}}"
6
6
locked="{{locked}}"
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Component({
70
70
} ,
71
71
72
72
blurCount ( value , callback ) {
73
- if ( value ) {
73
+ if ( value !== undefined ) {
74
74
this . valueRange ( value ) ;
75
75
}
76
76
callback && callback ( ) ;
You can’t perform that action at this time.
0 commit comments