├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── build └── ci.js ├── cloudfunctions ├── ARDemo │ ├── README.md │ ├── cloud-functions-tools │ │ ├── bin │ │ │ └── svrkit-utils │ │ ├── cli │ │ │ ├── svrkit-utils-template.js │ │ │ └── svrkit-utils.js │ │ ├── package.json │ │ └── test │ │ │ └── svrkit-utils │ │ │ └── example │ │ │ ├── bundle.js │ │ │ ├── proto-utils.js │ │ │ ├── proto │ │ │ ├── demo.proto │ │ │ ├── mmbizsafecenter.proto │ │ │ └── mmbizwxatmpcode.proto │ │ │ ├── svrkit-utils.js │ │ │ ├── svrkit-utils.static.js │ │ │ ├── svrkit-utils.static.json │ │ │ └── svrkit.config.js │ ├── config.json │ ├── index.js │ ├── package.json │ ├── proto │ │ └── mmbizwxaintparDemo.proto │ ├── svrkit-utils.js │ ├── svrkit-utils.static.js │ ├── svrkit-utils.static.json │ ├── svrkit.config.js │ └── wx-server-sdk-wxg-service │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json ├── getServerDataDemo │ ├── index.js │ └── package.json ├── getTempFileURL │ ├── index.js │ └── package.json └── login │ ├── index.js │ └── package.json ├── gulpfile.js ├── miniprogram ├── _commons │ └── 0.js ├── app-bar │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── app-darkmode.json ├── app.js ├── app.json ├── app.wxss ├── assets │ ├── animation │ │ ├── basic-animation.json │ │ ├── gltf-animation.json │ │ ├── last-record-anchor-animation.json │ │ └── miku-kawaii-animation.json │ ├── arrow-down.png │ ├── image │ │ ├── ar-box-border.png │ │ ├── background.png │ │ └── handle.png │ ├── next.png │ ├── play.png │ └── waifu.png ├── common │ ├── common-skyline.wxss │ ├── common.wxss │ ├── foot.wxml │ ├── head.wxml │ ├── index.wxss │ ├── lib │ │ └── weui.wxss │ └── reset.wxss ├── component │ └── navigation-bar │ │ ├── navigation-bar.js │ │ ├── navigation-bar.json │ │ ├── navigation-bar.wxml │ │ └── navigation-bar.wxss ├── components │ ├── app-bar-course │ │ ├── index.json │ │ ├── index.less │ │ ├── index.ts │ │ └── index.wxml │ ├── grid-tile │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── navigation-bar │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── page-scroll │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ └── popup │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss ├── config.js ├── demo.theme.json ├── image │ ├── green_tri.png │ ├── icon64_appwx_logo.png │ ├── icon_API.png │ ├── icon_API_HL.png │ ├── icon_API_dark.png │ ├── icon_cloud.png │ ├── icon_cloud_HL.png │ ├── icon_cloud_dark.png │ ├── icon_component.png │ ├── icon_component_HL.png │ ├── icon_component_dark.png │ ├── icon_foot.png │ ├── location.png │ ├── pause.png │ ├── play.png │ ├── plus.png │ ├── plus_dark.png │ ├── record.png │ ├── share.png │ ├── stop.png │ ├── trash.png │ ├── wechat.png │ └── wechatHL.png ├── package.json ├── packageAPI │ ├── components │ │ └── tdesign-miniprogram │ │ │ ├── cell-group │ │ │ ├── cell-group.d.ts │ │ │ ├── cell-group.js │ │ │ ├── cell-group.json │ │ │ ├── cell-group.wxml │ │ │ ├── cell-group.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── cell │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── cell.d.ts │ │ │ ├── cell.js │ │ │ ├── cell.json │ │ │ ├── cell.wxml │ │ │ ├── cell.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── col │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── col.d.ts │ │ │ ├── col.js │ │ │ ├── col.json │ │ │ ├── col.wxml │ │ │ ├── col.wxs │ │ │ ├── col.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── collapse-panel │ │ │ ├── collapse-panel.d.ts │ │ │ ├── collapse-panel.js │ │ │ ├── collapse-panel.json │ │ │ ├── collapse-panel.wxml │ │ │ ├── collapse-panel.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── collapse │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── collapse.d.ts │ │ │ ├── collapse.js │ │ │ ├── collapse.json │ │ │ ├── collapse.wxml │ │ │ ├── collapse.wxss │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── common │ │ │ ├── bus.d.ts │ │ │ ├── bus.js │ │ │ ├── common.d.ts │ │ │ ├── common.js │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── config.d.ts │ │ │ ├── config.js │ │ │ ├── index.wxss │ │ │ ├── shared │ │ │ │ ├── calendar │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── type.d.ts │ │ │ │ │ └── type.js │ │ │ │ ├── color-picker │ │ │ │ │ ├── cmyk.d.ts │ │ │ │ │ ├── cmyk.js │ │ │ │ │ ├── color.d.ts │ │ │ │ │ ├── color.js │ │ │ │ │ ├── gradient.d.ts │ │ │ │ │ ├── gradient.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ ├── date.d.ts │ │ │ │ └── date.js │ │ │ ├── src │ │ │ │ ├── control.d.ts │ │ │ │ ├── control.js │ │ │ │ ├── flatTool.d.ts │ │ │ │ ├── flatTool.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── instantiationDecorator.d.ts │ │ │ │ ├── instantiationDecorator.js │ │ │ │ ├── superComponent.d.ts │ │ │ │ └── superComponent.js │ │ │ ├── style │ │ │ │ ├── _variables.wxss │ │ │ │ ├── base.wxss │ │ │ │ ├── icons.wxss │ │ │ │ ├── index.wxss │ │ │ │ ├── mixins │ │ │ │ │ ├── _clearfix.wxss │ │ │ │ │ ├── _cursor.wxss │ │ │ │ │ ├── _ellipsis.wxss │ │ │ │ │ ├── _hairline.wxss │ │ │ │ │ └── _index.wxss │ │ │ │ ├── theme │ │ │ │ │ ├── _components.wxss │ │ │ │ │ ├── _dark.wxss │ │ │ │ │ ├── _font.wxss │ │ │ │ │ ├── _index.wxss │ │ │ │ │ ├── _light.wxss │ │ │ │ │ ├── _radius.wxss │ │ │ │ │ └── _spacer.wxss │ │ │ │ └── utilities │ │ │ │ │ ├── _animation.wxss │ │ │ │ │ ├── _float.wxss │ │ │ │ │ └── _index.wxss │ │ │ ├── template │ │ │ │ ├── badge.wxml │ │ │ │ ├── button.wxml │ │ │ │ ├── icon.wxml │ │ │ │ └── image.wxml │ │ │ ├── utils.d.ts │ │ │ ├── utils.js │ │ │ ├── utils.wxs │ │ │ ├── version.d.ts │ │ │ ├── version.js │ │ │ ├── wechat.d.ts │ │ │ └── wechat.js │ │ │ ├── count-down │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── count-down.d.ts │ │ │ ├── count-down.js │ │ │ ├── count-down.json │ │ │ ├── count-down.wxml │ │ │ ├── count-down.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ ├── type.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ │ ├── icon │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── icon.d.ts │ │ │ ├── icon.js │ │ │ ├── icon.json │ │ │ ├── icon.wxml │ │ │ ├── icon.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── image │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── image-info.json │ │ │ ├── image.d.ts │ │ │ ├── image.js │ │ │ ├── image.json │ │ │ ├── image.wxml │ │ │ ├── image.wxss │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── loading │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── loading.d.ts │ │ │ ├── loading.js │ │ │ ├── loading.json │ │ │ ├── loading.wxml │ │ │ ├── loading.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── mixins │ │ │ ├── page-scroll.d.ts │ │ │ ├── page-scroll.js │ │ │ ├── theme-change.d.ts │ │ │ ├── theme-change.js │ │ │ ├── touch.d.ts │ │ │ ├── touch.js │ │ │ ├── transition.d.ts │ │ │ ├── transition.js │ │ │ ├── using-custom-navbar.d.ts │ │ │ └── using-custom-navbar.js │ │ │ ├── navbar │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── navbar.d.ts │ │ │ ├── navbar.js │ │ │ ├── navbar.json │ │ │ ├── navbar.wxml │ │ │ ├── navbar.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── row │ │ │ ├── README.md │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── row.d.ts │ │ │ ├── row.js │ │ │ ├── row.json │ │ │ ├── row.wxml │ │ │ ├── row.wxs │ │ │ ├── row.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── search │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── search.d.ts │ │ │ ├── search.js │ │ │ ├── search.json │ │ │ ├── search.wxml │ │ │ ├── search.wxs │ │ │ ├── search.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── tag │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── tag.d.ts │ │ │ ├── tag.js │ │ │ ├── tag.json │ │ │ ├── tag.wxml │ │ │ ├── tag.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ └── toast │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── toast.d.ts │ │ │ ├── toast.js │ │ │ ├── toast.json │ │ │ ├── toast.wxml │ │ │ ├── toast.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ ├── image │ │ └── icon_foot.png │ └── pages │ │ ├── ai │ │ ├── mobilenet │ │ │ ├── classify.js │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.less │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── mobilenet_int8 │ │ │ ├── classify.js │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.less │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── style-trans │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.less │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── api │ │ ├── choose-address │ │ │ ├── choose-address.js │ │ │ ├── choose-address.json │ │ │ ├── choose-address.wxml │ │ │ └── choose-address.wxss │ │ ├── choose-invoice-title │ │ │ ├── choose-invoice-title.js │ │ │ ├── choose-invoice-title.json │ │ │ ├── choose-invoice-title.wxml │ │ │ └── choose-invoice-title.wxss │ │ ├── custom-message │ │ │ ├── custom-message.js │ │ │ ├── custom-message.json │ │ │ ├── custom-message.wxml │ │ │ └── custom-message.wxss │ │ ├── get-user-info │ │ │ ├── get-user-info.js │ │ │ ├── get-user-info.json │ │ │ ├── get-user-info.wxml │ │ │ └── get-user-info.wxss │ │ ├── jump │ │ │ ├── jump.js │ │ │ ├── jump.json │ │ │ ├── jump.wxml │ │ │ └── jump.wxss │ │ ├── login │ │ │ ├── login.js │ │ │ ├── login.json │ │ │ ├── login.wxml │ │ │ └── login.wxss │ │ ├── request-payment │ │ │ ├── request-payment.js │ │ │ ├── request-payment.json │ │ │ ├── request-payment.wxml │ │ │ └── request-payment.wxss │ │ ├── setting │ │ │ ├── setting.js │ │ │ ├── setting.json │ │ │ ├── setting.wxml │ │ │ └── setting.wxss │ │ ├── share-button │ │ │ ├── share-button.js │ │ │ ├── share-button.json │ │ │ ├── share-button.wxml │ │ │ └── share-button.wxss │ │ ├── share │ │ │ ├── share.js │ │ │ ├── share.json │ │ │ ├── share.wxml │ │ │ └── share.wxss │ │ ├── soter-authentication │ │ │ ├── soter-authentication.js │ │ │ ├── soter-authentication.json │ │ │ ├── soter-authentication.wxml │ │ │ └── soter-authentication.wxss │ │ └── subscribe-message │ │ │ ├── subscribe-message.js │ │ │ ├── subscribe-message.json │ │ │ ├── subscribe-message.wxml │ │ │ └── subscribe-message.wxss │ │ ├── ar │ │ ├── 2dmarker-ar │ │ │ ├── 2dmarker-ar.js │ │ │ ├── 2dmarker-ar.json │ │ │ ├── 2dmarker-ar.wxml │ │ │ └── 2dmarker-ar.wxss │ │ ├── 3dmarker-ar │ │ │ ├── 3dmarker-ar.js │ │ │ ├── 3dmarker-ar.json │ │ │ ├── 3dmarker-ar.wxml │ │ │ ├── 3dmarker-ar.wxss │ │ │ ├── Components │ │ │ │ ├── arModelComponent.js │ │ │ │ ├── arModelComponent.json │ │ │ │ ├── arModelComponent.wxml │ │ │ │ └── arModelComponent.wxss │ │ │ ├── proto │ │ │ │ ├── arModelProto.js │ │ │ │ └── arModelProto.proto │ │ │ └── protobuf │ │ │ │ ├── protobuf.js │ │ │ │ └── src │ │ │ │ ├── EventEmitter.js │ │ │ │ ├── asPromise.js │ │ │ │ ├── base64.js │ │ │ │ ├── common.js │ │ │ │ ├── converter.js │ │ │ │ ├── decoder.js │ │ │ │ ├── encoder.js │ │ │ │ ├── enum.js │ │ │ │ ├── field.js │ │ │ │ ├── float.js │ │ │ │ ├── inquire.js │ │ │ │ ├── long.js │ │ │ │ ├── longBits.js │ │ │ │ ├── mapField.js │ │ │ │ ├── message.js │ │ │ │ ├── method.js │ │ │ │ ├── namespace.js │ │ │ │ ├── object.js │ │ │ │ ├── oneof.js │ │ │ │ ├── parse.js │ │ │ │ ├── path.js │ │ │ │ ├── pool.js │ │ │ │ ├── reader.js │ │ │ │ ├── root.js │ │ │ │ ├── roots.js │ │ │ │ ├── rpc │ │ │ │ └── service.js │ │ │ │ ├── service.js │ │ │ │ ├── tokenize.js │ │ │ │ ├── type.js │ │ │ │ ├── types.js │ │ │ │ ├── utf8.js │ │ │ │ ├── util.js │ │ │ │ ├── verifier.js │ │ │ │ ├── wrappers.js │ │ │ │ └── writer.js │ │ ├── behavior │ │ │ ├── behavior-ar.js │ │ │ ├── behavior-three-shoe.js │ │ │ ├── behavior-three.js │ │ │ └── behavior-xrframe.js │ │ ├── body-detect-3d │ │ │ ├── body-detect-3d.js │ │ │ ├── body-detect-3d.json │ │ │ ├── body-detect-3d.wxml │ │ │ └── body-detect-3d.wxss │ │ ├── body-detect │ │ │ ├── behavior.js │ │ │ ├── body-detect.js │ │ │ ├── body-detect.json │ │ │ ├── body-detect.wxml │ │ │ ├── body-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── cameraBuffer-detect │ │ │ ├── behavior.js │ │ │ ├── cameraBuffer-detect.js │ │ │ ├── cameraBuffer-detect.json │ │ │ ├── cameraBuffer-detect.less │ │ │ ├── cameraBuffer-detect.wxml │ │ │ ├── cameraBuffer-detect.wxss │ │ │ ├── cameraBufferBehavior.js │ │ │ └── yuvBehavior.js │ │ ├── cameraBuffer-jpg │ │ │ ├── cameraBuffer-jpg.js │ │ │ ├── cameraBuffer-jpg.json │ │ │ ├── cameraBuffer-jpg.wxml │ │ │ └── cameraBuffer-jpg.wxss │ │ ├── components │ │ │ ├── xr-frame-render │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── xr-frame │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── depth-detect │ │ │ ├── behavior.js │ │ │ ├── depth-detect.js │ │ │ ├── depth-detect.json │ │ │ ├── depth-detect.wxml │ │ │ ├── depth-detect.wxss │ │ │ ├── depthBehavior.js │ │ │ └── yuvBehavior.js │ │ ├── face-detect-3d-glasses │ │ │ ├── face-detect-3d-glasses.js │ │ │ ├── face-detect-3d-glasses.json │ │ │ ├── face-detect-3d-glasses.wxml │ │ │ └── face-detect-3d-glasses.wxss │ │ ├── face-detect-3d │ │ │ ├── face-detect-3d.js │ │ │ ├── face-detect-3d.json │ │ │ ├── face-detect-3d.wxml │ │ │ └── face-detect-3d.wxss │ │ ├── face-detect │ │ │ ├── behavior.js │ │ │ ├── face-detect.js │ │ │ ├── face-detect.json │ │ │ ├── face-detect.wxml │ │ │ ├── face-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── gaussian-splatting │ │ │ ├── gaussian-splatting-ar.js │ │ │ ├── gaussian-splatting-ar.json │ │ │ ├── gaussian-splatting-ar.wxml │ │ │ ├── gaussian-splatting-ar.wxss │ │ │ ├── gaussian-splatting.js │ │ │ ├── gaussian-splatting.json │ │ │ ├── gaussian-splatting.wxml │ │ │ ├── gaussian-splatting.wxss │ │ │ ├── loaders │ │ │ │ ├── ply │ │ │ │ │ └── ply-loader.js │ │ │ │ ├── splat │ │ │ │ │ └── splat-loader.js │ │ │ │ └── util-loader.js │ │ │ ├── util │ │ │ │ ├── gl-matrix-min.js │ │ │ │ └── render-xrframe.js │ │ │ └── webgl2 │ │ │ │ ├── camera-webGL.js │ │ │ │ ├── cubeInstance-webGL.js │ │ │ │ ├── shaders │ │ │ │ ├── splat_fragment.glsl.js │ │ │ │ ├── splat_rt_fragment.glsl.js │ │ │ │ ├── splat_rt_vertex.glsl.js │ │ │ │ ├── splat_vertex.glsl.js │ │ │ │ ├── yuv_fragment.glsl.js │ │ │ │ └── yuv_vertex.glsl.js │ │ │ │ ├── splat-webGL.js │ │ │ │ └── yuv-webGL.js │ │ ├── hand-detect-3d │ │ │ ├── hand-detect-3d.js │ │ │ ├── hand-detect-3d.json │ │ │ ├── hand-detect-3d.wxml │ │ │ └── hand-detect-3d.wxss │ │ ├── hand-detect │ │ │ ├── behavior.js │ │ │ ├── hand-detect.js │ │ │ ├── hand-detect.json │ │ │ ├── hand-detect.wxml │ │ │ ├── hand-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── loaders │ │ │ ├── gltf-clone.js │ │ │ └── gltf-loader.js │ │ ├── ocr-detect │ │ │ ├── behavior.js │ │ │ ├── ocr-detect.js │ │ │ ├── ocr-detect.json │ │ │ ├── ocr-detect.wxml │ │ │ ├── ocr-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── osd-ar │ │ │ ├── behavior.js │ │ │ ├── choose.png │ │ │ ├── osd-ar.js │ │ │ ├── osd-ar.json │ │ │ ├── osd-ar.wxml │ │ │ ├── osd-ar.wxss │ │ │ └── yuvBehavior.js │ │ ├── photo-body-detect │ │ │ ├── behavior.js │ │ │ ├── photo-body-detect.js │ │ │ ├── photo-body-detect.json │ │ │ ├── photo-body-detect.wxml │ │ │ ├── photo-body-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── photo-depth-detect │ │ │ ├── behavior.js │ │ │ ├── depthBehavior.js │ │ │ ├── photo-depth-detect.js │ │ │ ├── photo-depth-detect.json │ │ │ ├── photo-depth-detect.less │ │ │ ├── photo-depth-detect.wxml │ │ │ ├── photo-depth-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── photo-face-detect │ │ │ ├── behavior.js │ │ │ ├── photo-face-detect.js │ │ │ ├── photo-face-detect.json │ │ │ ├── photo-face-detect.wxml │ │ │ ├── photo-face-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── photo-hand-detect │ │ │ ├── behavior.js │ │ │ ├── photo-hand-detect.js │ │ │ ├── photo-hand-detect.json │ │ │ ├── photo-hand-detect.wxml │ │ │ ├── photo-hand-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── photo-idcard-detect │ │ │ ├── photo-idcard-detect.js │ │ │ ├── photo-idcard-detect.json │ │ │ ├── photo-idcard-detect.wxml │ │ │ └── photo-idcard-detect.wxss │ │ ├── photo-ocr-detect │ │ │ ├── behavior.js │ │ │ ├── photo-ocr-detect.js │ │ │ ├── photo-ocr-detect.json │ │ │ ├── photo-ocr-detect.wxml │ │ │ ├── photo-ocr-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── photo-shoe-detect │ │ │ ├── behavior.js │ │ │ ├── photo-shoe-detect.js │ │ │ ├── photo-shoe-detect.json │ │ │ ├── photo-shoe-detect.less │ │ │ ├── photo-shoe-detect.wxml │ │ │ ├── photo-shoe-detect.wxss │ │ │ └── yuvBehavior.js │ │ ├── plane-ar-3dof │ │ │ ├── behavior.js │ │ │ ├── plane-ar-3dof.js │ │ │ ├── plane-ar-3dof.json │ │ │ ├── plane-ar-3dof.less │ │ │ ├── plane-ar-3dof.wxml │ │ │ ├── plane-ar-3dof.wxss │ │ │ └── yuvBehavior.js │ │ ├── plane-ar-v2-depth │ │ │ ├── behavior.js │ │ │ ├── depthBehavior.js │ │ │ ├── plane-ar-v2-depth.js │ │ │ ├── plane-ar-v2-depth.json │ │ │ ├── plane-ar-v2-depth.wxml │ │ │ ├── plane-ar-v2-depth.wxss │ │ │ └── yuvBehavior.js │ │ ├── plane-ar-v2-marker │ │ │ ├── add.png │ │ │ ├── behavior.js │ │ │ ├── move.gif │ │ │ ├── plane-ar-v2-marker.js │ │ │ ├── plane-ar-v2-marker.json │ │ │ ├── plane-ar-v2-marker.wxml │ │ │ ├── plane-ar-v2-marker.wxss │ │ │ └── yuvBehavior.js │ │ ├── plane-ar-v2-options │ │ │ ├── plane-ar-v2-options.js │ │ │ ├── plane-ar-v2-options.json │ │ │ ├── plane-ar-v2-options.wxml │ │ │ └── plane-ar-v2-options.wxss │ │ ├── plane-ar-v2 │ │ │ ├── behavior.js │ │ │ ├── move.gif │ │ │ ├── plane-ar-v2.js │ │ │ ├── plane-ar-v2.json │ │ │ ├── plane-ar-v2.wxml │ │ │ ├── plane-ar-v2.wxss │ │ │ └── yuvBehavior.js │ │ ├── plane-ar │ │ │ ├── behavior.js │ │ │ ├── plane-ar.js │ │ │ ├── plane-ar.json │ │ │ ├── plane-ar.wxml │ │ │ ├── plane-ar.wxss │ │ │ └── yuvBehavior.js │ │ ├── shoe-detect │ │ │ ├── shoe-detect.js │ │ │ ├── shoe-detect.json │ │ │ ├── shoe-detect.wxml │ │ │ └── shoe-detect.wxss │ │ ├── visionkit-basic-v2 │ │ │ ├── behavior.js │ │ │ ├── visionkit-basic-v2.js │ │ │ ├── visionkit-basic-v2.json │ │ │ ├── visionkit-basic-v2.wxml │ │ │ ├── visionkit-basic-v2.wxss │ │ │ └── yuvBehavior.js │ │ └── visionkit-basic │ │ │ ├── behavior.js │ │ │ ├── visionkit-basic.js │ │ │ ├── visionkit-basic.json │ │ │ ├── visionkit-basic.wxml │ │ │ ├── visionkit-basic.wxss │ │ │ └── yuvBehavior.js │ │ ├── chattool │ │ ├── activity_assist │ │ │ ├── activity_assist.js │ │ │ ├── activity_assist.json │ │ │ ├── activity_assist.less │ │ │ └── activity_assist.wxml │ │ ├── material_open │ │ │ ├── material_open.js │ │ │ ├── material_open.json │ │ │ ├── material_open.less │ │ │ └── material_open.wxml │ │ ├── material_view │ │ │ ├── material_view.js │ │ │ ├── material_view.json │ │ │ ├── material_view.less │ │ │ └── material_view.wxml │ │ └── util.js │ │ ├── device │ │ ├── add-contact │ │ │ ├── add-contact.js │ │ │ ├── add-contact.json │ │ │ ├── add-contact.wxml │ │ │ └── add-contact.wxss │ │ ├── bluetooth │ │ │ ├── bluetooth.js │ │ │ ├── bluetooth.json │ │ │ ├── bluetooth.wxml │ │ │ ├── bluetooth.wxss │ │ │ └── slave │ │ │ │ ├── slave.js │ │ │ │ ├── slave.json │ │ │ │ ├── slave.wxml │ │ │ │ └── slave.wxss │ │ ├── capture-screen │ │ │ ├── capture-screen.js │ │ │ ├── capture-screen.json │ │ │ ├── capture-screen.wxml │ │ │ └── capture-screen.wxss │ │ ├── clipboard-data │ │ │ ├── clipboard-data.js │ │ │ ├── clipboard-data.json │ │ │ ├── clipboard-data.wxml │ │ │ └── clipboard-data.wxss │ │ ├── get-battery-info │ │ │ ├── get-battery-info.js │ │ │ ├── get-battery-info.json │ │ │ ├── get-battery-info.wxml │ │ │ └── get-battery-info.wxss │ │ ├── get-network-type │ │ │ ├── get-network-type.js │ │ │ ├── get-network-type.json │ │ │ ├── get-network-type.wxml │ │ │ └── get-network-type.wxss │ │ ├── get-system-info │ │ │ ├── get-system-info.js │ │ │ ├── get-system-info.json │ │ │ ├── get-system-info.wxml │ │ │ └── get-system-info.wxss │ │ ├── ibeacon │ │ │ ├── ibeacon.js │ │ │ ├── ibeacon.json │ │ │ ├── ibeacon.wxml │ │ │ └── ibeacon.wxss │ │ ├── make-phone-call │ │ │ ├── make-phone-call.js │ │ │ ├── make-phone-call.json │ │ │ ├── make-phone-call.wxml │ │ │ └── make-phone-call.wxss │ │ ├── on-accelerometer-change │ │ │ ├── on-accelerometer-change.js │ │ │ ├── on-accelerometer-change.json │ │ │ ├── on-accelerometer-change.wxml │ │ │ └── on-accelerometer-change.wxss │ │ ├── on-compass-change │ │ │ ├── compass.png │ │ │ ├── on-compass-change.js │ │ │ ├── on-compass-change.json │ │ │ ├── on-compass-change.wxml │ │ │ └── on-compass-change.wxss │ │ ├── on-network-status-change │ │ │ ├── on-network-status-change.js │ │ │ ├── on-network-status-change.json │ │ │ ├── on-network-status-change.wxml │ │ │ └── on-network-status-change.wxss │ │ ├── scan-code │ │ │ ├── scan-code.js │ │ │ ├── scan-code.json │ │ │ ├── scan-code.wxml │ │ │ └── scan-code.wxss │ │ ├── screen-brightness │ │ │ ├── screen-brightness.js │ │ │ ├── screen-brightness.json │ │ │ ├── screen-brightness.wxml │ │ │ └── screen-brightness.wxss │ │ ├── vibrate │ │ │ ├── vibrate.js │ │ │ ├── vibrate.json │ │ │ ├── vibrate.wxml │ │ │ └── vibrate.wxss │ │ └── wifi │ │ │ ├── wifi.js │ │ │ ├── wifi.json │ │ │ ├── wifi.wxml │ │ │ └── wifi.wxss │ │ ├── framework │ │ ├── resizable │ │ │ ├── resizable.js │ │ │ ├── resizable.json │ │ │ ├── resizable.wxml │ │ │ ├── resizable.wxs │ │ │ └── resizable.wxss │ │ ├── two-way-bindings │ │ │ ├── two-way-bindings.js │ │ │ ├── two-way-bindings.json │ │ │ ├── two-way-bindings.wxml │ │ │ └── two-way-bindings.wxss │ │ └── wxs │ │ │ ├── image │ │ │ ├── 1.jpeg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ └── btn.png │ │ │ ├── movable.js │ │ │ ├── movable.json │ │ │ ├── movable.wxml │ │ │ ├── movable.wxs │ │ │ ├── movable.wxss │ │ │ ├── nearby.js │ │ │ ├── nearby.json │ │ │ ├── nearby.wxml │ │ │ ├── nearby.wxs │ │ │ ├── nearby.wxss │ │ │ ├── sidebar.js │ │ │ ├── sidebar.json │ │ │ ├── sidebar.wxml │ │ │ ├── sidebar.wxs │ │ │ ├── sidebar.wxss │ │ │ ├── stick-top.js │ │ │ ├── stick-top.json │ │ │ ├── stick-top.wxml │ │ │ ├── stick-top.wxs │ │ │ ├── stick-top.wxss │ │ │ ├── wxs.js │ │ │ ├── wxs.json │ │ │ ├── wxs.wxml │ │ │ └── wxs.wxss │ │ ├── location │ │ ├── choose-location │ │ │ ├── choose-location.js │ │ │ ├── choose-location.json │ │ │ ├── choose-location.wxml │ │ │ └── choose-location.wxss │ │ ├── get-location │ │ │ ├── get-location.js │ │ │ ├── get-location.json │ │ │ ├── get-location.wxml │ │ │ └── get-location.wxss │ │ └── open-location │ │ │ ├── open-location.js │ │ │ ├── open-location.json │ │ │ ├── open-location.wxml │ │ │ └── open-location.wxss │ │ ├── media │ │ ├── audio │ │ │ ├── audio.js │ │ │ ├── audio.json │ │ │ ├── audio.wxml │ │ │ └── audio.wxss │ │ ├── background-audio │ │ │ ├── background-audio.js │ │ │ ├── background-audio.json │ │ │ ├── background-audio.wxml │ │ │ └── background-audio.wxss │ │ ├── file │ │ │ ├── file.js │ │ │ ├── file.json │ │ │ ├── file.wxml │ │ │ └── file.wxss │ │ ├── image │ │ │ ├── image.js │ │ │ ├── image.json │ │ │ ├── image.wxml │ │ │ └── image.wxss │ │ ├── load-font-face │ │ │ ├── load-font-face.js │ │ │ ├── load-font-face.json │ │ │ ├── load-font-face.wxml │ │ │ └── load-font-face.wxss │ │ ├── media-container │ │ │ ├── media-container.js │ │ │ ├── media-container.json │ │ │ ├── media-container.wxml │ │ │ └── media-container.wxss │ │ ├── video │ │ │ ├── video.js │ │ │ ├── video.json │ │ │ ├── video.wxml │ │ │ └── video.wxss │ │ └── voice │ │ │ ├── voice.js │ │ │ ├── voice.json │ │ │ ├── voice.wxml │ │ │ └── voice.wxss │ │ ├── network │ │ ├── download-file │ │ │ ├── download-file.js │ │ │ ├── download-file.json │ │ │ ├── download-file.wxml │ │ │ └── download-file.wxss │ │ ├── mdns │ │ │ ├── mdns.js │ │ │ ├── mdns.json │ │ │ ├── mdns.wxml │ │ │ └── mdns.wxss │ │ ├── request │ │ │ ├── request.js │ │ │ ├── request.json │ │ │ ├── request.wxml │ │ │ └── request.wxss │ │ ├── udp-socket │ │ │ ├── udp-socket.js │ │ │ ├── udp-socket.json │ │ │ ├── udp-socket.wxml │ │ │ └── udp-socket.wxss │ │ ├── upload-file │ │ │ ├── upload-file.js │ │ │ ├── upload-file.json │ │ │ ├── upload-file.wxml │ │ │ └── upload-file.wxss │ │ └── web-socket │ │ │ ├── web-socket.js │ │ │ ├── web-socket.json │ │ │ ├── web-socket.wxml │ │ │ └── web-socket.wxss │ │ ├── nouse │ │ ├── custom-service │ │ │ ├── custom-service.js │ │ │ ├── custom-service.json │ │ │ ├── custom-service.wxml │ │ │ └── custom-service.wxss │ │ ├── doc-web-view │ │ │ ├── doc-web-view.js │ │ │ ├── doc-web-view.json │ │ │ ├── doc-web-view.wxml │ │ │ └── doc-web-view.wxss │ │ └── sendMessage │ │ │ ├── sendMessage.js │ │ │ ├── sendMessage.json │ │ │ ├── sendMessage.wxml │ │ │ └── sendMessage.wxss │ │ ├── page │ │ ├── action-sheet │ │ │ ├── action-sheet.js │ │ │ ├── action-sheet.json │ │ │ ├── action-sheet.wxml │ │ │ └── action-sheet.wxss │ │ ├── animation │ │ │ ├── animation.js │ │ │ ├── animation.json │ │ │ ├── animation.wxml │ │ │ └── animation.wxss │ │ ├── canvas │ │ │ ├── canvas.js │ │ │ ├── canvas.json │ │ │ ├── canvas.wxml │ │ │ ├── canvas.wxss │ │ │ └── example.js │ │ ├── get-wxml-node-info │ │ │ ├── get-wxml-node-info.js │ │ │ ├── get-wxml-node-info.json │ │ │ ├── get-wxml-node-info.wxml │ │ │ └── get-wxml-node-info.wxss │ │ ├── intersection-observer │ │ │ ├── intersection-observer.js │ │ │ ├── intersection-observer.json │ │ │ ├── intersection-observer.wxml │ │ │ └── intersection-observer.wxss │ │ ├── modal │ │ │ ├── modal.js │ │ │ ├── modal.json │ │ │ ├── modal.wxml │ │ │ └── modal.wxss │ │ ├── navigation-bar-loading │ │ │ ├── navigation-bar-loading.js │ │ │ ├── navigation-bar-loading.json │ │ │ ├── navigation-bar-loading.wxml │ │ │ └── navigation-bar-loading.wxss │ │ ├── navigator │ │ │ ├── navigator.js │ │ │ ├── navigator.json │ │ │ ├── navigator.wxml │ │ │ └── navigator.wxss │ │ ├── page-scroll │ │ │ ├── page-scroll.js │ │ │ ├── page-scroll.json │ │ │ ├── page-scroll.wxml │ │ │ └── page-scroll.wxss │ │ ├── pull-down-refresh │ │ │ ├── pull-down-refresh.js │ │ │ ├── pull-down-refresh.json │ │ │ ├── pull-down-refresh.wxml │ │ │ └── pull-down-refresh.wxss │ │ ├── set-navigation-bar-title │ │ │ ├── set-navigation-bar-title.js │ │ │ ├── set-navigation-bar-title.json │ │ │ ├── set-navigation-bar-title.wxml │ │ │ └── set-navigation-bar-title.wxss │ │ └── toast │ │ │ ├── toast.js │ │ │ ├── toast.json │ │ │ ├── toast.wxml │ │ │ └── toast.wxss │ │ ├── performance │ │ └── get-performance │ │ │ ├── get-performance.js │ │ │ ├── get-performance.json │ │ │ ├── get-performance.wxml │ │ │ ├── get-performance.wxss │ │ │ └── util.js │ │ ├── storage │ │ ├── get-background-fetch-data │ │ │ ├── get-background-fetch-data.js │ │ │ ├── get-background-fetch-data.json │ │ │ ├── get-background-fetch-data.wxml │ │ │ └── get-background-fetch-data.wxss │ │ ├── get-background-prefetch-data │ │ │ ├── get-background-prefetch-data.js │ │ │ ├── get-background-prefetch-data.json │ │ │ ├── get-background-prefetch-data.wxml │ │ │ └── get-background-prefetch-data.wxss │ │ └── storage │ │ │ ├── storage.js │ │ │ ├── storage.json │ │ │ ├── storage.wxml │ │ │ └── storage.wxss │ │ └── worker │ │ └── worker │ │ ├── worker.js │ │ ├── worker.json │ │ ├── worker.wxml │ │ ├── worker.wxss │ │ └── worker │ │ ├── worker.js │ │ ├── worker.json │ │ ├── worker.wxml │ │ └── worker.wxss ├── packageChatTool │ ├── components │ │ ├── apiCategory │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── tdesign-miniprogram │ │ │ ├── .wechatide.ib.json │ │ │ ├── badge │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── badge.d.ts │ │ │ ├── badge.js │ │ │ ├── badge.json │ │ │ ├── badge.wxml │ │ │ ├── badge.wxs │ │ │ ├── badge.wxss │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── button │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── button.d.ts │ │ │ ├── button.js │ │ │ ├── button.json │ │ │ ├── button.wxml │ │ │ ├── button.wxss │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── cell-group │ │ │ ├── cell-group.d.ts │ │ │ ├── cell-group.js │ │ │ ├── cell-group.json │ │ │ ├── cell-group.wxml │ │ │ ├── cell-group.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── cell │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── cell.d.ts │ │ │ ├── cell.js │ │ │ ├── cell.json │ │ │ ├── cell.wxml │ │ │ ├── cell.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── checkbox-group │ │ │ ├── checkbox-group.d.ts │ │ │ ├── checkbox-group.js │ │ │ ├── checkbox-group.json │ │ │ ├── checkbox-group.wxml │ │ │ ├── checkbox-group.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── checkbox │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── checkbox.d.ts │ │ │ ├── checkbox.js │ │ │ ├── checkbox.json │ │ │ ├── checkbox.wxml │ │ │ ├── checkbox.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── common │ │ │ ├── bus.d.ts │ │ │ ├── bus.js │ │ │ ├── common.d.ts │ │ │ ├── common.js │ │ │ ├── component.d.ts │ │ │ ├── component.js │ │ │ ├── config.d.ts │ │ │ ├── config.js │ │ │ ├── index.wxss │ │ │ ├── shared │ │ │ │ ├── calendar │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── type.d.ts │ │ │ │ │ └── type.js │ │ │ │ ├── color-picker │ │ │ │ │ ├── cmyk.d.ts │ │ │ │ │ ├── cmyk.js │ │ │ │ │ ├── color.d.ts │ │ │ │ │ ├── color.js │ │ │ │ │ ├── gradient.d.ts │ │ │ │ │ ├── gradient.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ ├── date.d.ts │ │ │ │ └── date.js │ │ │ ├── src │ │ │ │ ├── control.d.ts │ │ │ │ ├── control.js │ │ │ │ ├── flatTool.d.ts │ │ │ │ ├── flatTool.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── instantiationDecorator.d.ts │ │ │ │ ├── instantiationDecorator.js │ │ │ │ ├── superComponent.d.ts │ │ │ │ └── superComponent.js │ │ │ ├── style │ │ │ │ ├── _variables.wxss │ │ │ │ ├── base.wxss │ │ │ │ ├── icons.wxss │ │ │ │ ├── index.wxss │ │ │ │ ├── mixins │ │ │ │ │ ├── _clearfix.wxss │ │ │ │ │ ├── _cursor.wxss │ │ │ │ │ ├── _ellipsis.wxss │ │ │ │ │ ├── _hairline.wxss │ │ │ │ │ └── _index.wxss │ │ │ │ ├── theme │ │ │ │ │ ├── _components.wxss │ │ │ │ │ ├── _dark.wxss │ │ │ │ │ ├── _font.wxss │ │ │ │ │ ├── _index.wxss │ │ │ │ │ ├── _light.wxss │ │ │ │ │ ├── _radius.wxss │ │ │ │ │ └── _spacer.wxss │ │ │ │ └── utilities │ │ │ │ │ ├── _animation.wxss │ │ │ │ │ ├── _float.wxss │ │ │ │ │ └── _index.wxss │ │ │ ├── template │ │ │ │ ├── badge.wxml │ │ │ │ ├── button.wxml │ │ │ │ ├── icon.wxml │ │ │ │ └── image.wxml │ │ │ ├── utils.d.ts │ │ │ ├── utils.js │ │ │ ├── utils.wxs │ │ │ ├── version.d.ts │ │ │ ├── version.js │ │ │ ├── wechat.d.ts │ │ │ └── wechat.js │ │ │ ├── divider │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── divider.d.ts │ │ │ ├── divider.js │ │ │ ├── divider.json │ │ │ ├── divider.wxml │ │ │ ├── divider.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── empty │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── empty.d.ts │ │ │ ├── empty.js │ │ │ ├── empty.json │ │ │ ├── empty.wxml │ │ │ ├── empty.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── icon │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── icon.d.ts │ │ │ ├── icon.js │ │ │ ├── icon.json │ │ │ ├── icon.wxml │ │ │ ├── icon.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── image │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── image-info.json │ │ │ ├── image.d.ts │ │ │ ├── image.js │ │ │ ├── image.json │ │ │ ├── image.wxml │ │ │ ├── image.wxss │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── indexes │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── indexes.d.ts │ │ │ ├── indexes.js │ │ │ ├── indexes.json │ │ │ ├── indexes.wxml │ │ │ ├── indexes.wxs │ │ │ ├── indexes.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── loading │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── loading.d.ts │ │ │ ├── loading.js │ │ │ ├── loading.json │ │ │ ├── loading.wxml │ │ │ ├── loading.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── mixins │ │ │ ├── page-scroll.d.ts │ │ │ ├── page-scroll.js │ │ │ ├── theme-change.d.ts │ │ │ ├── theme-change.js │ │ │ ├── touch.d.ts │ │ │ ├── touch.js │ │ │ ├── transition.d.ts │ │ │ ├── transition.js │ │ │ ├── using-custom-navbar.d.ts │ │ │ └── using-custom-navbar.js │ │ │ ├── navbar │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── navbar.d.ts │ │ │ ├── navbar.js │ │ │ ├── navbar.json │ │ │ ├── navbar.wxml │ │ │ ├── navbar.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── progress │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── progress.d.ts │ │ │ ├── progress.js │ │ │ ├── progress.json │ │ │ ├── progress.wxml │ │ │ ├── progress.wxs │ │ │ ├── progress.wxss │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── type.d.ts │ │ │ ├── type.js │ │ │ ├── utils.d.ts │ │ │ └── utils.js │ │ │ ├── radio-group │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── radio-group.d.ts │ │ │ ├── radio-group.js │ │ │ ├── radio-group.json │ │ │ ├── radio-group.wxml │ │ │ ├── radio-group.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── radio │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── radio.d.ts │ │ │ ├── radio.js │ │ │ ├── radio.json │ │ │ ├── radio.wxml │ │ │ ├── radio.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── slider │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── slider.d.ts │ │ │ ├── slider.js │ │ │ ├── slider.json │ │ │ ├── slider.wxml │ │ │ ├── slider.wxs │ │ │ ├── slider.wxss │ │ │ ├── tool.d.ts │ │ │ ├── tool.js │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── sticky │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── sticky.d.ts │ │ │ ├── sticky.js │ │ │ ├── sticky.json │ │ │ ├── sticky.wxml │ │ │ ├── sticky.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── switch │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── switch.d.ts │ │ │ ├── switch.js │ │ │ ├── switch.json │ │ │ ├── switch.wxml │ │ │ ├── switch.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ ├── tab-panel │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── tab-panel.d.ts │ │ │ ├── tab-panel.js │ │ │ ├── tab-panel.json │ │ │ ├── tab-panel.wxml │ │ │ ├── tab-panel.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ │ │ └── tabs │ │ │ ├── README.en-US.md │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ ├── props.js │ │ │ ├── tabs.d.ts │ │ │ ├── tabs.js │ │ │ ├── tabs.json │ │ │ ├── tabs.wxml │ │ │ ├── tabs.wxs │ │ │ ├── tabs.wxss │ │ │ ├── type.d.ts │ │ │ └── type.js │ ├── entry.js │ ├── pages │ │ ├── activity_create │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── activity_detail │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ └── util.js ├── packageCloud │ ├── pages │ │ ├── database │ │ │ ├── crud │ │ │ │ ├── crud.js │ │ │ │ ├── crud.json │ │ │ │ ├── crud.wxml │ │ │ │ └── crud.wxss │ │ │ ├── db-permission │ │ │ │ ├── db-permission.js │ │ │ │ ├── db-permission.json │ │ │ │ ├── db-permission.wxml │ │ │ │ └── db-permission.wxss │ │ │ └── server-date │ │ │ │ ├── server-date.js │ │ │ │ ├── server-date.json │ │ │ │ ├── server-date.wxml │ │ │ │ └── server-date.wxss │ │ ├── nouse │ │ │ ├── crud-detail │ │ │ │ ├── crud-detail.js │ │ │ │ ├── crud-detail.json │ │ │ │ ├── crud-detail.wxml │ │ │ │ └── crud-detail.wxss │ │ │ └── doc-web-view │ │ │ │ ├── doc-web-view.js │ │ │ │ ├── doc-web-view.json │ │ │ │ ├── doc-web-view.wxml │ │ │ │ └── doc-web-view.wxss │ │ ├── scf │ │ │ ├── get-wx-context │ │ │ │ ├── get-wx-context.js │ │ │ │ ├── get-wx-context.json │ │ │ │ ├── get-wx-context.wxml │ │ │ │ └── get-wx-context.wxss │ │ │ ├── scf-database │ │ │ │ ├── scf-database.js │ │ │ │ ├── scf-database.json │ │ │ │ ├── scf-database.wxml │ │ │ │ └── scf-database.wxss │ │ │ ├── scf-openapi │ │ │ │ ├── scf-openapi.js │ │ │ │ ├── scf-openapi.json │ │ │ │ ├── scf-openapi.wxml │ │ │ │ └── scf-openapi.wxss │ │ │ └── scf-storage │ │ │ │ ├── scf-storage.js │ │ │ │ ├── scf-storage.json │ │ │ │ ├── scf-storage.wxml │ │ │ │ └── scf-storage.wxss │ │ ├── storage │ │ │ ├── cloud-file-component │ │ │ │ ├── cloud-file-component.js │ │ │ │ ├── cloud-file-component.json │ │ │ │ ├── cloud-file-component.wxml │ │ │ │ └── cloud-file-component.wxss │ │ │ ├── delete-file │ │ │ │ ├── delete-file.js │ │ │ │ ├── delete-file.json │ │ │ │ ├── delete-file.wxml │ │ │ │ └── delete-file.wxss │ │ │ ├── download-file │ │ │ │ ├── download-file.js │ │ │ │ ├── download-file.json │ │ │ │ ├── download-file.wxml │ │ │ │ └── download-file.wxss │ │ │ ├── get-temp-file-url │ │ │ │ ├── get-temp-file-url.js │ │ │ │ ├── get-temp-file-url.json │ │ │ │ ├── get-temp-file-url.wxml │ │ │ │ └── get-temp-file-url.wxss │ │ │ └── upload-file │ │ │ │ ├── upload-file.js │ │ │ │ ├── upload-file.json │ │ │ │ ├── upload-file.wxml │ │ │ │ └── upload-file.wxss │ │ └── user │ │ │ └── user-authentication │ │ │ ├── user-authentication.js │ │ │ ├── user-authentication.json │ │ │ ├── user-authentication.wxml │ │ │ └── user-authentication.wxss │ └── resources │ │ ├── db_dump │ │ ├── perm1.json │ │ ├── perm2.json │ │ ├── perm3.json │ │ └── perm4.json │ │ └── kind │ │ ├── database.png │ │ ├── database_dark.png │ │ ├── logo.png │ │ ├── scf.png │ │ ├── scf_dark.png │ │ ├── storage.png │ │ ├── storage_dark.png │ │ ├── user.png │ │ └── user_dark.png ├── packageComponent │ ├── pages │ │ ├── canvas │ │ │ ├── canvas-2d │ │ │ │ ├── canvas-2d.js │ │ │ │ ├── canvas-2d.json │ │ │ │ ├── canvas-2d.wxml │ │ │ │ ├── canvas-2d.wxss │ │ │ │ └── car.png │ │ │ ├── canvas │ │ │ │ ├── canvas.js │ │ │ │ ├── canvas.json │ │ │ │ ├── canvas.wxml │ │ │ │ └── canvas.wxss │ │ │ └── webgl │ │ │ │ ├── webgl.js │ │ │ │ ├── webgl.json │ │ │ │ ├── webgl.wxml │ │ │ │ └── webgl.wxss │ │ ├── content │ │ │ ├── icon │ │ │ │ ├── icon.js │ │ │ │ ├── icon.json │ │ │ │ ├── icon.wxml │ │ │ │ └── icon.wxss │ │ │ ├── progress │ │ │ │ ├── progress.js │ │ │ │ ├── progress.json │ │ │ │ ├── progress.wxml │ │ │ │ └── progress.wxss │ │ │ ├── rich-text │ │ │ │ ├── rich-text.js │ │ │ │ ├── rich-text.json │ │ │ │ ├── rich-text.wxml │ │ │ │ └── rich-text.wxss │ │ │ ├── selection │ │ │ │ ├── selection.js │ │ │ │ ├── selection.json │ │ │ │ ├── selection.wxml │ │ │ │ └── selection.wxss │ │ │ └── text │ │ │ │ ├── text.js │ │ │ │ ├── text.json │ │ │ │ ├── text.wxml │ │ │ │ └── text.wxss │ │ ├── doc-web-view │ │ │ ├── doc-web-view.js │ │ │ ├── doc-web-view.json │ │ │ ├── doc-web-view.wxml │ │ │ └── doc-web-view.wxss │ │ ├── form │ │ │ ├── button │ │ │ │ ├── button.js │ │ │ │ ├── button.json │ │ │ │ ├── button.wxml │ │ │ │ └── button.wxss │ │ │ ├── checkbox │ │ │ │ ├── checkbox.js │ │ │ │ ├── checkbox.json │ │ │ │ ├── checkbox.wxml │ │ │ │ └── checkbox.wxss │ │ │ ├── editor │ │ │ │ ├── assets │ │ │ │ │ └── iconfont.wxss │ │ │ │ ├── editor.js │ │ │ │ ├── editor.json │ │ │ │ ├── editor.wxml │ │ │ │ └── editor.wxss │ │ │ ├── form │ │ │ │ ├── form.js │ │ │ │ ├── form.json │ │ │ │ ├── form.wxml │ │ │ │ └── form.wxss │ │ │ ├── input │ │ │ │ ├── input.js │ │ │ │ ├── input.json │ │ │ │ ├── input.wxml │ │ │ │ └── input.wxss │ │ │ ├── label │ │ │ │ ├── label.js │ │ │ │ ├── label.json │ │ │ │ ├── label.wxml │ │ │ │ └── label.wxss │ │ │ ├── picker-view │ │ │ │ ├── picker-view.js │ │ │ │ ├── picker-view.json │ │ │ │ ├── picker-view.wxml │ │ │ │ └── picker-view.wxss │ │ │ ├── picker │ │ │ │ ├── picker.js │ │ │ │ ├── picker.json │ │ │ │ ├── picker.wxml │ │ │ │ └── picker.wxss │ │ │ ├── radio │ │ │ │ ├── radio.js │ │ │ │ ├── radio.json │ │ │ │ ├── radio.wxml │ │ │ │ └── radio.wxss │ │ │ ├── slider │ │ │ │ ├── slider.js │ │ │ │ ├── slider.json │ │ │ │ ├── slider.wxml │ │ │ │ └── slider.wxss │ │ │ ├── switch │ │ │ │ ├── switch.js │ │ │ │ ├── switch.json │ │ │ │ ├── switch.wxml │ │ │ │ └── switch.wxss │ │ │ └── textarea │ │ │ │ ├── textarea.js │ │ │ │ ├── textarea.json │ │ │ │ ├── textarea.wxml │ │ │ │ └── textarea.wxss │ │ ├── map-styles │ │ │ ├── map-styles.js │ │ │ ├── map-styles.json │ │ │ ├── map-styles.wxml │ │ │ └── map-styles.wxss │ │ ├── map │ │ │ └── map │ │ │ │ ├── map.js │ │ │ │ ├── map.json │ │ │ │ ├── map.wxml │ │ │ │ └── map.wxss │ │ ├── media │ │ │ ├── camera-scan-code │ │ │ │ ├── camera-scan-code.json │ │ │ │ ├── camera-scan-code.less │ │ │ │ ├── camera-scan-code.ts │ │ │ │ └── camera-scan-code.wxml │ │ │ ├── camera │ │ │ │ ├── camera.js │ │ │ │ ├── camera.json │ │ │ │ ├── camera.wxml │ │ │ │ └── camera.wxss │ │ │ ├── channel-live │ │ │ │ ├── channel-live.js │ │ │ │ ├── channel-live.json │ │ │ │ ├── channel-live.wxml │ │ │ │ └── channel-live.wxss │ │ │ ├── channel-video │ │ │ │ ├── channel-video.js │ │ │ │ ├── channel-video.json │ │ │ │ ├── channel-video.wxml │ │ │ │ └── channel-video.wxss │ │ │ ├── image │ │ │ │ ├── image.js │ │ │ │ ├── image.json │ │ │ │ ├── image.wxml │ │ │ │ └── image.wxss │ │ │ ├── live-player │ │ │ │ ├── live-player.js │ │ │ │ ├── live-player.json │ │ │ │ ├── live-player.wxml │ │ │ │ └── live-player.wxss │ │ │ ├── live-pusher │ │ │ │ ├── live-pusher.js │ │ │ │ ├── live-pusher.json │ │ │ │ ├── live-pusher.wxml │ │ │ │ └── live-pusher.wxss │ │ │ └── video │ │ │ │ ├── picture-in-picture.js │ │ │ │ ├── picture-in-picture.json │ │ │ │ ├── picture-in-picture.wxml │ │ │ │ ├── picture-in-picture.wxss │ │ │ │ ├── video.js │ │ │ │ ├── video.json │ │ │ │ ├── video.wxml │ │ │ │ └── video.wxss │ │ ├── nav │ │ │ └── navigator │ │ │ │ ├── navigate.js │ │ │ │ ├── navigate.json │ │ │ │ ├── navigate.wxml │ │ │ │ ├── navigate.wxss │ │ │ │ ├── navigator.js │ │ │ │ ├── navigator.json │ │ │ │ ├── navigator.wxml │ │ │ │ ├── navigator.wxss │ │ │ │ ├── redirect.js │ │ │ │ ├── redirect.json │ │ │ │ ├── redirect.wxml │ │ │ │ └── redirect.wxss │ │ ├── obstacle-free │ │ │ └── aria-component │ │ │ │ ├── aria-component.js │ │ │ │ ├── aria-component.json │ │ │ │ ├── aria-component.wxml │ │ │ │ └── aria-component.wxss │ │ ├── official-account │ │ │ ├── official-account.js │ │ │ ├── official-account.json │ │ │ ├── official-account.wxml │ │ │ └── official-account.wxss │ │ ├── open │ │ │ ├── ad │ │ │ │ ├── ad.js │ │ │ │ ├── ad.json │ │ │ │ ├── ad.wxml │ │ │ │ └── ad.wxss │ │ │ ├── open-data │ │ │ │ ├── open-data.js │ │ │ │ ├── open-data.json │ │ │ │ ├── open-data.wxml │ │ │ │ └── open-data.wxss │ │ │ └── web-view │ │ │ │ ├── web-view.js │ │ │ │ ├── web-view.json │ │ │ │ ├── web-view.wxml │ │ │ │ └── web-view.wxss │ │ └── view │ │ │ ├── cover-view │ │ │ ├── cover-view.js │ │ │ ├── cover-view.json │ │ │ ├── cover-view.wxml │ │ │ └── cover-view.wxss │ │ │ ├── grid-view │ │ │ ├── demo-1 │ │ │ │ ├── demo-1.js │ │ │ │ ├── demo-1.json │ │ │ │ ├── demo-1.wxml │ │ │ │ └── demo-1.wxss │ │ │ ├── demo-2 │ │ │ │ ├── demo-2.js │ │ │ │ ├── demo-2.json │ │ │ │ ├── demo-2.wxml │ │ │ │ └── demo-2.wxss │ │ │ ├── grid-view.js │ │ │ ├── grid-view.json │ │ │ ├── grid-view.wxml │ │ │ └── grid-view.wxss │ │ │ ├── match-media │ │ │ ├── match-media.js │ │ │ ├── match-media.json │ │ │ ├── match-media.wxml │ │ │ └── match-media.wxss │ │ │ ├── movable-view │ │ │ ├── movable-view.js │ │ │ ├── movable-view.json │ │ │ ├── movable-view.wxml │ │ │ └── movable-view.wxss │ │ │ ├── page-container │ │ │ ├── page-container.js │ │ │ ├── page-container.json │ │ │ ├── page-container.wxml │ │ │ └── page-container.wxss │ │ │ ├── root-portal │ │ │ ├── root-portal.js │ │ │ ├── root-portal.json │ │ │ ├── root-portal.wxml │ │ │ └── root-portal.wxss │ │ │ ├── scroll-view │ │ │ ├── scroll-view.js │ │ │ ├── scroll-view.json │ │ │ ├── scroll-view.wxml │ │ │ └── scroll-view.wxss │ │ │ ├── sticky │ │ │ ├── sticky-header │ │ │ │ ├── sticky-header.js │ │ │ │ ├── sticky-header.json │ │ │ │ ├── sticky-header.wxml │ │ │ │ └── sticky-header.wxss │ │ │ ├── sticky-section │ │ │ │ ├── sticky-section.js │ │ │ │ ├── sticky-section.json │ │ │ │ ├── sticky-section.wxml │ │ │ │ └── sticky-section.wxss │ │ │ ├── sticky.js │ │ │ ├── sticky.json │ │ │ ├── sticky.wxml │ │ │ └── sticky.wxss │ │ │ ├── swiper │ │ │ ├── swiper.js │ │ │ ├── swiper.json │ │ │ ├── swiper.wxml │ │ │ └── swiper.wxss │ │ │ └── view │ │ │ ├── view.js │ │ │ ├── view.json │ │ │ ├── view.wxml │ │ │ └── view.wxss │ └── resources │ │ ├── kind │ │ ├── canvas.png │ │ ├── canvas_dark.png │ │ ├── content.png │ │ ├── content_dark.png │ │ ├── daytime.png │ │ ├── form.png │ │ ├── form_dark.png │ │ ├── logo.png │ │ ├── map.png │ │ ├── map_dark.png │ │ ├── media.png │ │ ├── media_dark.png │ │ ├── nav.png │ │ ├── nav_dark.png │ │ ├── night.png │ │ ├── obstacle-free.png │ │ ├── obstacle-free_dark.png │ │ ├── open.png │ │ ├── open_dark.png │ │ ├── view.png │ │ └── view_dark.png │ │ └── pic │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── custom_map_template_1.png │ │ ├── custom_map_template_2.png │ │ ├── custom_map_template_3.png │ │ └── custom_map_template_4.png ├── packageExtend │ ├── base │ │ ├── CustomPage.js │ │ └── behaviors │ │ │ └── theme.js │ ├── components │ │ ├── actionsheet │ │ │ ├── actionsheet.js │ │ │ ├── actionsheet.json │ │ │ ├── actionsheet.wxml │ │ │ └── actionsheet.wxss │ │ ├── badge │ │ │ ├── badge.js │ │ │ ├── badge.json │ │ │ ├── badge.wxml │ │ │ └── badge.wxss │ │ ├── cell │ │ │ ├── cell.js │ │ │ ├── cell.json │ │ │ ├── cell.wxml │ │ │ └── cell.wxss │ │ ├── cells │ │ │ ├── cells.js │ │ │ ├── cells.json │ │ │ ├── cells.wxml │ │ │ └── cells.wxss │ │ ├── checkbox-group │ │ │ ├── checkbox-group.js │ │ │ ├── checkbox-group.json │ │ │ ├── checkbox-group.wxml │ │ │ └── checkbox-group.wxss │ │ ├── checkbox │ │ │ ├── checkbox.js │ │ │ ├── checkbox.json │ │ │ ├── checkbox.wxml │ │ │ └── checkbox.wxss │ │ ├── col │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── dialog │ │ │ ├── dialog.js │ │ │ ├── dialog.json │ │ │ ├── dialog.wxml │ │ │ └── dialog.wxss │ │ ├── emoji │ │ │ ├── emoji.js │ │ │ ├── emoji.json │ │ │ ├── emoji.wxml │ │ │ ├── emoji.wxss │ │ │ └── icon_emotion_del.png │ │ ├── form-page │ │ │ ├── form-page.js │ │ │ ├── form-page.json │ │ │ ├── form-page.wxml │ │ │ └── form-page.wxss │ │ ├── form │ │ │ ├── form.js │ │ │ ├── form.json │ │ │ └── form.wxml │ │ ├── gallery │ │ │ ├── gallery.js │ │ │ ├── gallery.json │ │ │ ├── gallery.wxml │ │ │ └── gallery.wxss │ │ ├── grids │ │ │ ├── grids.js │ │ │ ├── grids.json │ │ │ ├── grids.wxml │ │ │ └── grids.wxss │ │ ├── icon │ │ │ ├── icon.js │ │ │ ├── icon.json │ │ │ ├── icon.wxml │ │ │ └── icon.wxss │ │ ├── index-list │ │ │ ├── index-list.js │ │ │ ├── index-list.json │ │ │ ├── index-list.wxml │ │ │ └── index-list.wxss │ │ ├── index.js │ │ ├── loading │ │ │ ├── loading.js │ │ │ ├── loading.json │ │ │ ├── loading.wxml │ │ │ └── loading.wxss │ │ ├── msg │ │ │ ├── msg.js │ │ │ ├── msg.json │ │ │ ├── msg.wxml │ │ │ └── msg.wxss │ │ ├── navigation-bar │ │ │ ├── navigation-bar.js │ │ │ ├── navigation-bar.json │ │ │ ├── navigation-bar.wxml │ │ │ └── navigation-bar.wxss │ │ ├── package.json │ │ ├── row │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── searchbar │ │ │ ├── searchbar.js │ │ │ ├── searchbar.json │ │ │ ├── searchbar.wxml │ │ │ └── searchbar.wxss │ │ ├── select-text │ │ │ ├── select-text.js │ │ │ ├── select-text.json │ │ │ ├── select-text.wxml │ │ │ ├── select-text.wxs │ │ │ └── select-text.wxss │ │ ├── slideview │ │ │ ├── slideview.js │ │ │ ├── slideview.json │ │ │ ├── slideview.wxml │ │ │ ├── slideview.wxs │ │ │ └── slideview.wxss │ │ ├── static │ │ │ └── icon │ │ │ │ ├── s-arrow-back.png │ │ │ │ └── s-arrow-back.svg │ │ ├── sticky │ │ │ ├── sticky.js │ │ │ ├── sticky.json │ │ │ ├── sticky.wxml │ │ │ ├── sticky.wxs │ │ │ └── sticky.wxss │ │ ├── tabbar │ │ │ ├── tabbar.js │ │ │ ├── tabbar.json │ │ │ ├── tabbar.wxml │ │ │ └── tabbar.wxss │ │ ├── tabs │ │ │ ├── tabs.js │ │ │ ├── tabs.json │ │ │ ├── tabs.wxml │ │ │ └── tabs.wxss │ │ ├── toptips │ │ │ ├── toptips.js │ │ │ ├── toptips.json │ │ │ ├── toptips.wxml │ │ │ └── toptips.wxss │ │ ├── uploader │ │ │ ├── uploader.js │ │ │ ├── uploader.json │ │ │ ├── uploader.wxml │ │ │ └── uploader.wxss │ │ ├── video-swiper │ │ │ ├── video-swiper.js │ │ │ ├── video-swiper.json │ │ │ ├── video-swiper.wxml │ │ │ └── video-swiper.wxss │ │ ├── vtabs-content │ │ │ ├── vtabs-content.js │ │ │ ├── vtabs-content.json │ │ │ ├── vtabs-content.wxml │ │ │ └── vtabs-content.wxss │ │ ├── vtabs │ │ │ ├── vtabs.js │ │ │ ├── vtabs.json │ │ │ ├── vtabs.wxml │ │ │ └── vtabs.wxss │ │ └── weui-wxss │ │ │ └── dist │ │ │ └── style │ │ │ ├── icon │ │ │ └── weui-icon.wxss │ │ │ └── weui.wxss │ └── pages │ │ ├── adapt │ │ ├── customscreenvalidation │ │ │ ├── customscreenvalidation.json │ │ │ ├── customscreenvalidation.less │ │ │ ├── customscreenvalidation.ts │ │ │ └── customscreenvalidation.wxml │ │ ├── freelayout │ │ │ ├── freelayout.js │ │ │ ├── freelayout.json │ │ │ ├── freelayout.wxml │ │ │ └── freelayout.wxss │ │ ├── horizontalexpansion │ │ │ ├── horizontalexpansion.js │ │ │ ├── horizontalexpansion.json │ │ │ ├── horizontalexpansion.wxml │ │ │ └── horizontalexpansion.wxss │ │ ├── layeredpresentation │ │ │ ├── layeredpresentation.js │ │ │ ├── layeredpresentation.json │ │ │ ├── layeredpresentation.wxml │ │ │ └── layeredpresentation.wxss │ │ ├── linebreak │ │ │ ├── linebreak.js │ │ │ ├── linebreak.json │ │ │ ├── linebreak.wxml │ │ │ └── linebreak.wxss │ │ ├── pagination │ │ │ ├── pagination.js │ │ │ ├── pagination.json │ │ │ ├── pagination.wxml │ │ │ └── pagination.wxss │ │ ├── sidenavigation │ │ │ ├── sidenavigation.js │ │ │ ├── sidenavigation.json │ │ │ ├── sidenavigation.wxml │ │ │ └── sidenavigation.wxss │ │ └── telescopic │ │ │ ├── telescopic.js │ │ │ ├── telescopic.json │ │ │ ├── telescopic.wxml │ │ │ └── telescopic.wxss │ │ ├── base │ │ ├── article │ │ │ ├── article.js │ │ │ ├── article.json │ │ │ ├── article.wxml │ │ │ └── article.wxss │ │ ├── badge │ │ │ ├── badge.js │ │ │ ├── badge.json │ │ │ ├── badge.wxml │ │ │ └── badge.wxss │ │ ├── flex │ │ │ ├── flex.js │ │ │ ├── flex.json │ │ │ ├── flex.wxml │ │ │ └── flex.wxss │ │ ├── footer │ │ │ ├── footer.js │ │ │ ├── footer.json │ │ │ ├── footer.wxml │ │ │ └── footer.wxss │ │ ├── gallery │ │ │ ├── gallery.js │ │ │ ├── gallery.json │ │ │ ├── gallery.wxml │ │ │ └── gallery.wxss │ │ ├── grid │ │ │ ├── grid.js │ │ │ ├── grid.json │ │ │ ├── grid.wxml │ │ │ └── grid.wxss │ │ ├── icons │ │ │ ├── icons.js │ │ │ ├── icons.json │ │ │ ├── icons.wxml │ │ │ └── icons.wxss │ │ ├── loading │ │ │ ├── loading.js │ │ │ ├── loading.json │ │ │ ├── loading.wxml │ │ │ └── loading.wxss │ │ ├── loadmore │ │ │ ├── loadmore.js │ │ │ ├── loadmore.json │ │ │ ├── loadmore.wxml │ │ │ └── loadmore.wxss │ │ ├── panel │ │ │ ├── panel.js │ │ │ ├── panel.json │ │ │ ├── panel.wxml │ │ │ └── panel.wxss │ │ └── preview │ │ │ ├── preview.js │ │ │ ├── preview.json │ │ │ ├── preview.wxml │ │ │ └── preview.wxss │ │ ├── common.wxss │ │ ├── extend │ │ ├── barrage │ │ │ ├── barrage.js │ │ │ ├── barrage.json │ │ │ ├── barrage.wxml │ │ │ ├── barrage.wxss │ │ │ └── utils.js │ │ ├── common.wxss │ │ ├── emoji │ │ │ ├── emoji.js │ │ │ ├── emoji.json │ │ │ ├── emoji.wxml │ │ │ ├── emoji.wxss │ │ │ └── images │ │ │ │ ├── reply_edit.svg │ │ │ │ ├── reply_function_image.svg │ │ │ │ ├── reply_function_image_active.svg │ │ │ │ ├── reply_function_image_dark.svg │ │ │ │ ├── reply_tool_add.png │ │ │ │ ├── reply_tool_add_dark.png │ │ │ │ ├── reply_tool_emoji.svg │ │ │ │ ├── reply_tool_emoji_dark.svg │ │ │ │ ├── reply_tool_keyboard.svg │ │ │ │ └── reply_tool_keyboard_dark.svg │ │ ├── index-list │ │ │ ├── index-list.js │ │ │ ├── index-list.json │ │ │ ├── index-list.wxml │ │ │ └── index-list.wxss │ │ ├── recycle-view │ │ │ ├── images │ │ │ │ └── list-img.png │ │ │ ├── recycle-view.js │ │ │ ├── recycle-view.json │ │ │ ├── recycle-view.wxml │ │ │ └── recycle-view.wxss │ │ ├── select-text │ │ │ ├── select-text.js │ │ │ ├── select-text.json │ │ │ ├── select-text.wxml │ │ │ └── select-text.wxss │ │ ├── sticky │ │ │ ├── sticky.js │ │ │ ├── sticky.json │ │ │ ├── sticky.wxml │ │ │ └── sticky.wxss │ │ ├── tabs │ │ │ ├── tabs.js │ │ │ ├── tabs.json │ │ │ ├── tabs.wxml │ │ │ ├── tabs.wxss │ │ │ ├── webview.js │ │ │ ├── webview.json │ │ │ ├── webview.wxml │ │ │ └── webview.wxss │ │ ├── video-swiper │ │ │ ├── video-swiper.js │ │ │ ├── video-swiper.json │ │ │ ├── video-swiper.wxml │ │ │ └── video-swiper.wxss │ │ ├── vtabs │ │ │ ├── vtabs.js │ │ │ ├── vtabs.json │ │ │ ├── vtabs.wxml │ │ │ └── vtabs.wxss │ │ └── wxml-to-canvas │ │ │ ├── demo.js │ │ │ ├── wxml-to-canvas.js │ │ │ ├── wxml-to-canvas.json │ │ │ ├── wxml-to-canvas.wxml │ │ │ └── wxml-to-canvas.wxss │ │ ├── form │ │ ├── cell │ │ │ ├── cell.js │ │ │ ├── cell.json │ │ │ ├── cell.wxml │ │ │ ├── cell.wxss │ │ │ ├── icon_del.svg │ │ │ ├── icon_love.svg │ │ │ └── icon_star.svg │ │ ├── form │ │ │ ├── form.js │ │ │ ├── form.json │ │ │ ├── form.wxml │ │ │ └── form.wxss │ │ ├── slideview │ │ │ ├── icon_del.svg │ │ │ ├── icon_love.svg │ │ │ ├── icon_star.svg │ │ │ ├── slideview.js │ │ │ ├── slideview.json │ │ │ ├── slideview.wxml │ │ │ └── slideview.wxss │ │ └── uploader │ │ │ ├── uploader.js │ │ │ ├── uploader.json │ │ │ ├── uploader.wxml │ │ │ └── uploader.wxss │ │ ├── image │ │ ├── button.png │ │ ├── button1.png │ │ ├── device.png │ │ └── device1.png │ │ ├── images │ │ ├── base64.js │ │ ├── icon_footer.png │ │ ├── icon_footer_link.png │ │ ├── icon_intro.png │ │ ├── icon_nav_adaptive.png │ │ ├── icon_nav_extended.png │ │ ├── icon_nav_feedback.png │ │ ├── icon_nav_form.png │ │ ├── icon_nav_nav.png │ │ ├── icon_nav_search.png │ │ ├── icon_nav_special.png │ │ ├── icon_nav_widget.png │ │ ├── icon_nav_z-index.png │ │ ├── icon_tabbar.png │ │ ├── logo.png │ │ ├── logo_extended.png │ │ ├── pic_160.png │ │ ├── pic_article.png │ │ ├── tabbar_icon_chat_active.png │ │ ├── tabbar_icon_chat_active.svg │ │ ├── tabbar_icon_chat_default.png │ │ ├── tabbar_icon_chat_default.svg │ │ ├── tabbar_icon_setting_active.png │ │ ├── tabbar_icon_setting_active.svg │ │ ├── tabbar_icon_setting_default.png │ │ ├── tabbar_icon_setting_default.svg │ │ └── vcode.jpg │ │ ├── navigation │ │ ├── navigation │ │ │ ├── navigation.js │ │ │ ├── navigation.json │ │ │ ├── navigation.wxml │ │ │ └── navigation.wxss │ │ └── tabbar │ │ │ ├── tabbar.js │ │ │ ├── tabbar.json │ │ │ ├── tabbar.wxml │ │ │ └── tabbar.wxss │ │ ├── operate │ │ ├── actionsheet │ │ │ ├── actionsheet.js │ │ │ ├── actionsheet.json │ │ │ ├── actionsheet.wxml │ │ │ └── actionsheet.wxss │ │ ├── dialog │ │ │ ├── dialog.js │ │ │ ├── dialog.json │ │ │ ├── dialog.wxml │ │ │ └── dialog.wxss │ │ ├── half-screen-dialog │ │ │ ├── half-screen-dialog.js │ │ │ ├── half-screen-dialog.json │ │ │ ├── half-screen-dialog.wxml │ │ │ └── half-screen-dialog.wxss │ │ ├── msg │ │ │ ├── msg.js │ │ │ ├── msg.json │ │ │ ├── msg.wxml │ │ │ ├── msg.wxss │ │ │ ├── msg_fail.js │ │ │ ├── msg_fail.json │ │ │ ├── msg_fail.wxml │ │ │ ├── msg_fail.wxss │ │ │ ├── msg_success.js │ │ │ ├── msg_success.json │ │ │ ├── msg_success.wxml │ │ │ ├── msg_success.wxss │ │ │ ├── msg_text.js │ │ │ ├── msg_text.json │ │ │ ├── msg_text.wxml │ │ │ ├── msg_text.wxss │ │ │ ├── msg_text_primary.js │ │ │ ├── msg_text_primary.json │ │ │ ├── msg_text_primary.wxml │ │ │ └── msg_text_primary.wxss │ │ └── toptips │ │ │ ├── toptips.js │ │ │ ├── toptips.json │ │ │ ├── toptips.wxml │ │ │ └── toptips.wxss │ │ └── search │ │ └── searchbar │ │ ├── searchbar.js │ │ ├── searchbar.json │ │ ├── searchbar.wxml │ │ └── searchbar.wxss ├── packageSkyline │ ├── common │ │ ├── custom-route │ │ │ ├── common.js │ │ │ ├── cupertino-route.js │ │ │ ├── hafl-screen-route.js │ │ │ ├── index.js │ │ │ ├── opacity-route.js │ │ │ ├── scale-route.js │ │ │ └── util.js │ │ ├── mixin.less │ │ ├── tips.js │ │ ├── types.js │ │ └── worklet-api.js │ ├── pages │ │ ├── base.js │ │ ├── half-page │ │ │ ├── half-page │ │ │ │ ├── index.json │ │ │ │ ├── index.less │ │ │ │ ├── index.ts │ │ │ │ └── index.wxml │ │ │ └── scale-page │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.less │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── preview │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── share-element │ │ │ ├── card │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── data.js │ │ │ └── list │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ └── worklet │ │ │ ├── animation │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── bottom-sheet │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── common.wxss │ │ │ └── gesture │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ ├── resources │ │ ├── icon_component_HL.png │ │ └── icon_down_arrow.svg │ └── utils │ │ ├── comment.js │ │ ├── constant.js │ │ ├── event-bus.js │ │ ├── route.js │ │ └── tool.js ├── packageXRFrame │ ├── components │ │ ├── common │ │ │ └── share-behavior.js │ │ ├── pull-down-list │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── template │ │ │ ├── xr-template-arGlasses │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-arLine │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-arPreview │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-arui │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-blendDouble │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-control │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-dissolve │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ ├── index.wxss │ │ │ │ └── shaders │ │ │ │ │ ├── dissolveFrag.js │ │ │ │ │ └── dissolveVert.js │ │ │ ├── xr-template-featherVideo │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-frameEffect │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-geometry │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-gltfAnimation │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-gltfEdit │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-gltfOcclusion │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-gltfUVAnimation │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-loading │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-lookat │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-markerCenter │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-markerLock │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-message │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-pbr │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-planeShadow │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-removeBlack │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-select │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-share │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-textEdit │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-toon │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── xr-template-tracker │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── xr-template-volumeVideo │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ ├── index.wxss │ │ │ │ ├── mesh4DPlayer.js │ │ │ │ └── shaders │ │ │ │ ├── common.js │ │ │ │ ├── shadowFrag.js │ │ │ │ ├── shadowVert.js │ │ │ │ ├── videoFrag.js │ │ │ │ └── videoVert.js │ │ ├── xr-ar-2dmarker │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-basic │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-body-3d │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-body │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-camera │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-face-3d │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-face │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-hand-3d │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-hand │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-osdmarker │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-shoe │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-threeDof │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-vio-depth │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-ar-vio-marker │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-alpha │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-animation │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-envData │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-light │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-postprocessing │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-render-texture │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-shadow │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-share │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-touch │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-video │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic-visible-layer │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-basic │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-beside-edge │ │ │ ├── config.js │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-classic-face │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-classic-osd │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-classic-perspect │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-classic-portal │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-classic-video │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-classic-wxball │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-custom-logic │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-custom-render │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-customParticle-firework │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-customParticle-meshEmitter │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-customParticle-orb │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-customParticle-portal │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-customParticle-shapeEmitter │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-demo-viewer │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-animation │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-compressTextures │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-damageHelmet │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-light-loading │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-lightsPunctual │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-morph │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-sheen │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-specularGlossiness │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-textureTransform │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-transmission │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-gltf-unlit │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-last-record │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-particle-custom │ │ │ ├── earring.js │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-particle-firework │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-particle-meshEmitter │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── specialCylinder.js │ │ ├── xr-particle-orb │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-particle-portal │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-particle-shapeEmitter │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── xr-physics-shoot │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ ├── index.wxss │ │ │ └── weixin.png │ │ ├── xr-physics-throw │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── xr-scan-render │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── xr-scan-team │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ ├── pages │ │ ├── ar-classic │ │ │ ├── scene-classic-face │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-classic-osd │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-classic-perspect │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-classic-portal │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-classic-video │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-classic-wxball │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── ar │ │ │ ├── scene-ar-2dmarker │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-basic │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-body-3d │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-body │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-camera │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-face-3d │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-face │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-hand-3d │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-hand │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-osdmarker │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-shoe │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-threeDof │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-ar-vio-depth │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-ar-vio-marker │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── basic │ │ │ ├── scene-basic-alpha │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-animation │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-envData │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-light │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-particle │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-postprocessing │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-render-texture │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-shadow │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-share │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-touch │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-video │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-basic-visible-layer │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-basic │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── behavior-scene │ │ │ ├── scene-ready.js │ │ │ └── util.js │ │ ├── custom │ │ │ ├── scene-custom-logic │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-custom-render │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── customParticle │ │ │ ├── scene-customParticle-firework │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-customParticle-meshEmitter │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-customParticle-orb │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-customParticle-portal │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-customParticle-shapeEmitter │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── gltf │ │ │ ├── scene-gltf-animation │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-compressTextures │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-damageHelmet │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-light-loading │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-lightsPunctual │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-morph │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-sheen │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-specularGlossiness │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-textureTransform │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-gltf-transmission │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-gltf-unlit │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── index │ │ │ ├── data │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── particle │ │ │ ├── scene-particle-custom │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-particle-firework │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-particle-meshEmitter │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-particle-orb │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── scene-particle-portal │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-particle-shapeEmitter │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── physics │ │ │ ├── scene-physics-shoot │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-physics-throw │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── scan │ │ │ ├── scene-scan-render │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── scene-scan-team │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ ├── scene-beside-edge │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── scene-last-record │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── template │ │ │ ├── xr-template-arGlasses │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-arLine │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-arPreview │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-arui │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-blendDouble │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-control │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-dissolve │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-featherVideo │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-frameEffect │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-geometry │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-gltfAnimation │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-gltfEdit │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-gltfOcclusion │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-gltfUVAnimation │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-loading │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-lookat │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-markerCenter │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-markerLock │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-message │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-pbr │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-planeShadow │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-removeBlack │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-select │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-share │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-textEdit │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-toon │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ ├── xr-template-tracker │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ │ └── xr-template-volumeVideo │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ ├── index.wxss │ │ │ └── planeShadow.js │ └── xr-custom │ │ ├── animations │ │ └── XrTeamCameraAnimation.ts │ │ ├── assets │ │ ├── effect-last-record-final.ts │ │ ├── effect-planeShadow.ts │ │ ├── effect-removeBlack.ts │ │ ├── effect-shining.ts │ │ ├── effect-toon.js │ │ ├── geometry-specialCylinder.js │ │ ├── geometry-star.ts │ │ ├── standard-shader │ │ │ ├── bsdfs.js │ │ │ ├── commonFrag.js │ │ │ ├── commonVert.js │ │ │ ├── customPBR.js │ │ │ └── pbr.js │ │ └── toon-shader │ │ │ ├── common.js │ │ │ ├── outlineFrag.js │ │ │ ├── outlineVert.js │ │ │ ├── skinningDefine.js │ │ │ ├── toonFrag.js │ │ │ └── toonVert.js │ │ ├── components │ │ ├── AutoRotate.ts │ │ └── Particle │ │ │ ├── Shape │ │ │ ├── BasicShapeEmitter.ts │ │ │ ├── BoxShapeEmitter.ts │ │ │ ├── PointShapeEmitter.ts │ │ │ ├── SphereShapeEmitter.ts │ │ │ └── emitter.ts │ │ │ ├── SystemProperty │ │ │ ├── BasicParticle.ts │ │ │ ├── ParticleInstance.ts │ │ │ └── ParticleInterface.ts │ │ │ ├── Util │ │ │ ├── Gradient.ts │ │ │ └── SubEmitter.ts │ │ │ ├── index.json │ │ │ ├── index.ts │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── elements │ │ ├── xr-auto-rotate-touchable-gltf.ts │ │ ├── xr-custom-particle.ts │ │ └── xr-shining-star.ts ├── page │ ├── API │ │ ├── components │ │ │ └── set-tab-bar │ │ │ │ ├── set-tab-bar.js │ │ │ │ ├── set-tab-bar.json │ │ │ │ ├── set-tab-bar.wxml │ │ │ │ └── set-tab-bar.wxss │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── resources │ │ │ └── kind │ │ │ ├── api.png │ │ │ ├── api_dark.png │ │ │ ├── ar.png │ │ │ ├── ar_dark.png │ │ │ ├── chattoo_dark.png │ │ │ ├── chattool.png │ │ │ ├── device.png │ │ │ ├── device_dark.png │ │ │ ├── feedback.png │ │ │ ├── feedback_dark.png │ │ │ ├── framework.png │ │ │ ├── framework_dark.png │ │ │ ├── location.png │ │ │ ├── location_dark.png │ │ │ ├── logo.png │ │ │ ├── media.png │ │ │ ├── media_dark.png │ │ │ ├── network.png │ │ │ ├── network_dark.png │ │ │ ├── page.png │ │ │ ├── page_dark.png │ │ │ ├── performance.png │ │ │ ├── performance_dark.png │ │ │ ├── storage.png │ │ │ ├── storage_dark.png │ │ │ ├── worker.png │ │ │ └── worker_dark.png │ ├── animation │ │ ├── index.json │ │ ├── index.ts │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── resources │ │ │ └── kind │ │ │ └── logo.png │ ├── cloud │ │ ├── README.md │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── resources │ │ │ ├── db_dump │ │ │ ├── perm1.json │ │ │ ├── perm2.json │ │ │ ├── perm3.json │ │ │ └── perm4.json │ │ │ └── kind │ │ │ ├── database.png │ │ │ ├── database_dark.png │ │ │ ├── logo.png │ │ │ ├── scf.png │ │ │ ├── scf_dark.png │ │ │ ├── storage.png │ │ │ ├── storage_dark.png │ │ │ ├── user.png │ │ │ └── user_dark.png │ ├── common │ │ ├── common.wxss │ │ ├── foot.wxml │ │ ├── head.wxml │ │ ├── index-skyline.wxss │ │ ├── index.wxss │ │ └── lib │ │ │ └── weui.wxss │ ├── component │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── resources │ │ │ ├── kind │ │ │ ├── canvas.png │ │ │ ├── canvas_dark.png │ │ │ ├── content.png │ │ │ ├── content_dark.png │ │ │ ├── daytime.png │ │ │ ├── form.png │ │ │ ├── form_dark.png │ │ │ ├── logo.png │ │ │ ├── map.png │ │ │ ├── map_dark.png │ │ │ ├── media.png │ │ │ ├── media_dark.png │ │ │ ├── nav.png │ │ │ ├── nav_dark.png │ │ │ ├── night.png │ │ │ ├── obstacle-free.png │ │ │ ├── obstacle-free_dark.png │ │ │ ├── open.png │ │ │ ├── open_dark.png │ │ │ ├── view.png │ │ │ └── view_dark.png │ │ │ └── pic │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── custom_map_template_1.png │ │ │ ├── custom_map_template_2.png │ │ │ ├── custom_map_template_3.png │ │ │ └── custom_map_template_4.png │ └── extend │ │ ├── base │ │ ├── CustomPage.js │ │ └── behaviors │ │ │ └── theme.js │ │ ├── images │ │ ├── icon_footer.png │ │ ├── icon_footer_link.png │ │ ├── icon_intro.png │ │ ├── icon_nav_adaptive.png │ │ ├── icon_nav_extended.png │ │ ├── icon_nav_feedback.png │ │ ├── icon_nav_form.png │ │ ├── icon_nav_nav.png │ │ ├── icon_nav_search.png │ │ ├── icon_nav_special.png │ │ ├── icon_nav_widget.png │ │ ├── icon_nav_z-index.png │ │ ├── icon_tabbar.png │ │ ├── logo.png │ │ ├── logo_extended.png │ │ ├── pic_160.png │ │ ├── pic_article.png │ │ ├── tabbar_icon_chat_active.png │ │ ├── tabbar_icon_chat_active.svg │ │ ├── tabbar_icon_chat_default.png │ │ ├── tabbar_icon_chat_default.svg │ │ ├── tabbar_icon_setting_active.png │ │ ├── tabbar_icon_setting_active.svg │ │ ├── tabbar_icon_setting_default.png │ │ └── tabbar_icon_setting_default.svg │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss ├── sitemap.json ├── util │ ├── fps_helper.ts │ └── util.js └── workers │ ├── fib │ └── index.js │ └── gaussianSplatting │ └── index.js ├── package.json ├── project.config.json ├── project.private.config.json ├── sitemap.json └── test └── index.spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | *swp 2 | .idea 3 | .DS_Store 4 | package-lock.json 5 | 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | node_modules 12 | miniprogram_npm 13 | 14 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "miniprogram/packageSkylineExamples"] 2 | path = miniprogram/packageSkylineExamples 3 | url = https://github.com/wechat-miniprogram/awesome-skyline.git 4 | -------------------------------------------------------------------------------- /cloudfunctions/ARDemo/cloud-functions-tools/test/svrkit-utils/example/proto/demo.proto: -------------------------------------------------------------------------------- 1 | message ApiDemoReq 2 | { 3 | optional string str = 2; 4 | } 5 | 6 | message ApiDemoResp 7 | { 8 | optional string str = 2; 9 | } -------------------------------------------------------------------------------- /cloudfunctions/ARDemo/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "permissions": { 3 | "openapi": [ 4 | ] 5 | } 6 | } -------------------------------------------------------------------------------- /cloudfunctions/login/index.js: -------------------------------------------------------------------------------- 1 | exports.main = (event) => ({ 2 | openid: event.userInfo.openId, 3 | }) 4 | -------------------------------------------------------------------------------- /miniprogram/app-bar/index.js: -------------------------------------------------------------------------------- 1 | // components/app-bar/index.js 2 | Component({ 3 | properties: { 4 | 5 | }, 6 | 7 | data: { 8 | showAppbar: false 9 | } 10 | }) 11 | -------------------------------------------------------------------------------- /miniprogram/app-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "app-bar-course": "../components/app-bar-course" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/app-bar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /miniprogram/assets/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/assets/arrow-down.png -------------------------------------------------------------------------------- /miniprogram/assets/image/ar-box-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/assets/image/ar-box-border.png -------------------------------------------------------------------------------- /miniprogram/assets/image/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/assets/image/background.png -------------------------------------------------------------------------------- /miniprogram/assets/image/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/assets/image/handle.png -------------------------------------------------------------------------------- /miniprogram/assets/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/assets/next.png -------------------------------------------------------------------------------- /miniprogram/assets/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/assets/play.png -------------------------------------------------------------------------------- /miniprogram/assets/waifu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/assets/waifu.png -------------------------------------------------------------------------------- /miniprogram/component/navigation-bar/navigation-bar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "componentFramework": "glass-easel", 5 | "renderer": "skyline" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/components/app-bar-course/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/components/grid-tile/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/components/navigation-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/components/page-scroll/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "componentFramework": "glass-easel", 5 | "renderer": "skyline" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/components/page-scroll/index.wxss: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | /* # sourceMappingURL=index.wxss.map */ -------------------------------------------------------------------------------- /miniprogram/components/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/components/popup/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/image/green_tri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/green_tri.png -------------------------------------------------------------------------------- /miniprogram/image/icon64_appwx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon64_appwx_logo.png -------------------------------------------------------------------------------- /miniprogram/image/icon_API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_API.png -------------------------------------------------------------------------------- /miniprogram/image/icon_API_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_API_HL.png -------------------------------------------------------------------------------- /miniprogram/image/icon_API_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_API_dark.png -------------------------------------------------------------------------------- /miniprogram/image/icon_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_cloud.png -------------------------------------------------------------------------------- /miniprogram/image/icon_cloud_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_cloud_HL.png -------------------------------------------------------------------------------- /miniprogram/image/icon_cloud_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_cloud_dark.png -------------------------------------------------------------------------------- /miniprogram/image/icon_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_component.png -------------------------------------------------------------------------------- /miniprogram/image/icon_component_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_component_HL.png -------------------------------------------------------------------------------- /miniprogram/image/icon_component_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_component_dark.png -------------------------------------------------------------------------------- /miniprogram/image/icon_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/icon_foot.png -------------------------------------------------------------------------------- /miniprogram/image/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/location.png -------------------------------------------------------------------------------- /miniprogram/image/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/pause.png -------------------------------------------------------------------------------- /miniprogram/image/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/play.png -------------------------------------------------------------------------------- /miniprogram/image/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/plus.png -------------------------------------------------------------------------------- /miniprogram/image/plus_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/plus_dark.png -------------------------------------------------------------------------------- /miniprogram/image/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/record.png -------------------------------------------------------------------------------- /miniprogram/image/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/share.png -------------------------------------------------------------------------------- /miniprogram/image/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/stop.png -------------------------------------------------------------------------------- /miniprogram/image/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/trash.png -------------------------------------------------------------------------------- /miniprogram/image/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/wechat.png -------------------------------------------------------------------------------- /miniprogram/image/wechatHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/image/wechatHL.png -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/cell-group/cell-group.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/cell-group/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCellGroupProps } from './type'; 2 | declare const props: TdCellGroupProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/cell-group/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/cell/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCellProps } from './type'; 2 | declare const props: TdCellProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/cell/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/col/col.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/col/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdColProps } from './type'; 2 | declare const props: TdColProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/col/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/collapse-panel/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCollapsePanelProps } from './type'; 2 | declare const props: TdCollapsePanelProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/collapse-panel/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/collapse/collapse.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/collapse/index.js: -------------------------------------------------------------------------------- 1 | export { default as Collapse } from './collapse'; 2 | export * from './type'; 3 | export * from './props'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/collapse/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCollapseProps } from './type'; 2 | declare const props: TdCollapseProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/collapse/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/common.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/component.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare const TComponent: typeof Component; 3 | export default TComponent; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/config.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: { 2 | prefix: string; 3 | }; 4 | export default _default; 5 | export declare const prefix = "t"; 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | prefix: "t", 3 | }; 4 | export const prefix = "t"; 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/shared/calendar/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/shared/color-picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './cmyk'; 2 | export * from './color'; 3 | export * from './gradient'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/shared/color-picker/index.js: -------------------------------------------------------------------------------- 1 | export * from './cmyk'; 2 | export * from './color'; 3 | export * from './gradient'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/src/superComponent.js: -------------------------------------------------------------------------------- 1 | export class SuperComponent { 2 | constructor() { 3 | this.app = getApp(); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/style/utilities/_animation.wxss: -------------------------------------------------------------------------------- 1 | @keyframes tdesign-fade-out { 2 | from { 3 | opacity: 1; 4 | } 5 | to { 6 | opacity: 0; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/common/style/utilities/_float.wxss: -------------------------------------------------------------------------------- 1 | .t-float-left { 2 | float: left; 3 | } 4 | .t-float-right { 5 | float: right; 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/count-down/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCountDownProps } from './type'; 2 | declare const props: TdCountDownProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/count-down/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/icon/icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/icon/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdIconProps } from './type'; 2 | declare const props: TdIconProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/icon/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/image/index.js: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './image'; 3 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/image/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdImageProps } from './type'; 2 | declare const props: TdImageProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/image/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './type'; 3 | export * from './loading'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/loading/index.js: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './type'; 3 | export * from './loading'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/loading/loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/loading/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdLoadingProps } from './type'; 2 | declare const props: TdLoadingProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/loading/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/mixins/page-scroll.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: (funcName?: string) => string; 2 | export default _default; 3 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/mixins/theme-change.d.ts: -------------------------------------------------------------------------------- 1 | declare const themeChangeBehavior: string; 2 | export default themeChangeBehavior; 3 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: string; 2 | export default _default; 3 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export default function transition(): string; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/mixins/using-custom-navbar.d.ts: -------------------------------------------------------------------------------- 1 | declare const useCustomNavbarBehavior: string; 2 | export default useCustomNavbarBehavior; 3 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/navbar/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": { 5 | "t-icon": "../icon/icon" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/navbar/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdNavbarProps } from './type'; 2 | declare const props: TdNavbarProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/navbar/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/row/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdRowProps } from './type'; 2 | declare const props: TdRowProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/row/props.js: -------------------------------------------------------------------------------- 1 | const props = { 2 | gutter: { 3 | type: null, 4 | }, 5 | }; 6 | export default props; 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/row/row.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/row/row.wxss: -------------------------------------------------------------------------------- 1 | .t-row { 2 | display: flex; 3 | flex-direction: row; 4 | flex-wrap: wrap; 5 | box-sizing: border-box; 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/row/type.d.ts: -------------------------------------------------------------------------------- 1 | export interface TdRowProps { 2 | gutter?: { 3 | type: null; 4 | value?: string | number; 5 | }; 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/row/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/search/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdSearchProps } from './type'; 2 | declare const props: TdSearchProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/search/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/tag/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdTagProps } from './type'; 2 | declare const props: TdTagProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/tag/tag.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": { 5 | "t-icon": ".././icon/icon" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/tag/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/toast/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdToastProps } from './type'; 2 | declare const props: TdToastProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/components/tdesign-miniprogram/toast/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/image/icon_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/image/icon_foot.png -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ai/mobilenet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "disableScroll": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ai/mobilenet/index.less: -------------------------------------------------------------------------------- 1 | /* packageAPI/pages/ai/mobilenet/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ai/mobilenet_int8/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "disableScroll": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ai/mobilenet_int8/index.less: -------------------------------------------------------------------------------- 1 | /* packageAPI/pages/ai/mobilenet/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ai/style-trans/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "disableScroll": true 3 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ai/style-trans/index.less: -------------------------------------------------------------------------------- 1 | /* packageAPI/pages/ai/style-trans/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/choose-address/choose-address.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "收货地址", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/choose-invoice-title/choose-invoice-title.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "获取发票抬头", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/custom-message/custom-message.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "客服消息", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/custom-message/custom-message.wxss: -------------------------------------------------------------------------------- 1 | /* page/API/pages/custom-message/custom-message.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/get-user-info/get-user-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "获取用户信息", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/jump/jump.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "跳转", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/jump/jump.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/api/jump/jump.wxss -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "微信登录", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/request-payment/request-payment.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发起支付", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/setting/setting.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "设置", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/share-button/share-button.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "转发按钮", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/share-button/share-button.wxss: -------------------------------------------------------------------------------- 1 | .button-share { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/share/share.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "转发", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/share/share.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/api/share/share.wxss -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/soter-authentication/soter-authentication.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "生物认证", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/api/subscribe-message/subscribe-message.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/2dmarker-ar/2dmarker-ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "2DMarkerAR" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/3dmarker-ar/Components/arModelComponent.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/3dmarker-ar/protobuf/src/roots.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by zhangmiao on 2018/3/13. 3 | */ 4 | 5 | 6 | module.exports = {}; -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/cameraBuffer-detect/cameraBuffer-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "相机帧测试" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/cameraBuffer-detect/cameraBuffer-detect.less: -------------------------------------------------------------------------------- 1 | /* packageAPI/pages/ar/cameraBuffer-detect/cameraBuffer-detect.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/cameraBuffer-jpg/cameraBuffer-jpg.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "相机帧获取jpg图片" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/components/xr-frame-render/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/components/xr-frame/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/depth-detect/depth-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "实时深度图检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/face-detect/face-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "实时人脸检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/hand-detect/hand-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "实时手势检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/ocr-detect/ocr-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "实时OCR检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/osd-ar/choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/ar/osd-ar/choose.png -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/osd-ar/osd-ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "单样本检测(OSD)" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-body-detect/photo-body-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "照片人体检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-depth-detect/photo-depth-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "照片深度图检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-depth-detect/photo-depth-detect.less: -------------------------------------------------------------------------------- 1 | /* packageAPI/pages/ar/photo-depth-detect/photo-depth-detect.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-face-detect/photo-face-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "照片人脸检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-hand-detect/photo-hand-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "照片手势检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-idcard-detect/photo-idcard-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "照片身份证检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-ocr-detect/photo-ocr-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "照片OCR检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-shoe-detect/photo-shoe-detect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "照片鞋部检测" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/photo-shoe-detect/photo-shoe-detect.less: -------------------------------------------------------------------------------- 1 | /* packageAPI/pages/ar/photo-shoe-detect/photo-shoe-detect.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar-3dof/plane-ar-3dof.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "水平面旋转AR" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar-3dof/plane-ar-3dof.less: -------------------------------------------------------------------------------- 1 | /* packageAPI/pages/ar/plane-ar-3dof/plane-ar-3dof.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar-v2-depth/plane-ar-v2-depth.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "水平面AR-v2-虚实遮挡" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar-v2-marker/plane-ar-v2-marker.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "水平面AR-v2-marker识别" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar-v2-options/plane-ar-v2-options.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "平面AR附加能力" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar-v2/move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/ar/plane-ar-v2/move.gif -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar-v2/plane-ar-v2.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "水平面AR-v2" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar/plane-ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "水平面AR" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/plane-ar/plane-ar.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/ar/plane-ar/plane-ar.wxss -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/ar/visionkit-basic/visionkit-basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "renderer": "webview", 5 | "navigationBarTitleText": "VisionKit基础" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/add-contact/add-contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "新增联系人" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/add-contact/add-contact.wxss: -------------------------------------------------------------------------------- 1 | 2 | 3 | input { 4 | width: 100%; 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/bluetooth/bluetooth.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "蓝牙" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/bluetooth/slave/slave.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/bluetooth/slave/slave.wxss: -------------------------------------------------------------------------------- 1 | .action-area { 2 | display: flex; 3 | flex-direction: row; 4 | justify-content: space-around; 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/capture-screen/capture-screen.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "用户截屏事件" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/capture-screen/capture-screen.wxss: -------------------------------------------------------------------------------- 1 | .page-body-text { 2 | font-size: 20px; 3 | font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/clipboard-data/clipboard-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "剪切板" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/clipboard-data/clipboard-data.wxss: -------------------------------------------------------------------------------- 1 | 2 | 3 | .page-body-info { 4 | padding: 5px; 5 | height: 100px; 6 | overflow: scroll-y; 7 | text-align: left; 8 | } 9 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/get-battery-info/get-battery-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "获取手机设备电量" 5 | 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/get-battery-info/get-battery-info.wxss: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/get-network-type/get-network-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "获取手机网络状态" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/get-system-info/get-system-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "获取手机系统信息" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/ibeacon/ibeacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "iBeacon" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/make-phone-call/make-phone-call.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "打电话" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "监听重力感应数据" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/on-compass-change/on-compass-change.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "监听罗盘数据" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/on-network-status-change/on-network-status-change.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "监听手机网络变化" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/scan-code/scan-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "扫码" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/scan-code/scan-code.wxss: -------------------------------------------------------------------------------- 1 | 2 | 3 | .weui-cell__bd{ 4 | min-height: 24px; 5 | word-break: break-all; 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/screen-brightness/screen-brightness.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "屏幕亮度" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/vibrate/vibrate.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "振动" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/device/wifi/wifi.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "Wi-Fi" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/resizable/resizable.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "屏幕旋转", 5 | "pageOrientation": "auto" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/resizable/resizable.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/packageAPI/pages/framework/resizable/resizable.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/two-way-bindings/two-way-bindings.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "two-way-bindings" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/image/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/framework/wxs/image/1.jpeg -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/framework/wxs/image/2.jpg -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/framework/wxs/image/3.jpg -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/framework/wxs/image/4.jpg -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/movable.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "movable" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/movable.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/page/API/pages/wxs/movable.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/nearby.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "nearby" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/nearby.wxss: -------------------------------------------------------------------------------- 1 | /* pages/nearby/nearby.wxss */ 2 | .swiper { 3 | width: 100%; 4 | max-width: 600px; 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/sidebar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "sidebar" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/stick-top.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "stick-top" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/wxs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "WXS" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/framework/wxs/wxs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/framework/wxs/wxs.wxss -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/location/choose-location/choose-location.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "使用原生地图选择位置" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/location/choose-location/choose-location.wxss: -------------------------------------------------------------------------------- 1 | .page-body-info{ 2 | padding-bottom: 0; 3 | height: 420px; 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/location/get-location/get-location.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "获取位置" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/location/open-location/open-location.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "查看位置" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/audio/audio.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "音频" 5 | 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/audio/audio.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/packageAPI/pages/media/audio/audio.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/background-audio/background-audio.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "背景音频" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/file/file.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "文件" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/image/image.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "图片" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/image/image.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageAPI/pages/media/image/image.wxss -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/load-font-face/load-font-face.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "动态加载字体" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/media-container/media-container.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "音视频合成" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/media-container/media-container.wxss: -------------------------------------------------------------------------------- 1 | .page-section { 2 | display: flex; 3 | flex-direction: column; 4 | align-items: center; 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/video/video.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "拍摄/选择视频" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/media/voice/voice.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "录音" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/download-file/download-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "下载文件" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/download-file/download-file.wxss: -------------------------------------------------------------------------------- 1 | .page-body image { 2 | width: 300px; 3 | height: 300px; 4 | 5 | margin: 0 38px; 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/mdns/mdns.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "mDNS" 5 | 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/mdns/mdns.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/page/API/pages/mdns/mdns.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/request/request.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "网络请求" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/udp-socket/udp-socket.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "UDPSocket" 5 | 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/upload-file/upload-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "上传文件" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/web-socket/web-socket.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "Web Socket" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/network/web-socket/web-socket.wxss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/nouse/custom-service/custom-service.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "客服消息" 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/nouse/doc-web-view/doc-web-view.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "小程序接口文档" 3 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/nouse/doc-web-view/doc-web-view.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/nouse/doc-web-view/doc-web-view.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/page/API/pages/doc-web-view/doc-web-view.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/nouse/sendMessage/sendMessage.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发送模板消息" 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/action-sheet/action-sheet.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "操作菜单" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/action-sheet/action-sheet.wxss: -------------------------------------------------------------------------------- 1 | /* 2 | .cancel { 3 | color: white; 4 | background: #303F9F; 5 | } 6 | .item { 7 | color: black; 8 | background: #C5CAE9; 9 | }*/ 10 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/animation/animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "动画" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/canvas/canvas.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "创建画布" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "获取WXML节点信息" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/intersection-observer/intersection-observer.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "WXML节点布局相交状态" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/modal/modal.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "模态弹窗" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/modal/modal.wxss: -------------------------------------------------------------------------------- 1 | /* page/API/pages/modal/modal.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/navigation-bar-loading/navigation-bar-loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "标题栏加载动画" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/navigator/navigator.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "页面跳转" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/page-scroll/page-scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "页面滚动" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/page-scroll/page-scroll.wxss: -------------------------------------------------------------------------------- 1 | .rect { 2 | width: 50px; 3 | height: 50px; 4 | background-color: #ccc; 5 | } 6 | 7 | .filling-area { 8 | height: 1250px; 9 | } 10 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss: -------------------------------------------------------------------------------- 1 | .page-body-info { 2 | background-color: transparent; 3 | } 4 | .btn-area{ 5 | margin-top: 150px; 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "设置页面标题" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss: -------------------------------------------------------------------------------- 1 | /* @import "../../../common/lib/weui.wxss"; */ 2 | 3 | .weui-label{ 4 | width: 5em; 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/toast/toast.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "消息提示框" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/page/toast/toast.wxss: -------------------------------------------------------------------------------- 1 | /* page/API/pages/toast/toast.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/performance/get-performance/get-performance.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "性能数据" 5 | 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "周期性更新数据" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "数据预拉取" 5 | 6 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/storage/storage/storage.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "数据存储" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/worker/worker/worker.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "多线程Worker" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/worker/worker/worker/worker.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/worker/worker/worker/worker.wxml: -------------------------------------------------------------------------------- 1 | 2 | packageAPI/pages/worker/worker/worker/worker.wxml 3 | -------------------------------------------------------------------------------- /miniprogram/packageAPI/pages/worker/worker/worker/worker.wxss: -------------------------------------------------------------------------------- 1 | /* packageAPI/pages/worker/worker/worker/worker.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/apiCategory/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/apiCategory/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{apiCategory === 'chatTool' ? '聊天工具模式' : '普通模式'}} 4 | 5 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/badge/badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/badge/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './type'; 2 | export * from './props'; 3 | export * from './badge'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/badge/index.js: -------------------------------------------------------------------------------- 1 | export * from './type'; 2 | export * from './props'; 3 | export * from './badge'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/badge/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdBadgeProps } from './type'; 2 | declare const props: TdBadgeProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/badge/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/button/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './type'; 3 | export * from './button'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/button/index.js: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './type'; 3 | export * from './button'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/button/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdButtonProps } from './type'; 2 | declare const props: TdButtonProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/button/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/cell-group/cell-group.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/cell-group/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCellGroupProps } from './type'; 2 | declare const props: TdCellGroupProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/cell-group/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/cell/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCellProps } from './type'; 2 | declare const props: TdCellProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/cell/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/checkbox-group/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCheckboxGroupProps } from './type'; 2 | declare const props: TdCheckboxGroupProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/checkbox-group/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/checkbox/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdCheckboxProps } from './type'; 2 | declare const props: TdCheckboxProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/checkbox/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/common.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/component.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare const TComponent: typeof Component; 3 | export default TComponent; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/config.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: { 2 | prefix: string; 3 | }; 4 | export default _default; 5 | export declare const prefix = "t"; 6 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | prefix: "t", 3 | }; 4 | export const prefix = "t"; 5 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/shared/calendar/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/shared/color-picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './cmyk'; 2 | export * from './color'; 3 | export * from './gradient'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/shared/color-picker/index.js: -------------------------------------------------------------------------------- 1 | export * from './cmyk'; 2 | export * from './color'; 3 | export * from './gradient'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/src/superComponent.js: -------------------------------------------------------------------------------- 1 | export class SuperComponent { 2 | constructor() { 3 | this.app = getApp(); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/style/utilities/_animation.wxss: -------------------------------------------------------------------------------- 1 | @keyframes tdesign-fade-out { 2 | from { 3 | opacity: 1; 4 | } 5 | to { 6 | opacity: 0; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/common/style/utilities/_float.wxss: -------------------------------------------------------------------------------- 1 | .t-float-left { 2 | float: left; 3 | } 4 | .t-float-right { 5 | float: right; 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/divider/divider.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/divider/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdDividerProps } from './type'; 2 | declare const props: TdDividerProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/divider/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/empty/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdEmptyProps } from './type'; 2 | declare const props: TdEmptyProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/empty/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/icon/icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/icon/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdIconProps } from './type'; 2 | declare const props: TdIconProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/icon/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/image/index.js: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './image'; 3 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/image/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdImageProps } from './type'; 2 | declare const props: TdImageProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/image/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/indexes/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdIndexesProps } from './type'; 2 | declare const props: TdIndexesProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/indexes/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './type'; 3 | export * from './loading'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/loading/index.js: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './type'; 3 | export * from './loading'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/loading/loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/loading/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdLoadingProps } from './type'; 2 | declare const props: TdLoadingProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/loading/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/mixins/page-scroll.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: (funcName?: string) => string; 2 | export default _default; 3 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/mixins/theme-change.d.ts: -------------------------------------------------------------------------------- 1 | declare const themeChangeBehavior: string; 2 | export default themeChangeBehavior; 3 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: string; 2 | export default _default; 3 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export default function transition(): string; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/mixins/using-custom-navbar.d.ts: -------------------------------------------------------------------------------- 1 | declare const useCustomNavbarBehavior: string; 2 | export default useCustomNavbarBehavior; 3 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/navbar/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdNavbarProps } from './type'; 2 | declare const props: TdNavbarProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/navbar/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/progress/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdProgressProps } from './type'; 2 | declare const props: TdProgressProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/progress/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/radio-group/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdRadioGroupProps } from './type'; 2 | declare const props: TdRadioGroupProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/radio-group/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/radio/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdRadioProps } from './type'; 2 | declare const props: TdRadioProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/radio/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/slider/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdSliderProps } from './type'; 2 | declare const props: TdSliderProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/slider/slider.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/slider/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/sticky/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './type'; 3 | export * from './sticky'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/sticky/index.js: -------------------------------------------------------------------------------- 1 | export * from './props'; 2 | export * from './type'; 3 | export * from './sticky'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/sticky/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdStickyProps } from './type'; 2 | declare const props: TdStickyProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/sticky/sticky.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/sticky/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/switch/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdSwitchProps } from './type'; 2 | declare const props: TdSwitchProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/switch/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/tab-panel/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdTabPanelProps } from './type'; 2 | declare const props: TdTabPanelProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/tab-panel/tab-panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "apply-shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/tab-panel/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/tabs/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './tabs'; 2 | export * from './type'; 3 | export * from './props'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/tabs/index.js: -------------------------------------------------------------------------------- 1 | export * from './tabs'; 2 | export * from './type'; 3 | export * from './props'; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/tabs/props.d.ts: -------------------------------------------------------------------------------- 1 | import { TdTabsProps } from './type'; 2 | declare const props: TdTabsProps; 3 | export default props; 4 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/components/tdesign-miniprogram/tabs/type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram/packageChatTool/entry.js: -------------------------------------------------------------------------------- 1 | wx.cloud.init({ 2 | env: 'release-b86096', 3 | traceUser: true, 4 | }) 5 | 6 | const enterOptions = wx.getEnterOptionsSync() 7 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/database/crud/crud.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "基本操作" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/database/crud/crud.wxss: -------------------------------------------------------------------------------- 1 | 2 | 3 | .page-body-info { 4 | padding: 15px 0 15px 0; 5 | } 6 | 7 | .page-body-text { 8 | padding: 0 15px; 9 | text-align: center; 10 | } 11 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/database/db-permission/db-permission.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "权限管理" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/database/server-date/server-date.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "服务端时间" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/nouse/crud-detail/crud-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "基本操作" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/nouse/crud-detail/crud-detail.wxss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/nouse/doc-web-view/doc-web-view.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "小程序云开发文档" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/nouse/doc-web-view/doc-web-view.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/nouse/doc-web-view/doc-web-view.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/page/cloud/pages/doc-web-view/doc-web-view.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/scf/get-wx-context/get-wx-context.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "WXContext" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/scf/scf-database/scf-database.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "云函数操作数据库" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/scf/scf-openapi/scf-openapi.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "云调用" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/scf/scf-storage/scf-storage.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "云函数操作存储" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/storage/cloud-file-component/cloud-file-component.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "组件支持" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/storage/delete-file/delete-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "删除文件" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/storage/download-file/download-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "下载文件" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/storage/get-temp-file-url/get-temp-file-url.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "换取临时链接" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/storage/upload-file/upload-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "上传文件" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/pages/user/user-authentication/user-authentication.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "webview", 3 | "navigationBarTitleText": "用户鉴权" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/db_dump/perm1.json: -------------------------------------------------------------------------------- 1 | {"_openid":"kiki","whatsUp":"心情美美哒"} 2 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/db_dump/perm2.json: -------------------------------------------------------------------------------- 1 | {"_openid":"popo","email":"popo@weixin.qq.com"} 2 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/db_dump/perm3.json: -------------------------------------------------------------------------------- 1 | {"_openid":"admin","price":"58","name":"微信气泡狗抱枕"} 2 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/db_dump/perm4.json: -------------------------------------------------------------------------------- 1 | {"_openid":"server","data":"DEMO_SERVER_DATA"} 2 | -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/kind/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageCloud/resources/kind/database.png -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/kind/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageCloud/resources/kind/logo.png -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/kind/scf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageCloud/resources/kind/scf.png -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/kind/scf_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageCloud/resources/kind/scf_dark.png -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/kind/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageCloud/resources/kind/storage.png -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/kind/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageCloud/resources/kind/user.png -------------------------------------------------------------------------------- /miniprogram/packageCloud/resources/kind/user_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageCloud/resources/kind/user_dark.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/canvas/canvas/canvas.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/canvas/canvas/canvas.wxml: -------------------------------------------------------------------------------- 1 | 2 | packageComponent/pages/canvas/canvas/canvas.wxml 3 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/canvas/canvas/canvas.wxss: -------------------------------------------------------------------------------- 1 | /* packageComponent/pages/canvas/canvas/canvas.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/canvas/webgl/webgl.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "webgl", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/content/icon/icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "icon", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/content/progress/progress.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "progress", 3 | "navigationStyle": "default", 4 | "renderer": "webview" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/content/selection/selection.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "selection", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/doc-web-view/doc-web-view.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "小程序组件文档", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/doc-web-view/doc-web-view.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/doc-web-view/doc-web-view.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/page/component/pages/doc-web-view/doc-web-view.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/editor/editor.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "editor", 3 | "disableScroll": true, 4 | "renderer": "webview" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/form/form.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "form", 3 | "componentFramework": "glass-easel", 4 | "renderer": "skyline", 5 | "navigationStyle": "custom" 6 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/label/label.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "label", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/picker-view/picker-view.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "picker-view", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/radio/radio.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "radio", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/radio/radio.wxss: -------------------------------------------------------------------------------- 1 | 2 | 3 | .radio { 4 | margin-right: 10px; 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/slider/slider.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "slider", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/slider/slider.wxss: -------------------------------------------------------------------------------- 1 | /* packageComponent/pages/form/slider/slider.wxss */ 2 | 3 | slider { 4 | margin: 0; 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/switch/switch.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "switch", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/textarea/textarea.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "textarea", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/form/textarea/textarea.wxss: -------------------------------------------------------------------------------- 1 | textarea { 2 | width: 350px; 3 | padding: 13px 0; 4 | } 5 | .textarea-wrp { 6 | padding: 0 13px; 7 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/map-styles/map-styles.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "map底图样式" 3 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/map-styles/map-styles.wxss: -------------------------------------------------------------------------------- 1 | .page-section-ctn { 2 | text-align: center; 3 | } 4 | 5 | .image { 6 | margin-top: 15px; 7 | width: 245px; 8 | height: 284px; 9 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/media/camera-scan-code/camera-scan-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "camera", 3 | "navigationStyle": "custom" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/media/channel-live/channel-live.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "channel-live", 4 | "renderer": "webview" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/media/channel-video/channel-video.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "channel-video", 4 | "renderer": "webview" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/media/live-player/live-player.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "live-player", 4 | "renderer": "webview" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/media/live-pusher/live-pusher.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "live-pusher", 4 | "renderer": "webview" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/media/video/picture-in-picture.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "video" 3 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/nav/navigator/navigate.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../common/reset.wxss"; 2 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/nav/navigator/redirect.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../common/reset.wxss"; 2 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/obstacle-free/aria-component/aria-component.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "aria-component", 4 | "renderer": "webview" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/official-account/official-account.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/official-account/official-account.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/page/component/pages/official-account/official-account.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/open/ad/ad.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "ad", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/open/ad/ad.wxss: -------------------------------------------------------------------------------- 1 | /* packageComponent/pages/open/ad/ad.wxss */ 2 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/open/open-data/open-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "open-data", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/open/web-view/web-view.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "webview", 3 | "renderer": "webview" 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/open/web-view/web-view.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/cover-view/cover-view.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "cover-view", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/grid-view/demo-1/demo-1.wxss: -------------------------------------------------------------------------------- 1 | .header { 2 | height: 100px; 3 | } 4 | 5 | .cell { 6 | height: 50px; 7 | justify-content: center; 8 | align-items: center; 9 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/grid-view/demo-2/demo-2.wxss: -------------------------------------------------------------------------------- 1 | .header { 2 | height: 100px; 3 | } 4 | 5 | .cell { 6 | height: 50px; 7 | justify-content: center; 8 | align-items: center; 9 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/match-media/match-media.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "match-media", 3 | "pageOrientation": "auto", 4 | "renderer": "webview" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/movable-view/movable-view.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "movable-view", 3 | "renderer": "webview" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/sticky/sticky-header/sticky-header.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "skyline", 4 | "componentFramework": "glass-easel" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/sticky/sticky-header/sticky-header.wxss: -------------------------------------------------------------------------------- 1 | .header { 2 | height: 100px; 3 | } 4 | 5 | .cell { 6 | height: 50px; 7 | justify-content: center; 8 | align-items: center; 9 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/sticky/sticky-section/sticky-section.json: -------------------------------------------------------------------------------- 1 | { 2 | "renderer": "skyline", 3 | "componentFramework": "glass-easel" 4 | } -------------------------------------------------------------------------------- /miniprogram/packageComponent/pages/view/sticky/sticky.json: -------------------------------------------------------------------------------- 1 | { 2 | "componentFramework": "glass-easel", 3 | "renderer": "skyline", 4 | "disableScroll": true, 5 | "navigationStyle": "custom" 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/canvas.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/content.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/daytime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/daytime.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/form.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/logo.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/map.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/media.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/nav.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/night.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/open.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/kind/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/kind/view.png -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/pic/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/pic/1.jpg -------------------------------------------------------------------------------- /miniprogram/packageComponent/resources/pic/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageComponent/resources/pic/2.jpg -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/actionsheet/actionsheet.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/actionsheet/actionsheet.wxss: -------------------------------------------------------------------------------- 1 | .weui-mask.weui-mask_hidden{opacity:0;transform:scale3d(1, 1, 0)}.weui-mask{opacity:1;transform:scale3d(1, 1, 1);transition:all .3s} -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/badge/badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/badge/badge.wxml: -------------------------------------------------------------------------------- 1 | {{content}} -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/cell/cell.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "mp-cells": "../cells/cells" 5 | }, 6 | "styleIsolation": "apply-shared" 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/cell/cell.wxss: -------------------------------------------------------------------------------- 1 | .weui-cell_wxss.weui-cell_wxss:before{display:block} -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/cells/cells.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/checkbox-group/checkbox-group.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "mp-cells": "../cells/cells" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/col/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/dialog/dialog.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/emoji/emoji.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/form-page/form-page.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/form/form.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/form/form.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/gallery/gallery.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/gallery/gallery.wxss: -------------------------------------------------------------------------------- 1 | .weui-gallery{display:none}.weui-gallery_show.weui-gallery{display:flex} -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/grids/grids.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/grids/grids.wxss: -------------------------------------------------------------------------------- 1 | .weui-grid .weui-grid__icon_img{width:100%;height:100%} -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/icon/icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/index-list/index-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/loading/loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/msg/msg.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/msg/msg.wxss: -------------------------------------------------------------------------------- 1 | .weui-msg__icon-img{width:95px;height:95px} -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/navigation-bar/navigation-bar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/row/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/row/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/row/index.wxss: -------------------------------------------------------------------------------- 1 | :host{position:relative;box-sizing:border-box;width:100%}.weui-row-before{display:table}.weui-row-after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/searchbar/searchbar.wxss: -------------------------------------------------------------------------------- 1 | .weui-search-bar__label text{display:inline-block;font-size:14px;vertical-align:middle} -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/select-text/select-text.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/slideview/slideview.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/sticky/sticky.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/sticky/sticky.wxss: -------------------------------------------------------------------------------- 1 | .weui-sticky { 2 | position: relative 3 | } 4 | 5 | .weui-sticky__fixed { 6 | position: fixed; 7 | left: 0; 8 | top: 0 9 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/tabbar/tabbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "mp-badge": "../badge/badge" 5 | }, 6 | "styleIsolation": "apply-shared" 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/tabbar/tabbar.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/components/tabbar/tabbar.wxss -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/tabs/tabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/toptips/toptips.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/uploader/uploader.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "mp-gallery": "../gallery/gallery" 5 | }, 6 | "styleIsolation": "apply-shared" 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/video-swiper/video-swiper.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/vtabs-content/vtabs-content.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/vtabs-content/vtabs-content.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/vtabs-content/vtabs-content.wxss: -------------------------------------------------------------------------------- 1 | .weui-tabs-content__item { 2 | width: 100%; 3 | height: 100% 4 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/components/vtabs/vtabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "apply-shared" 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/adapt/customscreenvalidation/customscreenvalidation.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "特殊屏幕验证" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/adapt/sidenavigation/sidenavigation.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "renderer": "webview", 4 | "navigationBarTitleText": "侧边导航栏" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/article/article.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/article/article.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | 3 | page{ 4 | /* background-color: #FFFFFF; */ 5 | } 6 | image{ 7 | margin: 4px 0; 8 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/badge/badge.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/badge/badge.wxss: -------------------------------------------------------------------------------- 1 | /* example/badge/badge.wxss */ 2 | @import '../../common.wxss'; 3 | 4 | .blue { 5 | background: blue; 6 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/flex/flex.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/footer/footer.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/gallery/gallery.wxss: -------------------------------------------------------------------------------- 1 | /* example/gallery/gallery.wxss */ 2 | @import '../../common.wxss'; 3 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/grid/grid.wxss: -------------------------------------------------------------------------------- 1 | /* example/grid/grid.wxss */ 2 | @import '../../common.wxss'; 3 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/loadmore/loadmore.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/base/preview/preview.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/extend/tabs/webview.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/extend/tabs/webview.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/extend/tabs/webview.wxss: -------------------------------------------------------------------------------- 1 | /* miniprogram/packageExtend/pages/extend/tabs/webview.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/form/cell/cell.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/form/uploader/uploader.wxss: -------------------------------------------------------------------------------- 1 | /* example/uploader/uploader.wxss */ 2 | @import '../../common.wxss'; 3 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/image/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/image/button.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/image/button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/image/button1.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/image/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/image/device.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/image/device1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/image/device1.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/images/icon_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/images/icon_footer.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/images/icon_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/images/icon_intro.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/images/icon_nav_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/images/icon_nav_nav.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/images/icon_tabbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/images/icon_tabbar.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/images/logo.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/images/pic_160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/images/pic_160.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/images/pic_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/images/pic_article.png -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/images/vcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/packageExtend/pages/images/vcode.jpg -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/navigation/navigation/navigation.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/dialog/dialog.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | 3 | page{ 4 | /* background-color: #FFFFFF; */ 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg_fail.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg_fail.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | 3 | page{ 4 | background-color: #FFFFFF; 5 | } 6 | page,.page{height:100%;} 7 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg_success.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg_success.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | 3 | page{ 4 | background-color: #FFFFFF; 5 | } 6 | page,.page{height:100%;} 7 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg_text.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg_text.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | 3 | page{ 4 | background-color: #FFFFFF; 5 | } 6 | page,.page{height:100%;} 7 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg_text_primary.js: -------------------------------------------------------------------------------- 1 | import CustomPage from '../../../base/CustomPage' 2 | 3 | CustomPage({}) 4 | -------------------------------------------------------------------------------- /miniprogram/packageExtend/pages/operate/msg/msg_text_primary.wxss: -------------------------------------------------------------------------------- 1 | @import '../../common.wxss'; 2 | 3 | page{ 4 | background-color: #FFFFFF; 5 | } 6 | page,.page{height:100%;} 7 | -------------------------------------------------------------------------------- /miniprogram/packageSkyline/common/tips.js: -------------------------------------------------------------------------------- 1 | export function showTips() { 2 | wx.showToast({ 3 | title: '该版本暂不支持 Skyline', 4 | icon: 'none', 5 | duration: 3000 6 | }) 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/pull-down-list/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-arGlasses/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-arGlasses/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-arLine/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-arLine/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-arPreview/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-arPreview/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-arui/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-arui/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-blendDouble/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-blendDouble/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-control/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-control/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-dissolve/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame", 5 | "disableScroll": true 6 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-dissolve/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-featherVideo/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-featherVideo/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-frameEffect/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-frameEffect/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-geometry/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-geometry/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-gltfAnimation/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-gltfAnimation/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-gltfEdit/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-gltfEdit/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-gltfOcclusion/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-gltfOcclusion/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-gltfUVAnimation/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-gltfUVAnimation/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-loading/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-lookat/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-lookat/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-markerCenter/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-markerCenter/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-markerLock/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-markerLock/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-message/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-message/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-pbr/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-pbr/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-planeShadow/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-planeShadow/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-removeBlack/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-removeBlack/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-select/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-share/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-share/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-textEdit/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-textEdit/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-toon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-toon/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-tracker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-tracker/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-volumeVideo/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/template/xr-template-volumeVideo/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-2dmarker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-2dmarker/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-basic/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-basic/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-body-3d/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-body-3d/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-body/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-body/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-camera/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-camera/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-face-3d/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-face-3d/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-face/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-face/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-hand-3d/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-hand-3d/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-hand/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-hand/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-osdmarker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-osdmarker/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-shoe/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-shoe/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-threeDof/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-threeDof/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-vio-depth/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-vio-depth/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-vio-marker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-ar-vio-marker/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-alpha/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-alpha/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-animation/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-animation/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-envData/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-envData/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-light/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-light/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-postprocessing/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-postprocessing/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-render-texture/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-render-texture/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-shadow/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-shadow/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-shadow/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-share/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-share/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-touch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-touch/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-video/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-video/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-visible-layer/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic-visible-layer/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-basic/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-beside-edge/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-beside-edge/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-face/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-face/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-osd/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-osd/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-perspect/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-perspect/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-portal/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-portal/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-video/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-video/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-wxball/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-classic-wxball/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-custom-logic/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-custom-logic/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-custom-render/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-custom-render/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-customParticle-firework/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-customParticle-meshEmitter/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-customParticle-orb/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-customParticle-portal/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-customParticle-shapeEmitter/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-demo-viewer/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-animation/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-animation/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-compressTextures/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-compressTextures/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-damageHelmet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-damageHelmet/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-light-loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-light-loading/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-lightsPunctual/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-lightsPunctual/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-morph/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-morph/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-sheen/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-sheen/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-specularGlossiness/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-specularGlossiness/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-textureTransform/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-textureTransform/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-transmission/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-transmission/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-unlit/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-gltf-unlit/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-last-record/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-last-record/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-particle-custom/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-particle-firework/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-particle-meshEmitter/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-particle-orb/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-particle-portal/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-particle-shapeEmitter/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-physics-shoot/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-physics-shoot/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-physics-throw/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-physics-throw/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-scan-render/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-scan-render/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-scan-team/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/components/xr-scan-team/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/xr-custom/components/Particle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "renderer": "xr-frame" 5 | } -------------------------------------------------------------------------------- /miniprogram/packageXRFrame/xr-custom/components/Particle/index.wxss: -------------------------------------------------------------------------------- 1 | /* xr/index.wxss */ -------------------------------------------------------------------------------- /miniprogram/page/API/components/set-tab-bar/set-tab-bar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/page/API/components/set-tab-bar/set-tab-bar.wxss: -------------------------------------------------------------------------------- 1 | 2 | @import "../../../../app.wxss"; 3 | 4 | .container { 5 | width: 100vw; 6 | } 7 | .weui-label { 8 | width: 5em; 9 | } 10 | -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/api.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/api_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/api_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/ar.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/ar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/ar_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/chattoo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/chattoo_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/chattool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/chattool.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/device.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/device_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/device_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/feedback.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/feedback_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/feedback_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/framework.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/framework_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/framework_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/location.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/location_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/location_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/logo.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/media.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/media_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/media_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/network.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/network_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/network_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/page.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/page_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/page_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/performance.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/storage.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/storage_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/storage_dark.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/worker.png -------------------------------------------------------------------------------- /miniprogram/page/API/resources/kind/worker_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/API/resources/kind/worker_dark.png -------------------------------------------------------------------------------- /miniprogram/page/animation/resources/kind/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/animation/resources/kind/logo.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/db_dump/perm1.json: -------------------------------------------------------------------------------- 1 | {"_openid":"kiki","whatsUp":"心情美美哒"} 2 | -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/db_dump/perm2.json: -------------------------------------------------------------------------------- 1 | {"_openid":"popo","email":"popo@weixin.qq.com"} 2 | -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/db_dump/perm3.json: -------------------------------------------------------------------------------- 1 | {"_openid":"admin","price":"58","name":"微信气泡狗抱枕"} 2 | -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/db_dump/perm4.json: -------------------------------------------------------------------------------- 1 | {"_openid":"server","data":"DEMO_SERVER_DATA"} 2 | -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/database.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/database_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/database_dark.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/logo.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/scf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/scf.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/scf_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/scf_dark.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/storage.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/storage_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/storage_dark.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/user.png -------------------------------------------------------------------------------- /miniprogram/page/cloud/resources/kind/user_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/cloud/resources/kind/user_dark.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/canvas.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/content.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/daytime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/daytime.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/form.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/form_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/form_dark.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/logo.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/map.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/map_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/map_dark.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/media.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/nav.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/nav_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/nav_dark.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/night.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/open.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/open_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/open_dark.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/view.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/kind/view_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/kind/view_dark.png -------------------------------------------------------------------------------- /miniprogram/page/component/resources/pic/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/pic/1.jpg -------------------------------------------------------------------------------- /miniprogram/page/component/resources/pic/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/component/resources/pic/2.jpg -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_footer.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_footer_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_footer_link.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_intro.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_adaptive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_adaptive.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_extended.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_feedback.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_form.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_nav.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_search.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_special.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_widget.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_nav_z-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_nav_z-index.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/icon_tabbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/icon_tabbar.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/logo.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/logo_extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/logo_extended.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/pic_160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/pic_160.png -------------------------------------------------------------------------------- /miniprogram/page/extend/images/pic_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/miniprogram-demo/543439ea7b6f38f3d3a88bbe38c6a34142b7b1e8/miniprogram/page/extend/images/pic_article.png -------------------------------------------------------------------------------- /miniprogram/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } --------------------------------------------------------------------------------