File tree Expand file tree Collapse file tree
components/form/pages/checkbox Expand file tree Collapse file tree 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">
22 <scroll-view scroll-y="true" class="arc-popup l-panel-class" style="{{arcStyle}}">
33 <view class="header-popup {{headerFixed ? 'fixed' : ''}} l-header-class">
44 <slot name="header"/>
Original file line number Diff line number Diff line change 4646 " pages/icon/index"
4747 ]
4848 },
49+ {
50+ "root" : " pages/components/animation" ,
51+ "pages" : [
52+ " pages/transition/index"
53+ ]
54+ },
4955 {
5056 "root" : " pages/components/view" ,
5157 "pages" : [
Original file line number Diff line number Diff line change 11<l-popup
22 show="{{show}}"
3- direction ="{{direction}}"
3+ contentAlign ="{{direction}}"
44 transition="{{transition}}"
55 opacity="{{opacity}}"
66 locked="{{locked}}"
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Component({
7070 } ,
7171
7272 blurCount ( value , callback ) {
73- if ( value ) {
73+ if ( value !== undefined ) {
7474 this . valueRange ( value ) ;
7575 }
7676 callback && callback ( ) ;
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ Page({
194194 let index = e . currentTarget . dataset [ 'index' ] ;
195195 let items = this . data [ `items${ index } ` ] ;
196196 items . forEach ( item => {
197- if ( item . id === e . detail . key ) {
197+ if ( item . id . toString ( ) === e . detail . key ) {
198198 item . checked = e . detail . checked ;
199199 }
200200 } ) ;
Original file line number Diff line number Diff line change 11
22const animationNaviConfigs = [
33 {
4- icon : 'cloud://env-9eb476.656e-env-9eb476-1258886794/ images/components/transition/transition- icon.png' ,
4+ icon : '/ images/component/ icon.png' ,
55 title : 'Transition' ,
66 desc : '过渡' ,
77 componentsPath : '/pages/components/animation/pages/transition/index'
Original file line number Diff line number Diff line change 11{
22 "name" : " lin-ui" ,
3- "version" : " 0.9.8 " ,
3+ "version" : " 0.9.9 " ,
44 "description" : " A high quality UI components library with MiniProgram" ,
55 "main" : " app.js" ,
66 "directories" : {
Original file line number Diff line number Diff line change 11<l-popup
22 show="{{show}}"
3- direction ="{{direction}}"
3+ contentAlign ="{{direction}}"
44 transition="{{transition}}"
55 opacity="{{opacity}}"
66 locked="{{locked}}"
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Component({
7070 } ,
7171
7272 blurCount ( value , callback ) {
73- if ( value ) {
73+ if ( value !== undefined ) {
7474 this . valueRange ( value ) ;
7575 }
7676 callback && callback ( ) ;
You can’t perform that action at this time.
0 commit comments