@tarojs/components 3.3.13 → 3.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/taro-ad-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-ad-custom-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-components.cjs.js +1 -1
- package/dist/cjs/taro-cover-image-core.cjs.entry.js +17 -3
- package/dist/cjs/taro-cover-view-core.cjs.entry.js +49 -3
- package/dist/cjs/taro-editor-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-functional-page-navigator-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-input-core.cjs.entry.js +4 -4
- package/dist/cjs/taro-keyboard-accessory-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-live-player-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-live-pusher-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-map-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-match-media-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-navigation-bar-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-navigator-core.cjs.entry.js +10 -6
- package/dist/cjs/taro-official-account-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-page-container-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-page-meta-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-pull-to-refresh.cjs.entry.js +7 -3
- package/dist/cjs/taro-share-element-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-slot-core.cjs.entry.js +19 -0
- package/dist/cjs/taro-tabbar.cjs.entry.js +100 -46
- package/dist/cjs/taro-textarea-core.cjs.entry.js +63 -3
- package/dist/cjs/taro-voip-room-core.cjs.entry.js +19 -0
- package/dist/collection/collection-manifest.json +21 -5
- package/dist/collection/components/ad/ad.js +11 -0
- package/dist/collection/components/{cover-view/cover-image.js → ad-custom/ad-custom.js} +3 -3
- package/dist/collection/components/cover-image/cover-image.js +94 -0
- package/dist/collection/components/cover-image/style/index.css +5 -0
- package/dist/collection/components/cover-view/cover-view.js +166 -4
- package/dist/collection/components/cover-view/style/cover-view.css +3 -0
- package/dist/collection/components/editor/editor.js +11 -0
- package/dist/collection/components/functional-page-navigator/functional-page-navigator.js +11 -0
- package/dist/collection/components/input/input.js +4 -4
- package/dist/collection/components/keyboard-accessory/keyboard-accessory.js +11 -0
- package/dist/collection/components/live-player/live-player.js +11 -0
- package/dist/collection/components/live-pusher/live-pusher.js +11 -0
- package/dist/collection/components/map/map.js +11 -0
- package/dist/collection/components/match-media/match-media.js +11 -0
- package/dist/collection/components/{movable-view → movable-area}/movable-area.js +0 -0
- package/dist/collection/components/{movable-view → movable-area}/movable-view.js +0 -0
- package/dist/collection/components/navigation-bar/navigation-bar.js +11 -0
- package/dist/collection/components/navigator/navigator.js +1 -1
- package/dist/collection/components/official-account/official-account.js +11 -0
- package/dist/collection/components/page-container/page-container.js +11 -0
- package/dist/collection/components/page-meta/page-meta.js +11 -0
- package/dist/collection/components/{picker-view-column → picker-view}/picker-view-column.js +0 -0
- package/dist/collection/components/{pull-down-refresh → pull-to-refresh}/pull-to-refresh.js +1 -1
- package/dist/collection/components/{pull-down-refresh → pull-to-refresh}/style/index.css +0 -0
- package/dist/collection/components/share-element/share-element.js +11 -0
- package/dist/collection/components/slot/slot.js +11 -0
- package/dist/collection/components/tabbar/tabbar.js +82 -24
- package/dist/collection/components/textarea/style/index.css +6 -2
- package/dist/collection/components/textarea/textarea.js +98 -3
- package/dist/collection/components/voip-room/voip-room.js +11 -0
- package/dist/collection/utils/index.js +50 -64
- package/dist/esm/loader.js +1 -1
- package/dist/esm/taro-ad-core.entry.js +15 -0
- package/dist/esm/taro-ad-custom-core.entry.js +15 -0
- package/dist/esm/taro-components.js +1 -1
- package/dist/esm/taro-cover-image-core.entry.js +18 -4
- package/dist/esm/taro-cover-view-core.entry.js +50 -4
- package/dist/esm/taro-editor-core.entry.js +15 -0
- package/dist/esm/taro-functional-page-navigator-core.entry.js +15 -0
- package/dist/esm/taro-input-core.entry.js +4 -4
- package/dist/esm/taro-keyboard-accessory-core.entry.js +15 -0
- package/dist/esm/taro-live-player-core.entry.js +15 -0
- package/dist/esm/taro-live-pusher-core.entry.js +15 -0
- package/dist/esm/taro-map-core.entry.js +15 -0
- package/dist/esm/taro-match-media-core.entry.js +15 -0
- package/dist/esm/taro-navigation-bar-core.entry.js +15 -0
- package/dist/esm/taro-navigator-core.entry.js +1 -1
- package/dist/esm/taro-official-account-core.entry.js +15 -0
- package/dist/esm/taro-page-container-core.entry.js +15 -0
- package/dist/esm/taro-page-meta-core.entry.js +15 -0
- package/dist/esm/taro-pull-to-refresh.entry.js +1 -1
- package/dist/esm/taro-share-element-core.entry.js +15 -0
- package/dist/esm/taro-slot-core.entry.js +15 -0
- package/dist/esm/taro-tabbar.entry.js +79 -29
- package/dist/esm/taro-textarea-core.entry.js +63 -3
- package/dist/esm/taro-voip-room-core.entry.js +15 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/taro-ad-core.entry.js +1 -0
- package/dist/esm-es5/taro-ad-custom-core.entry.js +1 -0
- package/dist/esm-es5/taro-components.js +1 -1
- package/dist/esm-es5/taro-cover-image-core.entry.js +1 -1
- package/dist/esm-es5/taro-cover-view-core.entry.js +1 -1
- package/dist/esm-es5/taro-editor-core.entry.js +1 -0
- package/dist/esm-es5/taro-functional-page-navigator-core.entry.js +1 -0
- package/dist/esm-es5/taro-input-core.entry.js +1 -1
- package/dist/esm-es5/taro-keyboard-accessory-core.entry.js +1 -0
- package/dist/esm-es5/taro-live-player-core.entry.js +1 -0
- package/dist/esm-es5/taro-live-pusher-core.entry.js +1 -0
- package/dist/esm-es5/taro-map-core.entry.js +1 -0
- package/dist/esm-es5/taro-match-media-core.entry.js +1 -0
- package/dist/esm-es5/taro-navigation-bar-core.entry.js +1 -0
- package/dist/esm-es5/taro-navigator-core.entry.js +1 -1
- package/dist/esm-es5/taro-official-account-core.entry.js +1 -0
- package/dist/esm-es5/taro-page-container-core.entry.js +1 -0
- package/dist/esm-es5/taro-page-meta-core.entry.js +1 -0
- package/dist/esm-es5/taro-pull-to-refresh.entry.js +1 -1
- package/dist/esm-es5/taro-share-element-core.entry.js +1 -0
- package/dist/esm-es5/taro-slot-core.entry.js +1 -0
- package/dist/esm-es5/taro-tabbar.entry.js +1 -1
- package/dist/esm-es5/taro-textarea-core.entry.js +1 -1
- package/dist/esm-es5/taro-voip-room-core.entry.js +1 -0
- package/dist/taro-components/{p-70f40e3a.entry.js → p-02b84386.entry.js} +1 -1
- package/dist/taro-components/{p-af9ec312.system.entry.js → p-0a0377f6.system.entry.js} +1 -1
- package/dist/taro-components/p-14095f6b.system.entry.js +1 -0
- package/dist/taro-components/p-16d9e6b9.system.entry.js +1 -0
- package/dist/taro-components/p-1cc97957.entry.js +1 -0
- package/dist/taro-components/p-30bfacb9.system.js +1 -1
- package/dist/taro-components/p-33bcdee9.entry.js +1 -0
- package/dist/taro-components/p-37594e84.entry.js +1 -0
- package/dist/taro-components/p-39bee235.entry.js +1 -0
- package/dist/taro-components/p-3ed0783c.system.entry.js +1 -0
- package/dist/taro-components/p-4288566a.system.entry.js +1 -0
- package/dist/taro-components/p-432f803f.entry.js +1 -0
- package/dist/taro-components/p-4d643967.entry.js +1 -0
- package/dist/taro-components/p-52ef77b2.entry.js +1 -0
- package/dist/taro-components/p-53297f27.entry.js +1 -0
- package/dist/taro-components/p-5e20dff4.system.entry.js +1 -0
- package/dist/taro-components/p-60a15326.system.entry.js +1 -0
- package/dist/taro-components/p-6422a968.system.entry.js +1 -0
- package/dist/taro-components/p-79b3c05a.entry.js +1 -0
- package/dist/taro-components/p-81e1d9a3.system.entry.js +1 -0
- package/dist/taro-components/p-8235b7b7.system.entry.js +1 -0
- package/dist/taro-components/p-82741605.entry.js +1 -0
- package/dist/taro-components/p-8415cd92.entry.js +1 -0
- package/dist/taro-components/p-8f0e3f13.entry.js +1 -0
- package/dist/taro-components/p-9b9727c7.entry.js +1 -0
- package/dist/taro-components/p-9bd65170.system.entry.js +1 -0
- package/dist/taro-components/p-9e7a85ae.entry.js +1 -0
- package/dist/taro-components/p-a4fdb95b.system.entry.js +1 -0
- package/dist/taro-components/p-a5c0a7e3.entry.js +1 -0
- package/dist/taro-components/p-ab55aacd.system.entry.js +1 -0
- package/dist/taro-components/p-b3abedf8.entry.js +1 -0
- package/dist/taro-components/p-bc08a702.system.entry.js +1 -0
- package/dist/taro-components/p-becfab60.system.entry.js +1 -0
- package/dist/taro-components/p-c7cfcb8e.entry.js +1 -0
- package/dist/taro-components/p-cb8099dd.entry.js +1 -0
- package/dist/taro-components/p-cdf144cb.system.entry.js +1 -0
- package/dist/taro-components/p-d8363f59.system.entry.js +1 -0
- package/dist/taro-components/{p-2ef4681b.system.entry.js → p-d9494012.system.entry.js} +1 -1
- package/dist/taro-components/p-dfe76645.entry.js +1 -0
- package/dist/taro-components/p-e1e289bb.entry.js +1 -0
- package/dist/taro-components/p-e42b782e.system.entry.js +1 -0
- package/dist/taro-components/p-ed3ff1e4.entry.js +1 -0
- package/dist/taro-components/p-effd64d5.system.entry.js +1 -0
- package/dist/taro-components/p-f05422a6.entry.js +1 -0
- package/dist/taro-components/p-f70b6a12.system.entry.js +1 -0
- package/dist/taro-components/p-f928a72e.system.entry.js +1 -0
- package/dist/taro-components/p-fac09a5c.system.entry.js +1 -0
- package/dist/taro-components/taro-components.css +1 -1
- package/dist/taro-components/taro-components.esm.js +1 -1
- package/dist/types/components/ad/ad.d.ts +4 -0
- package/dist/types/components/{cover-view/cover-image.d.ts → ad-custom/ad-custom.d.ts} +1 -1
- package/dist/types/components/cover-image/cover-image.d.ts +11 -0
- package/dist/types/components/cover-view/cover-view.d.ts +14 -2
- package/dist/types/components/editor/editor.d.ts +4 -0
- package/dist/types/components/functional-page-navigator/functional-page-navigator.d.ts +4 -0
- package/dist/types/components/keyboard-accessory/keyboard-accessory.d.ts +4 -0
- package/dist/types/components/live-player/live-player.d.ts +4 -0
- package/dist/types/components/live-pusher/live-pusher.d.ts +4 -0
- package/dist/types/components/map/map.d.ts +4 -0
- package/dist/types/components/match-media/match-media.d.ts +4 -0
- package/dist/types/components/{movable-view → movable-area}/movable-area.d.ts +0 -0
- package/dist/types/components/{movable-view → movable-area}/movable-view.d.ts +0 -0
- package/dist/types/components/navigation-bar/navigation-bar.d.ts +4 -0
- package/dist/types/components/official-account/official-account.d.ts +4 -0
- package/dist/types/components/page-container/page-container.d.ts +4 -0
- package/dist/types/components/page-meta/page-meta.d.ts +4 -0
- package/dist/types/components/{picker-view-column → picker-view}/picker-view-column.d.ts +0 -0
- package/dist/types/components/{pull-down-refresh → pull-to-refresh}/pull-to-refresh.d.ts +0 -0
- package/dist/types/components/share-element/share-element.d.ts +4 -0
- package/dist/types/components/slot/slot.d.ts +4 -0
- package/dist/types/components/tabbar/tabbar.d.ts +21 -2
- package/dist/types/components/textarea/textarea.d.ts +6 -0
- package/dist/types/components/voip-room/voip-room.d.ts +4 -0
- package/dist/types/components.d.ts +226 -0
- package/dist/types/utils/index.d.ts +8 -0
- package/dist-h5/react/index.js +2 -1
- package/dist-h5/vue/createComponent.js +4 -0
- package/dist-h5/vue/createFormsComponent.js +8 -1
- package/dist-h5/vue/simpleComponents.js +1 -1
- package/package.json +4 -4
- package/types/Ad.d.ts +6 -6
- package/types/AdCustom.d.ts +50 -0
- package/types/Button.d.ts +2 -2
- package/types/CoverImage.d.ts +3 -3
- package/types/CoverView.d.ts +3 -3
- package/types/Image.d.ts +8 -2
- package/types/KeyboardAccessory.d.ts +29 -0
- package/types/PageContainer.d.ts +115 -0
- package/types/ShareElement.d.ts +39 -0
- package/types/VoipRoom.d.ts +71 -0
- package/types/index.d.ts +72 -46
- package/virtual-list/react/createListComponent.js +4 -3
- package/dist/taro-components/p-2c5d57af.entry.js +0 -1
- package/dist/taro-components/p-382cabbc.system.entry.js +0 -1
- package/dist/taro-components/p-4ff67760.entry.js +0 -1
- package/dist/taro-components/p-5d84eaf0.entry.js +0 -1
- package/dist/taro-components/p-69be8189.system.entry.js +0 -1
- package/dist/taro-components/p-b685a487.system.entry.js +0 -1
- package/dist/taro-components/p-b6e0dca6.entry.js +0 -1
- package/dist/taro-components/p-c221cebb.system.entry.js +0 -1
- package/dist/taro-components/p-c5722042.entry.js +0 -1
- package/dist/taro-components/p-f8d0dabb.entry.js +0 -1
- package/dist/taro-components/p-f9013b36.system.entry.js +0 -1
package/types/Ad.d.ts
CHANGED
|
@@ -11,12 +11,12 @@ interface AdProps extends StandardProps {
|
|
|
11
11
|
* @supported weapp
|
|
12
12
|
*/
|
|
13
13
|
adIntervals?: number
|
|
14
|
-
|
|
14
|
+
|
|
15
15
|
/** 广告类型,默认为展示`banner`,可通过设置该属性为`video`展示视频广告, `grid`为格子广告
|
|
16
16
|
* @supported weapp
|
|
17
17
|
*/
|
|
18
18
|
adType?: 'banner' | 'video' | 'grid'
|
|
19
|
-
|
|
19
|
+
|
|
20
20
|
/** 广告主题样式设置
|
|
21
21
|
* @supported weapp
|
|
22
22
|
*/
|
|
@@ -42,9 +42,9 @@ declare namespace AdProps {
|
|
|
42
42
|
interface onErrorEventDetail {
|
|
43
43
|
errCode: keyof AdErrCode
|
|
44
44
|
}
|
|
45
|
-
/**
|
|
45
|
+
/**
|
|
46
46
|
* 广告错误码
|
|
47
|
-
*
|
|
47
|
+
*
|
|
48
48
|
* 错误码是通过onError获取到的错误信息。调试期间,可以通过异常返回来捕获信息。
|
|
49
49
|
* 在小程序发布上线之后,如果遇到异常问题,可以在[“运维中心“](https://mp.weixin.qq.com/)里面搜寻错误日志,还可以针对异常返回加上适当的监控信息。
|
|
50
50
|
*/
|
|
@@ -116,8 +116,8 @@ declare namespace AdProps {
|
|
|
116
116
|
* render () {
|
|
117
117
|
* return (
|
|
118
118
|
* <Ad
|
|
119
|
-
*
|
|
120
|
-
*
|
|
119
|
+
* unitId=''
|
|
120
|
+
* adIntervals={60}
|
|
121
121
|
* onLoad={() => console.log('ad onLoad')}
|
|
122
122
|
* onError={() => console.log('ad onError')}
|
|
123
123
|
* onClose={() => console.log('ad onClose')}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ComponentType } from 'react'
|
|
2
|
+
import { StandardProps, CommonEventFunction } from './common'
|
|
3
|
+
import { AdProps } from './Ad'
|
|
4
|
+
|
|
5
|
+
interface AdCustomProps extends StandardProps {
|
|
6
|
+
/** 广告单元id,可在[小程序管理后台](https://mp.weixin.qq.com/)的流量主模块新建
|
|
7
|
+
* @supported weapp
|
|
8
|
+
*/
|
|
9
|
+
unitId: string
|
|
10
|
+
|
|
11
|
+
/** 广告自动刷新的间隔时间,单位为秒,参数值必须大于等于30(该参数不传入时 Banner 广告不会自动刷新)
|
|
12
|
+
* @supported weapp
|
|
13
|
+
*/
|
|
14
|
+
adIntervals?: number
|
|
15
|
+
|
|
16
|
+
/** 广告加载成功的回调
|
|
17
|
+
* @supported weapp
|
|
18
|
+
*/
|
|
19
|
+
onLoad?: CommonEventFunction
|
|
20
|
+
|
|
21
|
+
/** 当广告发生错误时,触发的事件,可以通过该事件获取错误码及原因,事件对象event.detail = {errCode: 1002}
|
|
22
|
+
* @supported weapp
|
|
23
|
+
*/
|
|
24
|
+
onError?: CommonEventFunction<AdProps.onErrorEventDetail>
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/** Banner 广告
|
|
28
|
+
* @classification open
|
|
29
|
+
* @supported weapp
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* class App extends Component {
|
|
33
|
+
* render () {
|
|
34
|
+
* return (
|
|
35
|
+
* <AdCustom
|
|
36
|
+
* unitId=''
|
|
37
|
+
* adIntervals={60}
|
|
38
|
+
* onLoad={() => console.log('ad onLoad')}
|
|
39
|
+
* onError={() => console.log('ad onError')}
|
|
40
|
+
* onClose={() => console.log('ad onClose')}
|
|
41
|
+
* />
|
|
42
|
+
* )
|
|
43
|
+
* }
|
|
44
|
+
* }
|
|
45
|
+
* ```
|
|
46
|
+
* @see https://developers.weixin.qq.com/miniprogram/dev/component/ad.html
|
|
47
|
+
*/
|
|
48
|
+
declare const AdCustom: ComponentType<AdCustomProps>
|
|
49
|
+
|
|
50
|
+
export { AdCustom, AdCustomProps }
|
package/types/Button.d.ts
CHANGED
|
@@ -39,9 +39,9 @@ interface ButtonProps extends StandardProps {
|
|
|
39
39
|
formType?: keyof ButtonProps.formType
|
|
40
40
|
|
|
41
41
|
/** 微信开放能力
|
|
42
|
-
* @supported weapp
|
|
42
|
+
* @supported weapp, alipay, qq
|
|
43
43
|
*/
|
|
44
|
-
openType?: ButtonProps.openType
|
|
44
|
+
openType?: ButtonProps.openType
|
|
45
45
|
|
|
46
46
|
/** 指定按下去的样式类。当 `hover-class="none"` 时,没有点击态效果
|
|
47
47
|
* @default button-hover
|
package/types/CoverImage.d.ts
CHANGED
|
@@ -27,9 +27,9 @@ interface CoverImageProps extends StandardProps {
|
|
|
27
27
|
* render () {
|
|
28
28
|
* return (
|
|
29
29
|
* <Video id='myVideo' src='src'>
|
|
30
|
-
* <CoverView
|
|
31
|
-
* <CoverView
|
|
32
|
-
* <CoverImage
|
|
30
|
+
* <CoverView className='controls'>
|
|
31
|
+
* <CoverView className='play' onClick={() => { TODO }}>
|
|
32
|
+
* <CoverImage className='img' src='src' />
|
|
33
33
|
* </CoverView>
|
|
34
34
|
* </CoverView>
|
|
35
35
|
* </Video>
|
package/types/CoverView.d.ts
CHANGED
|
@@ -28,9 +28,9 @@ interface CoverViewProps extends ViewProps {
|
|
|
28
28
|
* render () {
|
|
29
29
|
* return (
|
|
30
30
|
* <Video id='myVideo' src='src'>
|
|
31
|
-
* <CoverView
|
|
32
|
-
* <CoverView
|
|
33
|
-
* <CoverImage
|
|
31
|
+
* <CoverView className='controls'>
|
|
32
|
+
* <CoverView className='play' onClick={() => { TODO }}>
|
|
33
|
+
* <CoverImage className='img' src='src' />
|
|
34
34
|
* </CoverView>
|
|
35
35
|
* </CoverView>
|
|
36
36
|
* </Video>
|
package/types/Image.d.ts
CHANGED
|
@@ -20,6 +20,12 @@ interface ImageProps extends StandardProps {
|
|
|
20
20
|
*/
|
|
21
21
|
webp?: boolean
|
|
22
22
|
|
|
23
|
+
/** 默认不解析 svg 格式,svg 图片只支持 aspectFit
|
|
24
|
+
* @default false
|
|
25
|
+
* @supported rn
|
|
26
|
+
*/
|
|
27
|
+
svg?: boolean
|
|
28
|
+
|
|
23
29
|
/** 图片懒加载。只针对 page 与 scroll-view 下的 image 有效
|
|
24
30
|
* @default false
|
|
25
31
|
* @supported weapp, swan, alipay, tt
|
|
@@ -94,7 +100,7 @@ declare namespace ImageProps {
|
|
|
94
100
|
}
|
|
95
101
|
|
|
96
102
|
/** 图片。支持 JPG、PNG、SVG、WEBP、GIF 等格式以及云文件ID。
|
|
97
|
-
*
|
|
103
|
+
*
|
|
98
104
|
* **Note:** 为实现小程序的 `mode` 特性,在 H5 组件中使用一个 `div` 容器来对内部的 `img` 进行展示区域的裁剪,因此请勿使用元素选择器来重置 `img` 的样式!
|
|
99
105
|
* @classification media
|
|
100
106
|
* @supported weapp, h5, rn, swan, alipay, tt
|
|
@@ -104,7 +110,7 @@ declare namespace ImageProps {
|
|
|
104
110
|
* constructor() {
|
|
105
111
|
* super(...arguments)
|
|
106
112
|
* }
|
|
107
|
-
*
|
|
113
|
+
*
|
|
108
114
|
* render() {
|
|
109
115
|
* return (
|
|
110
116
|
* <View className='components-page'>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ComponentType } from 'react'
|
|
2
|
+
import { StandardProps, CommonEventFunction } from './common'
|
|
3
|
+
|
|
4
|
+
type KeyboardAccessoryProps = StandardProps
|
|
5
|
+
|
|
6
|
+
/** 设置 input / textarea 聚焦时键盘上方 cover-view / cover-image 工具栏视图
|
|
7
|
+
*
|
|
8
|
+
* @classification forms
|
|
9
|
+
* @supported weapp
|
|
10
|
+
* @example
|
|
11
|
+
* ```tsx
|
|
12
|
+
* class App extends Component {
|
|
13
|
+
* render () {
|
|
14
|
+
* return (
|
|
15
|
+
* <Textarea holdKeyboard="{{true}}">
|
|
16
|
+
* <KeyboardAccessory className="container" style={{ height: 50 }} >
|
|
17
|
+
* <CoverView onClick={() => { TODO }} style={{ flex: 1, background: 'green' }}>1</CoverView>
|
|
18
|
+
* <CoverView onClick={() => { TODO }} style={{ flex: 1, background: 'red' }}>2</CoverView>
|
|
19
|
+
* </KeyboardAccessory>
|
|
20
|
+
* </Textarea>
|
|
21
|
+
* )
|
|
22
|
+
* }
|
|
23
|
+
* }
|
|
24
|
+
* ```
|
|
25
|
+
* @see https://developers.weixin.qq.com/miniprogram/dev/component/keyboard-accessory.html
|
|
26
|
+
*/
|
|
27
|
+
declare const KeyboardAccessory: ComponentType<KeyboardAccessoryProps>
|
|
28
|
+
|
|
29
|
+
export { KeyboardAccessory, KeyboardAccessoryProps }
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { ComponentType } from 'react'
|
|
2
|
+
import { StandardProps, CommonEventFunction, BaseEventOrigFunction } from './common'
|
|
3
|
+
|
|
4
|
+
interface PageContainerProps extends StandardProps {
|
|
5
|
+
/** 是否显示容器组件
|
|
6
|
+
* @default false
|
|
7
|
+
* @supported weapp
|
|
8
|
+
*/
|
|
9
|
+
show?: boolean
|
|
10
|
+
|
|
11
|
+
/** 动画时长,单位毫秒
|
|
12
|
+
* @default 300
|
|
13
|
+
* @supported weapp
|
|
14
|
+
*/
|
|
15
|
+
duration?: number
|
|
16
|
+
|
|
17
|
+
/** z-index 层级
|
|
18
|
+
* @default 100
|
|
19
|
+
* @supported weapp
|
|
20
|
+
*/
|
|
21
|
+
zIndex?: number
|
|
22
|
+
|
|
23
|
+
/** 是否显示遮罩层
|
|
24
|
+
* @default true
|
|
25
|
+
* @supported weapp
|
|
26
|
+
*/
|
|
27
|
+
overlay?: boolean
|
|
28
|
+
|
|
29
|
+
/** 弹出位置,可选值为 top bottom right center
|
|
30
|
+
* @default bottom
|
|
31
|
+
* @supported weapp
|
|
32
|
+
*/
|
|
33
|
+
position?: keyof PageContainerProps.position
|
|
34
|
+
|
|
35
|
+
/** 是否显示圆角
|
|
36
|
+
* @default false
|
|
37
|
+
* @supported weapp
|
|
38
|
+
*/
|
|
39
|
+
round?: boolean
|
|
40
|
+
|
|
41
|
+
/** 自定义遮罩层样式
|
|
42
|
+
* @default false
|
|
43
|
+
* @supported weapp
|
|
44
|
+
*/
|
|
45
|
+
closeOnSlideDown?: boolean
|
|
46
|
+
|
|
47
|
+
/** 是否在下滑一段距离后关闭
|
|
48
|
+
* @supported weapp
|
|
49
|
+
*/
|
|
50
|
+
overlayStyle?: boolean
|
|
51
|
+
|
|
52
|
+
/** 自定义弹出层样式
|
|
53
|
+
* @supported weapp
|
|
54
|
+
*/
|
|
55
|
+
customStyle?: boolean
|
|
56
|
+
|
|
57
|
+
/** 进入前触发
|
|
58
|
+
* @supported weapp
|
|
59
|
+
*/
|
|
60
|
+
onBeforeEnter?: CommonEventFunction
|
|
61
|
+
|
|
62
|
+
/** 进入中触发
|
|
63
|
+
* @supported weapp
|
|
64
|
+
*/
|
|
65
|
+
onEnter?: CommonEventFunction
|
|
66
|
+
|
|
67
|
+
/** 进入后触发
|
|
68
|
+
* @supported weapp
|
|
69
|
+
*/
|
|
70
|
+
onAfterEnter?: CommonEventFunction
|
|
71
|
+
|
|
72
|
+
/** 离开前触发
|
|
73
|
+
* @supported weapp
|
|
74
|
+
*/
|
|
75
|
+
onBeforeLeave?: CommonEventFunction
|
|
76
|
+
|
|
77
|
+
/** 离开中触发
|
|
78
|
+
* @supported weapp
|
|
79
|
+
*/
|
|
80
|
+
onLeave?: CommonEventFunction
|
|
81
|
+
|
|
82
|
+
/** 离开后触发
|
|
83
|
+
* @supported weapp
|
|
84
|
+
*/
|
|
85
|
+
onAfterLeave?: CommonEventFunction
|
|
86
|
+
|
|
87
|
+
/** 点击遮罩层时触发
|
|
88
|
+
* @supported weapp
|
|
89
|
+
*/
|
|
90
|
+
onClickOverlay?: CommonEventFunction
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
declare namespace PageContainerProps {
|
|
94
|
+
interface position {
|
|
95
|
+
top
|
|
96
|
+
bottom
|
|
97
|
+
left
|
|
98
|
+
right
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/** 页面容器
|
|
103
|
+
*
|
|
104
|
+
* 小程序如果在页面内进行复杂的界面设计(如在页面内弹出半屏的弹窗、在页面内加载一个全屏的子页面等),用户进行返回操作会直接离开当前页面,不符合用户预期,预期应为关闭当前弹出的组件。
|
|
105
|
+
* 为此提供“假页”容器组件,效果类似于 `popup` 弹出层,页面内存在该容器时,当用户进行返回操作,关闭该容器不关闭页面。返回操作包括三种情形,右滑手势、安卓物理返回键和调用 `navigateBack` 接口。
|
|
106
|
+
*
|
|
107
|
+
* Bug & Tip
|
|
108
|
+
* 1. tip: 当前页面最多只有 1 个容器,若已存在容器的情况下,无法增加新的容器
|
|
109
|
+
* 2. tip: wx.navigateBack 无法在页面栈顶调用,此时没有上一级页面
|
|
110
|
+
* @classification viewContainer
|
|
111
|
+
* @see https://developers.weixin.qq.com/miniprogram/dev/component/page-container.html
|
|
112
|
+
*/
|
|
113
|
+
declare const PageContainer: ComponentType<PageContainerProps>
|
|
114
|
+
|
|
115
|
+
export { PageContainer, PageContainerProps }
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { ComponentType } from 'react'
|
|
2
|
+
import { StandardProps, CommonEventFunction } from './common'
|
|
3
|
+
|
|
4
|
+
interface ShareElementProps extends StandardProps {
|
|
5
|
+
/** 映射标记
|
|
6
|
+
* @supported weapp
|
|
7
|
+
*/
|
|
8
|
+
key: string
|
|
9
|
+
|
|
10
|
+
/** 是否进行动画
|
|
11
|
+
* @default false
|
|
12
|
+
* @supported weapp
|
|
13
|
+
*/
|
|
14
|
+
transform?: boolean
|
|
15
|
+
|
|
16
|
+
/** 动画时长,单位毫秒
|
|
17
|
+
* @default 300
|
|
18
|
+
* @supported weapp
|
|
19
|
+
*/
|
|
20
|
+
duration?: number
|
|
21
|
+
|
|
22
|
+
/** css缓动函数
|
|
23
|
+
* @default ease-out
|
|
24
|
+
* @supported weapp
|
|
25
|
+
*/
|
|
26
|
+
easingFunction?: number
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/** 共享元素
|
|
30
|
+
*
|
|
31
|
+
* 共享元素是一种动画形式,类似于 [`flutter Hero`](https://flutterchina.club/animations/hero-animations/) 动画,表现为元素像是在页面间穿越一样。该组件需与 [`page-container`](https://developers.weixin.qq.com/miniprogram/dev/component/page-container.html) 组件结合使用。
|
|
32
|
+
* 使用时需在当前页放置 `share-element` 组件,同时在 `page-container` 容器中放置对应的 `share-element` 组件,对应关系通过属性值 key 映射。当设置 `page-container` `显示时,transform` 属性为 `true` 的共享元素会产生动画。当前页面容器退出时,会产生返回动画。
|
|
33
|
+
* @classification viewContainer
|
|
34
|
+
* @supported weapp
|
|
35
|
+
* @see https://developers.weixin.qq.com/miniprogram/dev/component/share-element.html
|
|
36
|
+
*/
|
|
37
|
+
declare const ShareElement: ComponentType<ShareElementProps>
|
|
38
|
+
|
|
39
|
+
export { ShareElement, ShareElementProps }
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { ComponentType } from 'react'
|
|
2
|
+
import { StandardProps } from './common'
|
|
3
|
+
import { StyleProp, ViewStyle } from 'react-native'
|
|
4
|
+
|
|
5
|
+
interface VoipRoomProps extends StandardProps {
|
|
6
|
+
/** 进入房间用户的 openid
|
|
7
|
+
* @default none
|
|
8
|
+
* @supported weapp, swan, alipay, tt, h5
|
|
9
|
+
*/
|
|
10
|
+
openId?: string
|
|
11
|
+
|
|
12
|
+
/** 对话窗口类型,自身传入 camera,其它用户传入 video
|
|
13
|
+
* @default camera
|
|
14
|
+
* @supported weapp, swan, alipay, tt, h5
|
|
15
|
+
*/
|
|
16
|
+
mode?: keyof VoipRoomProps.mode
|
|
17
|
+
|
|
18
|
+
/** 仅在 mode 为 camera 时有效,前置或后置,值为front, back
|
|
19
|
+
* @default front
|
|
20
|
+
* @supported weapp, swan, alipay, tt, h5
|
|
21
|
+
*/
|
|
22
|
+
devicePosition?: keyof VoipRoomProps.devicePosition
|
|
23
|
+
|
|
24
|
+
/** 创建对话窗口失败时触发
|
|
25
|
+
* @supported weapp
|
|
26
|
+
*/
|
|
27
|
+
onError?: CommonEventFunction
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
namespace VoipRoomProps {
|
|
31
|
+
/** 对话窗口类型 */
|
|
32
|
+
interface mode {
|
|
33
|
+
camera
|
|
34
|
+
video
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/** 摄像头类型 */
|
|
38
|
+
interface devicePosition {
|
|
39
|
+
front
|
|
40
|
+
back
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/** 多人音视频对话
|
|
45
|
+
*
|
|
46
|
+
* 需用户授权 `scope.camera`、`scope.record`。相关接口: [Taro.joinVoIPChat](https://developers.weixin.qq.com/miniprogram/dev/api/media/voip/wx.joinVoIPChat.html)
|
|
47
|
+
* 开通该组件权限后,开发者可在 joinVoIPChat 成功后,获取房间成员的 openid,传递给 voip-room 组件,以显示成员画面。
|
|
48
|
+
* @classification media
|
|
49
|
+
* @supported weapp
|
|
50
|
+
* @example
|
|
51
|
+
* ```tsx
|
|
52
|
+
* export default class PageView extends Component {
|
|
53
|
+
* constructor() {
|
|
54
|
+
* super(...arguments)
|
|
55
|
+
* }
|
|
56
|
+
*
|
|
57
|
+
* render() {
|
|
58
|
+
* return (
|
|
59
|
+
* <VoipRoom
|
|
60
|
+
* openId="{{item}}"
|
|
61
|
+
* mode="{{selfOpenId === item ? 'camera' : 'video'}}">
|
|
62
|
+
* </VoipRoom>
|
|
63
|
+
* )
|
|
64
|
+
* }
|
|
65
|
+
* }
|
|
66
|
+
* ```
|
|
67
|
+
* @see https://developers.weixin.qq.com/miniprogram/dev/component/voip-room.html
|
|
68
|
+
*/
|
|
69
|
+
declare const VoipRoom: ComponentType<VoipRoomProps>
|
|
70
|
+
|
|
71
|
+
export { VoipRoom, VoipRoomProps }
|
package/types/index.d.ts
CHANGED
|
@@ -1,49 +1,75 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export * from './common'
|
|
2
|
+
export * from './event'
|
|
3
|
+
|
|
4
|
+
/** 视图容器 */
|
|
3
5
|
export { Block } from './Block'
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export { MatchMedia } from './MatchMedia'
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
6
|
+
export { CoverImage, CoverImageProps } from './CoverImage'
|
|
7
|
+
export { CoverView, CoverViewProps } from './CoverView'
|
|
8
|
+
export { MatchMedia, MatchMediaProps } from './MatchMedia'
|
|
9
|
+
export { MovableArea, MovableAreaProps } from './MovableArea'
|
|
10
|
+
export { MovableView, MovableViewProps } from './MovableView'
|
|
11
|
+
export { PageContainer, PageContainerProps } from './PageContainer'
|
|
12
|
+
export { ScrollView, ScrollViewProps } from './ScrollView'
|
|
13
|
+
export { ShareElement, ShareElementProps } from './ShareElement'
|
|
14
|
+
export { Swiper, SwiperProps } from './Swiper'
|
|
15
|
+
export { SwiperItem, SwiperItemProps } from './SwiperItem'
|
|
16
|
+
export { View, ViewProps } from './View'
|
|
17
|
+
|
|
18
|
+
/** 基础内容 */
|
|
19
|
+
export { Icon, IconProps } from './Icon'
|
|
20
|
+
export { Progress, ProgressProps } from './Progress'
|
|
21
|
+
export { RichText, RichTextProps } from './RichText'
|
|
22
|
+
export { Text, TextProps } from './Text'
|
|
23
|
+
|
|
24
|
+
/** 表单组件 */
|
|
15
25
|
export { Button, ButtonProps } from './Button'
|
|
16
|
-
export { Checkbox } from './Checkbox'
|
|
17
|
-
export { CheckboxGroup } from './CheckboxGroup'
|
|
18
|
-
export { Editor } from './Editor'
|
|
19
|
-
export { Form } from './Form'
|
|
20
|
-
export { Input } from './Input'
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
26
|
+
export { Checkbox, CheckboxProps } from './Checkbox'
|
|
27
|
+
export { CheckboxGroup, CheckboxGroupProps } from './CheckboxGroup'
|
|
28
|
+
export { Editor, EditorProps } from './Editor'
|
|
29
|
+
export { Form, FormProps } from './Form'
|
|
30
|
+
export { Input, InputProps } from './Input'
|
|
31
|
+
export { KeyboardAccessory, KeyboardAccessoryProps } from './KeyboardAccessory'
|
|
32
|
+
export { Label, LabelProps } from './Label'
|
|
33
|
+
export { Picker, PickerDateProps, PickerTimeProps, PickerRegionProps, PickerSelectorProps, PickerStandardProps, PickerMultiSelectorProps } from './Picker'
|
|
34
|
+
export { PickerView, PickerViewProps } from './PickerView'
|
|
24
35
|
export { PickerViewColumn } from './PickerViewColumn'
|
|
25
|
-
export { Radio } from './Radio'
|
|
26
|
-
export { RadioGroup } from './RadioGroup'
|
|
27
|
-
export { Slider } from './Slider'
|
|
28
|
-
export { Switch } from './Switch'
|
|
29
|
-
export { Textarea } from './Textarea'
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
export {
|
|
33
|
-
export {
|
|
34
|
-
export {
|
|
35
|
-
export {
|
|
36
|
-
export {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
export {
|
|
40
|
-
export {
|
|
41
|
-
export {
|
|
42
|
-
export {
|
|
43
|
-
export {
|
|
44
|
-
export {
|
|
45
|
-
export {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
export
|
|
49
|
-
|
|
36
|
+
export { Radio, RadioProps } from './Radio'
|
|
37
|
+
export { RadioGroup, RadioGroupProps } from './RadioGroup'
|
|
38
|
+
export { Slider, SliderProps } from './Slider'
|
|
39
|
+
export { Switch, SwitchProps } from './Switch'
|
|
40
|
+
export { Textarea, TextareaProps } from './Textarea'
|
|
41
|
+
|
|
42
|
+
/** 导航 */
|
|
43
|
+
export { FunctionalPageNavigator, FunctionalPageNavigatorProps } from './FunctionalPageNavigator'
|
|
44
|
+
export { Navigator, NavigatorProps } from './Navigator'
|
|
45
|
+
export { NavigationBar, NavigationBarProps } from './NavigationBar'
|
|
46
|
+
// export { Tabbar, TabbarProps } from './Tabbar'
|
|
47
|
+
// export { TabbarItem, TabbarProps } from './TabbarItem'
|
|
48
|
+
|
|
49
|
+
/** 媒体组件 */
|
|
50
|
+
export { Audio, AudioProps } from './Audio'
|
|
51
|
+
export { Camera, CameraProps } from './Camera'
|
|
52
|
+
export { Image, ImageProps } from './Image'
|
|
53
|
+
export { LivePlayer, LivePlayerProps } from './LivePlayer'
|
|
54
|
+
export { LivePusher, LivePusherProps } from './LivePusher'
|
|
55
|
+
export { Video, VideoProps } from './Video'
|
|
56
|
+
export { VoipRoom, VoipRoomProps } from './VoipRoom'
|
|
57
|
+
|
|
58
|
+
/** 地图 */
|
|
59
|
+
export { Map, MapProps } from './Map'
|
|
60
|
+
|
|
61
|
+
/** 画布 */
|
|
62
|
+
export { Canvas, CanvasProps } from './Canvas'
|
|
63
|
+
|
|
64
|
+
/** 开放能力 */
|
|
65
|
+
export { Ad, AdProps } from './Ad'
|
|
66
|
+
export { AdCustom, AdCustomProps } from './AdCustom'
|
|
67
|
+
export { OfficialAccount, OfficialAccountProps } from './OfficialAccount'
|
|
68
|
+
export { OpenData, OpenDataProps } from './OpenData'
|
|
69
|
+
export { WebView, WebViewProps } from './WebView'
|
|
70
|
+
|
|
71
|
+
/** 配置节点 */
|
|
72
|
+
export { PageMeta, PageMetaProps } from './PageMeta'
|
|
73
|
+
|
|
74
|
+
export { CustomWrapper, CustomWrapperProps } from './CustomWrapper'
|
|
75
|
+
export { Slot, SlotProps } from './Slot'
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { createSelectorQuery } from '@tarojs/taro'
|
|
2
1
|
/* eslint-disable no-sequences */
|
|
3
2
|
/* eslint-disable no-case-declarations */
|
|
4
3
|
/* eslint-disable no-void */
|
|
5
4
|
/* eslint-disable no-return-assign */
|
|
5
|
+
import Taro from '@tarojs/taro'
|
|
6
|
+
import { getRTLOffsetType } from '../domHelpers'
|
|
6
7
|
import { memoizeOne } from '../memoize'
|
|
7
8
|
import { createElement, PureComponent } from 'react'
|
|
8
9
|
import { cancelTimeout, requestTimeout } from '../timer'
|
|
9
|
-
|
|
10
|
+
|
|
10
11
|
const IS_SCROLLING_DEBOUNCE_INTERVAL = 200
|
|
11
12
|
|
|
12
13
|
const defaultItemKey = (index) => index // In DEV mode, this Set helps us only log a warning once per component instance.
|
|
@@ -21,7 +22,7 @@ export function isRtlFunc ({ direction }) {
|
|
|
21
22
|
return direction === 'rtl'
|
|
22
23
|
}
|
|
23
24
|
export function getRectSize (id, success = () => {}, fail = () => {}) {
|
|
24
|
-
const query = createSelectorQuery()
|
|
25
|
+
const query = Taro.createSelectorQuery()
|
|
25
26
|
query.select(id).boundingClientRect((res) => {
|
|
26
27
|
if (res) {
|
|
27
28
|
success(res)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,c as e,h as a,g as s}from"./p-49ae5efb.js";function i(t){return null!=t?t:""}let h=class{constructor(a){t(this,a),this.onInput=e(this,"input",7),this.onFocus=e(this,"focus",7),this.onBlur=e(this,"blur",7),this.onChange=e(this,"change",7),this.disabled=!1,this.maxlength=140,this.autoFocus=!1,this.nativeProps={},this.hanldeInput=t=>{t.stopPropagation(),this.onInput.emit({value:t.target.value,cursor:t.target.value.length})},this.handleFocus=t=>{this.onFocus.emit({value:t.target.value})},this.handleBlur=t=>{this.onBlur.emit({value:t.target.value})},this.handleChange=t=>{t.stopPropagation(),this.onChange.emit({value:t.target.value})}}componentDidLoad(){Object.defineProperty(this.el,"value",{get:()=>this.textareaRef.value,set:t=>this.value=t,configurable:!0}),this.autoFocus&&this.textareaRef.focus()}render(){const{value:t,placeholder:e,disabled:s,maxlength:h,autoFocus:o,name:r,nativeProps:n,hanldeInput:l,handleFocus:u,handleBlur:c,handleChange:d}=this;return a("textarea",Object.assign({ref:t=>{t&&(this.textareaRef=t)},class:"taro-textarea",value:i(t),placeholder:e,name:r,disabled:s,maxlength:h,autofocus:o,onInput:l,onFocus:u,onBlur:c,onChange:d},n))}get el(){return s(this)}};h.style="taro-textarea-core{display:block;width:300px;height:150px}.taro-textarea{-webkit-appearance:none;cursor:auto;width:100%;height:100%;border:0;display:block;position:relative}.taro-textarea:focus{outline:none}";export{h as taro_textarea_core}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-93748645.system.js"],(function(t){"use strict";var e,a,n,o;return{setters:[function(t){e=t.r;a=t.c;n=t.h;o=t.g}],execute:function(){var r="taro-textarea-core{display:block;width:300px;height:150px}.taro-textarea{-webkit-appearance:none;cursor:auto;width:100%;height:100%;border:0;display:block;position:relative}.taro-textarea:focus{outline:none}";function u(t){return t!==null&&t!==void 0?t:""}var i=t("taro_textarea_core",function(){function t(t){var n=this;e(this,t);this.onInput=a(this,"input",7);this.onFocus=a(this,"focus",7);this.onBlur=a(this,"blur",7);this.onChange=a(this,"change",7);this.disabled=false;this.maxlength=140;this.autoFocus=false;this.nativeProps={};this.hanldeInput=function(t){t.stopPropagation();n.onInput.emit({value:t.target.value,cursor:t.target.value.length})};this.handleFocus=function(t){n.onFocus.emit({value:t.target.value})};this.handleBlur=function(t){n.onBlur.emit({value:t.target.value})};this.handleChange=function(t){t.stopPropagation();n.onChange.emit({value:t.target.value})}}t.prototype.componentDidLoad=function(){var t=this;Object.defineProperty(this.el,"value",{get:function(){return t.textareaRef.value},set:function(e){return t.value=e},configurable:true});this.autoFocus&&this.textareaRef.focus()};t.prototype.render=function(){var t=this;var e=this,a=e.value,o=e.placeholder,r=e.disabled,i=e.maxlength,s=e.autoFocus,l=e.name,h=e.nativeProps,c=e.hanldeInput,f=e.handleFocus,p=e.handleBlur,d=e.handleChange;return n("textarea",Object.assign({ref:function(e){if(e){t.textareaRef=e}},class:"taro-textarea",value:u(a),placeholder:o,name:l,disabled:r,maxlength:i,autofocus:s,onInput:c,onFocus:f,onBlur:p,onChange:d},h))};Object.defineProperty(t.prototype,"el",{get:function(){return o(this)},enumerable:false,configurable:true});return t}());i.style=r}}}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as e,c as s,h as t,H as a}from"./p-49ae5efb.js";import{c as r}from"./p-6967e577.js";const i=require("@tarojs/taro");let o=class{constructor(t){e(this,t),this.onSuccess=s(this,"cuccess",7),this.onFail=s(this,"fail",7),this.onComplete=s(this,"Complete",7),this.openType="navigate",this.isHover=!1,this.delta=0}onClick(){const{openType:e,onSuccess:s,onFail:t,onComplete:a}=this;let r=Promise.resolve();switch(e){case"navigate":r=i.navigateTo({url:this.url});break;case"redirect":r=i.redirectTo({url:this.url});break;case"switchTab":r=i.switchTab({url:this.url});break;case"reLaunch":r=i.reLaunch({url:this.url});break;case"navigateBack":r=i.navigateBack({delta:this.delta});break;case"exit":r=Promise.reject(new Error('navigator:fail 暂不支持"openType: exit"'))}r&&r.then((e=>{s.emit(e)})).catch((e=>{t.emit(e)})).finally((()=>{a.emit()}))}render(){const{isHover:e,hoverClass:s}=this;return t(a,{class:r({[s]:e})})}};o.style=".navigator-hover{background:#efefef}";export{o as taro_navigator_core}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,c as i,h as s,H as e,g as r}from"./p-49ae5efb.js";import{c as h}from"./p-6967e577.js";const a=require("@tarojs/taro");const n="undefined"!=typeof navigator&&/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(navigator.userAgent),o={activate:"release",deactivate:"pull",release:"loading",finish:"finish"};let l=!1;try{const t=Object.defineProperty({},"passive",{get(){l=!0}});window.addEventListener("cancel",(()=>({})),t)}catch(t){}const c=!!l&&{passive:!1};let d=class{constructor(s){t(this,s),this.onRefresh=i(this,"refresh",7),this.prefixCls="rmc-pull-to-refresh",this.distanceToRefresh=50,this.damping=100,this.indicator=o,this.currSt="deactivate",this.dragOnEdge=!1,this._ScreenY=0,this._startScreenY=0,this._lastScreenY=0,this._isMounted=!1,this.triggerPullDownRefresh=t=>{!this.dragOnEdge&&this._isMounted&&(t?(this._lastScreenY=this.distanceToRefresh+1,this.currSt="release",this.setContentStyle(this._lastScreenY)):(this.currSt="finish",this.reset()))},this.init=()=>{const t=this.scrollContainer;this._to={touchstart:this.onTouchStart.bind(this,t),touchmove:this.onTouchMove.bind(this,t),touchend:this.onTouchEnd.bind(this,t),touchcancel:this.onTouchEnd.bind(this,t)},Object.keys(this._to).forEach((i=>{t.addEventListener(i,this._to[i],c)}))},this.destroy=()=>{const t=this.scrollContainer;Object.keys(this._to).forEach((i=>{t.removeEventListener(i,this._to[i])}))},this.onTouchStart=(t,i)=>{this._ScreenY=this._startScreenY=i.touches[0].screenY,this._lastScreenY=this._lastScreenY||0},this.isEdge=t=>{const i=this.scrollContainer;return i&&i===document.body?(document.scrollingElement?document.scrollingElement:document.body).scrollTop<=0:t.scrollTop<=0},this.damp=t=>Math.abs(this._lastScreenY)>this.damping?0:t*(.6*(1-Math.abs(this._ScreenY-this._startScreenY)/window.screen.height)),this.onTouchMove=(t,i)=>{const s=i.touches[0].screenY;if(!(this._startScreenY>s)&&this.isEdge(t)){this.dragOnEdge||(this._ScreenY=this._startScreenY=i.touches[0].screenY,this.dragOnEdge=!0),i.cancelable&&i.preventDefault();const t=Math.round(s-this._ScreenY);this._ScreenY=s,this._lastScreenY+=this.damp(t),this.setContentStyle(this._lastScreenY),Math.abs(this._lastScreenY)<this.distanceToRefresh?"deactivate"!==this.currSt&&(this.currSt="deactivate"):"deactivate"===this.currSt&&(this.currSt="activate"),n&&i.changedTouches[0].clientY<0&&this.onTouchEnd()}},this.onTouchEnd=()=>{this.dragOnEdge&&(this.dragOnEdge=!1),"activate"===this.currSt?(this.currSt="release",this.onRefresh.emit(this),this._lastScreenY=this.distanceToRefresh+1,this.setContentStyle(this._lastScreenY)):"release"===this.currSt?(this._lastScreenY=this.distanceToRefresh+1,this.setContentStyle(this._lastScreenY)):this.reset()},this.reset=()=>{this._lastScreenY=0,this.setContentStyle(0)},this.setContentStyle=t=>{var i,s;this.contentRef&&((i=this.contentRef.style).transform=s=t?`translate3d(0px,${t}px,0)`:"",i.webkitTransform=s,i.MozTransform=s)}}get scrollContainer(){return document.querySelector(".taro-tabbar__panel")||document.body}statusChange(){if("release"===this.currSt){const t=this.el.closest(".taro_page");t&&t.__page&&t.__page.onPullDownRefresh()}}disconnectedCallback(){this.destroy()}componentDidLoad(){this.init(),this._isMounted=!0,a.eventCenter.on("__taroStartPullDownRefresh",(({successHandler:t,errorHandler:i})=>{try{this.triggerPullDownRefresh(!0),t({errMsg:"startPullDownRefresh: ok"})}catch(t){i({errMsg:"startPullDownRefresh: fail"})}})),a.eventCenter.on("__taroStopPullDownRefresh",(({successHandler:t,errorHandler:i})=>{try{this.triggerPullDownRefresh(!1),t({errMsg:"stopPullDownRefresh: ok"})}catch(t){i({errMsg:"stopPullDownRefresh: fail"})}}))}render(){const t=t=>{const{currSt:i,dragOnEdge:e,prefixCls:r}=this,a=h(t,!e&&`${r}-transition`);return s("div",{class:`${r}-content-wrapper`},s("div",{class:a,ref:t=>{this.contentRef=t}},("activate"===i||"release"===i)&&s("div",{class:`${r}-indicator`},s("div",null),s("div",null),s("div",null)),s("slot",null)))};return this.scrollContainer?t(`${this.prefixCls}-content ${this.prefixCls}-down`):s(e,{class:h(this.prefixCls,`${this.prefixCls}-down`)},t(`${this.prefixCls}-content`))}get el(){return r(this)}static get watchers(){return{currSt:["statusChange"]}}};d.style=".rmc-pull-to-refresh-content{-webkit-transform-origin:left top 0px;transform-origin:left top 0px}.rmc-pull-to-refresh-content-wrapper{overflow:hidden}.rmc-pull-to-refresh-transition{-webkit-transition:-webkit-transform 0.3s;transition:-webkit-transform 0.3s;transition:transform 0.3s;transition:transform 0.3s, -webkit-transform 0.3s}@-webkit-keyframes rmc-pull-to-refresh-indicator{50%{opacity:0.2}100%{opacity:1}}@keyframes rmc-pull-to-refresh-indicator{50%{opacity:0.2}100%{opacity:1}}.rmc-pull-to-refresh-indicator{text-align:center;height:30px;line-height:10px}.rmc-pull-to-refresh-indicator>div{background-color:grey;width:6px;height:6px;border-radius:100%;margin:3px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation:rmc-pull-to-refresh-indicator 0.5s 0s infinite linear;animation:rmc-pull-to-refresh-indicator 0.5s 0s infinite linear}.rmc-pull-to-refresh-indicator>div:nth-child(0){-webkit-animation-delay:-0.1s !important;animation-delay:-0.1s !important}.rmc-pull-to-refresh-indicator>div:nth-child(1){-webkit-animation-delay:-0.2s !important;animation-delay:-0.2s !important}.rmc-pull-to-refresh-indicator>div:nth-child(2){-webkit-animation-delay:-0.3s !important;animation-delay:-0.3s !important}.rmc-pull-to-refresh-down .rmc-pull-to-refresh-indicator{margin-top:-25px}";export{d as taro_pull_to_refresh}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-93748645.system.js","./p-696f0d1c.system.js"],(function(e){"use strict";var t,r,n,i,o,s;return{setters:[function(e){t=e.r;r=e.c;n=e.h;i=e.H;o=e.g},function(e){s=e.c}],execute:function(){var a=".rmc-pull-to-refresh-content{-webkit-transform-origin:left top 0px;transform-origin:left top 0px}.rmc-pull-to-refresh-content-wrapper{overflow:hidden}.rmc-pull-to-refresh-transition{-webkit-transition:-webkit-transform 0.3s;transition:-webkit-transform 0.3s;transition:transform 0.3s;transition:transform 0.3s, -webkit-transform 0.3s}@-webkit-keyframes rmc-pull-to-refresh-indicator{50%{opacity:0.2}100%{opacity:1}}@keyframes rmc-pull-to-refresh-indicator{50%{opacity:0.2}100%{opacity:1}}.rmc-pull-to-refresh-indicator{text-align:center;height:30px;line-height:10px}.rmc-pull-to-refresh-indicator>div{background-color:grey;width:6px;height:6px;border-radius:100%;margin:3px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation:rmc-pull-to-refresh-indicator 0.5s 0s infinite linear;animation:rmc-pull-to-refresh-indicator 0.5s 0s infinite linear}.rmc-pull-to-refresh-indicator>div:nth-child(0){-webkit-animation-delay:-0.1s !important;animation-delay:-0.1s !important}.rmc-pull-to-refresh-indicator>div:nth-child(1){-webkit-animation-delay:-0.2s !important;animation-delay:-0.2s !important}.rmc-pull-to-refresh-indicator>div:nth-child(2){-webkit-animation-delay:-0.3s !important;animation-delay:-0.3s !important}.rmc-pull-to-refresh-down .rmc-pull-to-refresh-indicator{margin-top:-25px}";var c=require("@tarojs/taro");function l(e,t){e.transform=t;e.webkitTransform=t;e.MozTransform=t}var f=typeof navigator!=="undefined"&&/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(navigator.userAgent);var u={activate:"release",deactivate:"pull",release:"loading",finish:"finish"};var d=false;try{var h=Object.defineProperty({},"passive",{get:function(){d=true}});window.addEventListener("cancel",(function(){return{}}),h)}catch(e){}var p=d?{passive:false}:false;var m=e("taro_pull_to_refresh",function(){function e(e){var n=this;t(this,e);this.onRefresh=r(this,"refresh",7);this.prefixCls="rmc-pull-to-refresh";this.distanceToRefresh=50;this.damping=100;this.indicator=u;this.currSt="deactivate";this.dragOnEdge=false;this._ScreenY=0;this._startScreenY=0;this._lastScreenY=0;this._isMounted=false;this.triggerPullDownRefresh=function(e){if(!n.dragOnEdge&&n._isMounted){if(e){n._lastScreenY=n.distanceToRefresh+1;n.currSt="release";n.setContentStyle(n._lastScreenY)}else{n.currSt="finish";n.reset()}}};this.init=function(){var e=n.scrollContainer;n._to={touchstart:n.onTouchStart.bind(n,e),touchmove:n.onTouchMove.bind(n,e),touchend:n.onTouchEnd.bind(n,e),touchcancel:n.onTouchEnd.bind(n,e)};Object.keys(n._to).forEach((function(t){e.addEventListener(t,n._to[t],p)}))};this.destroy=function(){var e=n.scrollContainer;Object.keys(n._to).forEach((function(t){e.removeEventListener(t,n._to[t])}))};this.onTouchStart=function(e,t){n._ScreenY=n._startScreenY=t.touches[0].screenY;n._lastScreenY=n._lastScreenY||0};this.isEdge=function(e){var t=n.scrollContainer;if(t&&t===document.body){var r=document.scrollingElement?document.scrollingElement:document.body;return r.scrollTop<=0}return e.scrollTop<=0};this.damp=function(e){if(Math.abs(n._lastScreenY)>n.damping){return 0}var t=Math.abs(n._ScreenY-n._startScreenY)/window.screen.height;e*=(1-t)*.6;return e};this.onTouchMove=function(e,t){var r=t.touches[0].screenY;if(n._startScreenY>r){return}if(n.isEdge(e)){if(!n.dragOnEdge){n._ScreenY=n._startScreenY=t.touches[0].screenY;n.dragOnEdge=true}if(t.cancelable){t.preventDefault()}var i=Math.round(r-n._ScreenY);n._ScreenY=r;n._lastScreenY+=n.damp(i);n.setContentStyle(n._lastScreenY);if(Math.abs(n._lastScreenY)<n.distanceToRefresh){if(n.currSt!=="deactivate"){n.currSt="deactivate"}}else{if(n.currSt==="deactivate"){n.currSt="activate"}}if(f&&t.changedTouches[0].clientY<0){n.onTouchEnd()}}};this.onTouchEnd=function(){if(n.dragOnEdge){n.dragOnEdge=false}if(n.currSt==="activate"){n.currSt="release";n.onRefresh.emit(n);n._lastScreenY=n.distanceToRefresh+1;n.setContentStyle(n._lastScreenY)}else if(n.currSt==="release"){n._lastScreenY=n.distanceToRefresh+1;n.setContentStyle(n._lastScreenY)}else{n.reset()}};this.reset=function(){n._lastScreenY=0;n.setContentStyle(0)};this.setContentStyle=function(e){if(n.contentRef){if(e){l(n.contentRef.style,"translate3d(0px,"+e+"px,0)")}else{l(n.contentRef.style,"")}}}}Object.defineProperty(e.prototype,"scrollContainer",{get:function(){return document.querySelector(".taro-tabbar__panel")||document.body},enumerable:false,configurable:true});e.prototype.statusChange=function(){if(this.currSt==="release"){var e=this.el.closest(".taro_page");if(e&&e.__page){e.__page.onPullDownRefresh()}}};e.prototype.disconnectedCallback=function(){this.destroy()};e.prototype.componentDidLoad=function(){var e=this;this.init();this._isMounted=true;c.eventCenter.on("__taroStartPullDownRefresh",(function(t){var r=t.successHandler,n=t.errorHandler;try{e.triggerPullDownRefresh(true);r({errMsg:"startPullDownRefresh: ok"})}catch(e){n({errMsg:"startPullDownRefresh: fail"})}}));c.eventCenter.on("__taroStopPullDownRefresh",(function(t){var r=t.successHandler,n=t.errorHandler;try{e.triggerPullDownRefresh(false);r({errMsg:"stopPullDownRefresh: ok"})}catch(e){n({errMsg:"stopPullDownRefresh: fail"})}}))};e.prototype.render=function(){var e=this;var t=function(t){var r=e,i=r.currSt,o=r.dragOnEdge,a=r.prefixCls;var c=s(t,!o&&a+"-transition");var l=i==="activate"||i==="release";return n("div",{class:a+"-content-wrapper"},n("div",{class:c,ref:function(t){e.contentRef=t}},l&&n("div",{class:a+"-indicator"},n("div",null),n("div",null),n("div",null)),n("slot",null)))};if(this.scrollContainer){return t(this.prefixCls+"-content "+this.prefixCls+"-down")}return n(i,{class:s(this.prefixCls,this.prefixCls+"-down")},t(this.prefixCls+"-content"))};Object.defineProperty(e.prototype,"el",{get:function(){return o(this)},enumerable:false,configurable:true});Object.defineProperty(e,"watchers",{get:function(){return{currSt:["statusChange"]}},enumerable:false,configurable:true});return e}());m.style=a}}}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-93748645.system.js","./p-696f0d1c.system.js"],(function(e){"use strict";var t,r,i,a,s;return{setters:[function(e){t=e.r;r=e.c;i=e.h;a=e.H},function(e){s=e.c}],execute:function(){var n=".navigator-hover{background:#efefef}";var o=require("@tarojs/taro");var c=e("taro_navigator_core",function(){function e(e){t(this,e);this.onSuccess=r(this,"cuccess",7);this.onFail=r(this,"fail",7);this.onComplete=r(this,"Complete",7);this.openType="navigate";this.isHover=false;this.delta=0}e.prototype.onClick=function(){var e=this,t=e.openType,r=e.onSuccess,i=e.onFail,a=e.onComplete;var s=Promise.resolve();switch(t){case"navigate":s=o.navigateTo({url:this.url});break;case"redirect":s=o.redirectTo({url:this.url});break;case"switchTab":s=o.switchTab({url:this.url});break;case"reLaunch":s=o.reLaunch({url:this.url});break;case"navigateBack":s=o.navigateBack({delta:this.delta});break;case"exit":s=Promise.reject(new Error('navigator:fail 暂不支持"openType: exit"'));break}if(s){s.then((function(e){r.emit(e)})).catch((function(e){i.emit(e)})).finally((function(){a.emit()}))}};e.prototype.render=function(){var e;var t=this,r=t.isHover,n=t.hoverClass;return i(a,{class:s((e={},e[n]=r,e))})};return e}());c.style=n}}}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{h as t,r as a,c as r,H as e,g as o}from"./p-49ae5efb.js";import{c as s}from"./p-6967e577.js";function i(t){return"/"===t.charAt(0)}function b(t,a){for(var r=a,e=r+1,o=t.length;e<o;r+=1,e+=1)t[r]=t[e];t.pop()}const n=t=>{let a,r=t||"";const e={path:null,query:null,fragment:null};return a=r.indexOf("#"),a>-1&&(e.fragment=r.substring(a+1),r=r.substring(0,a)),a=r.indexOf("?"),a>-1&&(e.query=r.substring(a+1),r=r.substring(0,a)),e.path=r,e},h=({index:a,isSelected:r=!1,textColor:e,iconPath:o,badgeText:i,showRedDot:b=!1,text:n,onSelect:h})=>{const l=s("weui-tabbar__item",{"weui-bar__item_on":r});return t("a",{key:a,href:"javascript:;",class:l,onClick:function(){h(a)}},t("span",{style:{display:"inline-block",position:"relative"}},t("img",{src:o,alt:"",class:"weui-tabbar__icon"}),!!i&&t("span",{class:"weui-badge taro-tabbar-badge",style:{position:"absolute",top:"-2px",right:"-13px"}},i),b&&t("span",{class:"weui-badge weui-badge_dot",style:{position:"absolute",top:"0",right:"-6px"}})),t("p",{class:"weui-tabbar__label",style:{color:e}},n))},l=require("@tarojs/taro"),d=t=>"/"===t[0]?t:`/${t}`,c=(t,a)=>((t,a)=>new RegExp("^"+a+"(\\/|\\?|#|$)","i").test(t))(t,a)?t.substr(a.length):t;let _=class{constructor(t){a(this,t),this.onLongPress=r(this,"longpress",7),this.homePage="",this.customRoutes=[],this.tabbarPos="bottom",this.selectedIndex=-1,this.status=0,this.getOriginUrl=t=>{const a=this.customRoutes.filter((([,a])=>n(a).path===n(t).path));return a.length?a[0][0]:t},this.getSelectedIndex=t=>{let a=-1;return this.list.forEach((({pagePath:r},e)=>{n(t).path===n(r).path&&(a=e)})),a},this.switchTab=t=>{this.selectedIndex=t,l.switchTab({url:this.list[t].pagePath})},this.switchTabHandler=({url:t,successHandler:a,errorHandler:r})=>{const e=function(t,a){void 0===a&&(a="");var r,e=t&&t.split("/")||[],o=a&&a.split("/")||[],s=t&&i(t),n=a&&i(a),h=s||n;if(t&&i(t)?o=e:e.length&&(o.pop(),o=o.concat(e)),!o.length)return"/";if(o.length){var l=o[o.length-1];r="."===l||".."===l||""===l}else r=!1;for(var d=0,c=o.length;c>=0;c--){var _=o[c];"."===_?b(o,c):".."===_?(b(o,c),d++):d&&(b(o,c),d--)}if(!h)for(;d--;d)o.unshift("..");!h||""===o[0]||o[0]&&i(o[0])||o.unshift("");var u=o.join("/");return r&&"/"!==u.substr(-1)&&(u+="/"),u}(t,this.getOriginUrl(this.getCurrentUrl()||this.homePage)),o=this.getSelectedIndex(e);o>-1?(this.switchTab(o),a({errMsg:"switchTab:ok"})):r({errMsg:`switchTab:fail page "${e}" is not found`})},this.routerChangeHandler=t=>{let a,r;if(t&&(a=t.toLocation),a&&a.path){const t=d(a.path);r=c("/"===t?this.homePage:t,this.conf.basename||"/")}else r=this.getCurrentUrl();this.selectedIndex=this.getSelectedIndex(this.getOriginUrl(r))},this.setTabBarBadgeHandler=({index:t,text:a,errorHandler:r})=>{t in this.list?(this.list[t].showRedDot=!1,this.list[t].badgeText=a):r({errMsg:"setTabBarBadge:fail tabbar item not found"})},this.removeTabBarBadgeHandler=({index:t,successHandler:a,errorHandler:r})=>{t in this.list?(this.list[t].badgeText=null,this.list[t].badgeText=null,a({errMsg:"removeTabBarBadge:ok"})):r({errMsg:"removeTabBarBadge:fail tabbar item not found"})},this.showTabBarRedDotHandler=({index:t,successHandler:a,errorHandler:r})=>{const e=this.list;t in e?(e[t].badgeText=null,e[t].showRedDot=!0,a({errMsg:"showTabBarRedDot:ok"})):r({errMsg:"showTabBarRedDot:fail tabbar item not found"})},this.hideTabBarRedDotHandler=({index:t,successHandler:a,errorHandler:r})=>{const e=this.list;t in e?(e[t].showRedDot=!1,a({errMsg:"hideTabBarRedDot:ok"})):r({errMsg:"hideTabBarRedDot:fail tabbar item not found"})},this.showTabBarHandler=({successHandler:t})=>{this.status=0,t({errMsg:"showTabBar:ok"})},this.hideTabBarHandler=({animation:t,successHandler:a})=>{this.status=t?2:1,a({errMsg:"hideTabBar:ok"})};const e=this.conf.list,o=this.conf.customRoutes;if("[object Array]"!==Object.prototype.toString.call(e)||e.length<2||e.length>5)throw new Error("tabBar 配置错误");this.homePage=d(this.conf.homePage);for(const t in o)this.customRoutes.push([t,o[t]]);e.forEach((t=>{0!==t.pagePath.indexOf("/")&&(t.pagePath="/"+t.pagePath)})),this.list=e}getCurrentUrl(){const t=this.conf.basename||"/";let a;if("hash"===this.conf.mode){const t=window.location.href,r=t.indexOf("#");a=-1===r?"":t.substring(r+1)}else a=location.pathname;const r=d(c(a,t));return"/"===r?this.homePage:r}bindEvent(){l.eventCenter.on("__taroRouterChange",this.routerChangeHandler),l.eventCenter.on("__taroSwitchTab",this.switchTabHandler),l.eventCenter.on("__taroSetTabBarBadge",this.setTabBarBadgeHandler),l.eventCenter.on("__taroRemoveTabBarBadge",this.removeTabBarBadgeHandler),l.eventCenter.on("__taroShowTabBarRedDotHandler",this.showTabBarRedDotHandler),l.eventCenter.on("__taroHideTabBarRedDotHandler",this.hideTabBarRedDotHandler),l.eventCenter.on("__taroShowTabBar",this.showTabBarHandler),l.eventCenter.on("__taroHideTabBar",this.hideTabBarHandler)}removeEvent(){l.eventCenter.off("__taroRouterChange",this.routerChangeHandler),l.eventCenter.off("__taroSwitchTab",this.switchTabHandler),l.eventCenter.off("__taroSetTabBarBadge",this.setTabBarBadgeHandler),l.eventCenter.off("__taroRemoveTabBarBadge",this.removeTabBarBadgeHandler),l.eventCenter.off("__taroShowTabBarRedDotHandler",this.showTabBarRedDotHandler),l.eventCenter.off("__taroHideTabBarRedDotHandler",this.hideTabBarRedDotHandler),l.eventCenter.off("__taroShowTabBar",this.showTabBarHandler),l.eventCenter.off("__taroHideTabBar",this.hideTabBarHandler)}componentDidLoad(){this.tabbarPos=this.tabbar.nextElementSibling?"top":"bottom",this.bindEvent(),this.routerChangeHandler()}disconnectedCallback(){this.removeEvent()}render(){const{conf:a,tabbarPos:r="bottom"}=this,o=this.status,i=s("weui-tabbar",{[`taro-tabbar__border-${a.borderStyle||"black"}`]:!0});return t(e,{class:s("taro-tabbar__tabbar",`taro-tabbar__tabbar-${r}`,{"taro-tabbar__tabbar-hide":-1===this.selectedIndex||1===o,"taro-tabbar__tabbar-slideout":2===o})},t("div",{class:i,style:{backgroundColor:a.backgroundColor||""}},this.list.map(((r,e)=>{const o=this.selectedIndex===e;let s,i;return o?(s=a.selectedColor,i=r.selectedIconPath):(s=a.color||"",i=r.iconPath),t(h,{index:e,onSelect:this.switchTab.bind(this),isSelected:o,textColor:s,iconPath:i,text:r.text,badgeText:r.badgeText,showRedDot:r.showRedDot})}))))}get tabbar(){return o(this)}};_.style="html,body{height:100%}#app{height:100%}.taro-tabbar__border-white::before{border-top-color:#fff !important}.taro-tabbar__container{display:-ms-flexbox;display:flex;height:100%;-ms-flex-direction:column;flex-direction:column;overflow:hidden}.taro-tabbar__panel{-ms-flex:1;flex:1;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}.taro-tabbar__tabbar{position:relative;height:50px;width:100%;-webkit-transition:bottom 0.2s, top 0.2s;transition:bottom 0.2s, top 0.2s}.taro-tabbar__tabbar-top{top:0}.taro-tabbar__tabbar-bottom{bottom:0}.taro-tabbar__tabbar-hide{display:none}.taro-tabbar__tabbar-slideout{top:-52px;-ms-flex:0 0;flex:0 0}.taro-tabbar__panel+.taro-tabbar__tabbar-slideout{top:auto;bottom:-52px}";export{_ as taro_tabbar}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-93748645.system.js"],(function(e){"use strict";var t,r,n;return{setters:[function(e){t=e.r;r=e.h;n=e.H}],execute:function(){var o=e("taro_cover_view_core",function(){function e(e){t(this,e)}e.prototype.componentDidLoad=function(){console.error("H5 暂不支持 CoverView 组件!")};e.prototype.render=function(){return r(n,null)};return e}())}}}));
|