mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.10.7
This commit is contained in:
parent
01a389c58b
commit
4700001f32
1
dist/action-sheet/index.js
vendored
1
dist/action-sheet/index.js
vendored
@ -1,6 +1,7 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
|
classes: ['list-class'],
|
||||||
mixins: [button],
|
mixins: [button],
|
||||||
props: {
|
props: {
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
|
4
dist/action-sheet/index.wxml
vendored
4
dist/action-sheet/index.wxml
vendored
@ -6,7 +6,7 @@
|
|||||||
round="{{ round }}"
|
round="{{ round }}"
|
||||||
z-index="{{ zIndex }}"
|
z-index="{{ zIndex }}"
|
||||||
overlay="{{ overlay }}"
|
overlay="{{ overlay }}"
|
||||||
custom-class="van-action-sheet"
|
custom-class="van-action-sheet custom-class"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
@ -22,7 +22,7 @@
|
|||||||
<view wx:if="{{ description }}" class="van-action-sheet__description van-hairline--bottom">
|
<view wx:if="{{ description }}" class="van-action-sheet__description van-hairline--bottom">
|
||||||
{{ description }}
|
{{ description }}
|
||||||
</view>
|
</view>
|
||||||
<view wx:if="{{ actions && actions.length }}">
|
<view wx:if="{{ actions && actions.length }}" class="list-class">
|
||||||
<!-- button外包一层view,防止actions动态变化,导致渲染时button被打散 -->
|
<!-- button外包一层view,防止actions动态变化,导致渲染时button被打散 -->
|
||||||
<button
|
<button
|
||||||
wx:for="{{ actions }}"
|
wx:for="{{ actions }}"
|
||||||
|
1
dist/dropdown-item/index.js
vendored
1
dist/dropdown-item/index.js
vendored
@ -1,6 +1,7 @@
|
|||||||
import { useParent } from '../common/relation';
|
import { useParent } from '../common/relation';
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
|
classes: ['item-title-class'],
|
||||||
field: true,
|
field: true,
|
||||||
relation: useParent('dropdown-menu', function () {
|
relation: useParent('dropdown-menu', function () {
|
||||||
this.updateDataFromParent();
|
this.updateDataFromParent();
|
||||||
|
4
dist/dropdown-item/index.wxml
vendored
4
dist/dropdown-item/index.wxml
vendored
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<view
|
<view
|
||||||
wx:if="{{ showWrapper }}"
|
wx:if="{{ showWrapper }}"
|
||||||
class="{{ utils.bem('dropdown-item', direction) }}"
|
class="{{ utils.bem('dropdown-item', direction) }} custom-class"
|
||||||
style="{{ wrapperStyle }}"
|
style="{{ wrapperStyle }}"
|
||||||
>
|
>
|
||||||
<van-popup
|
<van-popup
|
||||||
@ -30,7 +30,7 @@
|
|||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
slot="title"
|
slot="title"
|
||||||
class="van-dropdown-item__title"
|
class="van-dropdown-item__title item-title-class"
|
||||||
style="{{ item.value === value ? 'color:' + activeColor : '' }}"
|
style="{{ item.value === value ? 'color:' + activeColor : '' }}"
|
||||||
>
|
>
|
||||||
{{ item.text }}
|
{{ item.text }}
|
||||||
|
1
dist/dropdown-menu/index.js
vendored
1
dist/dropdown-menu/index.js
vendored
@ -4,6 +4,7 @@ import { addUnit, getRect, getSystemInfoSync } from '../common/utils';
|
|||||||
let ARRAY = [];
|
let ARRAY = [];
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
|
classes: ['title-class'],
|
||||||
relation: useChildren('dropdown-item', function () {
|
relation: useChildren('dropdown-item', function () {
|
||||||
this.updateItemListData();
|
this.updateItemListData();
|
||||||
}),
|
}),
|
||||||
|
2
dist/dropdown-menu/index.wxml
vendored
2
dist/dropdown-menu/index.wxml
vendored
@ -10,7 +10,7 @@
|
|||||||
bind:tap="onTitleTap"
|
bind:tap="onTitleTap"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
class="{{ item.titleClass }} {{ utils.bem('dropdown-menu__title', { active: item.showPopup, down: item.showPopup === (direction === 'down') }) }}"
|
class="{{ item.titleClass }} {{ utils.bem('dropdown-menu__title', { active: item.showPopup, down: item.showPopup === (direction === 'down') }) }} title-class"
|
||||||
style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
|
style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
|
||||||
>
|
>
|
||||||
<view class="van-ellipsis">
|
<view class="van-ellipsis">
|
||||||
|
4
dist/search/index.js
vendored
4
dist/search/index.js
vendored
@ -4,6 +4,10 @@ VantComponent({
|
|||||||
field: true,
|
field: true,
|
||||||
classes: ['field-class', 'input-class', 'cancel-class'],
|
classes: ['field-class', 'input-class', 'cancel-class'],
|
||||||
props: {
|
props: {
|
||||||
|
value: {
|
||||||
|
type: String,
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
label: String,
|
label: String,
|
||||||
focus: Boolean,
|
focus: Boolean,
|
||||||
error: Boolean,
|
error: Boolean,
|
||||||
|
@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||||||
var component_1 = require("../common/component");
|
var component_1 = require("../common/component");
|
||||||
var button_1 = require("../mixins/button");
|
var button_1 = require("../mixins/button");
|
||||||
(0, component_1.VantComponent)({
|
(0, component_1.VantComponent)({
|
||||||
|
classes: ['list-class'],
|
||||||
mixins: [button_1.button],
|
mixins: [button_1.button],
|
||||||
props: {
|
props: {
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
round="{{ round }}"
|
round="{{ round }}"
|
||||||
z-index="{{ zIndex }}"
|
z-index="{{ zIndex }}"
|
||||||
overlay="{{ overlay }}"
|
overlay="{{ overlay }}"
|
||||||
custom-class="van-action-sheet"
|
custom-class="van-action-sheet custom-class"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
@ -22,7 +22,7 @@
|
|||||||
<view wx:if="{{ description }}" class="van-action-sheet__description van-hairline--bottom">
|
<view wx:if="{{ description }}" class="van-action-sheet__description van-hairline--bottom">
|
||||||
{{ description }}
|
{{ description }}
|
||||||
</view>
|
</view>
|
||||||
<view wx:if="{{ actions && actions.length }}">
|
<view wx:if="{{ actions && actions.length }}" class="list-class">
|
||||||
<!-- button外包一层view,防止actions动态变化,导致渲染时button被打散 -->
|
<!-- button外包一层view,防止actions动态变化,导致渲染时button被打散 -->
|
||||||
<button
|
<button
|
||||||
wx:for="{{ actions }}"
|
wx:for="{{ actions }}"
|
||||||
|
@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||||||
var relation_1 = require("../common/relation");
|
var relation_1 = require("../common/relation");
|
||||||
var component_1 = require("../common/component");
|
var component_1 = require("../common/component");
|
||||||
(0, component_1.VantComponent)({
|
(0, component_1.VantComponent)({
|
||||||
|
classes: ['item-title-class'],
|
||||||
field: true,
|
field: true,
|
||||||
relation: (0, relation_1.useParent)('dropdown-menu', function () {
|
relation: (0, relation_1.useParent)('dropdown-menu', function () {
|
||||||
this.updateDataFromParent();
|
this.updateDataFromParent();
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<view
|
<view
|
||||||
wx:if="{{ showWrapper }}"
|
wx:if="{{ showWrapper }}"
|
||||||
class="{{ utils.bem('dropdown-item', direction) }}"
|
class="{{ utils.bem('dropdown-item', direction) }} custom-class"
|
||||||
style="{{ wrapperStyle }}"
|
style="{{ wrapperStyle }}"
|
||||||
>
|
>
|
||||||
<van-popup
|
<van-popup
|
||||||
@ -30,7 +30,7 @@
|
|||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
slot="title"
|
slot="title"
|
||||||
class="van-dropdown-item__title"
|
class="van-dropdown-item__title item-title-class"
|
||||||
style="{{ item.value === value ? 'color:' + activeColor : '' }}"
|
style="{{ item.value === value ? 'color:' + activeColor : '' }}"
|
||||||
>
|
>
|
||||||
{{ item.text }}
|
{{ item.text }}
|
||||||
|
@ -6,6 +6,7 @@ var utils_1 = require("../common/utils");
|
|||||||
var ARRAY = [];
|
var ARRAY = [];
|
||||||
(0, component_1.VantComponent)({
|
(0, component_1.VantComponent)({
|
||||||
field: true,
|
field: true,
|
||||||
|
classes: ['title-class'],
|
||||||
relation: (0, relation_1.useChildren)('dropdown-item', function () {
|
relation: (0, relation_1.useChildren)('dropdown-item', function () {
|
||||||
this.updateItemListData();
|
this.updateItemListData();
|
||||||
}),
|
}),
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
bind:tap="onTitleTap"
|
bind:tap="onTitleTap"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
class="{{ item.titleClass }} {{ utils.bem('dropdown-menu__title', { active: item.showPopup, down: item.showPopup === (direction === 'down') }) }}"
|
class="{{ item.titleClass }} {{ utils.bem('dropdown-menu__title', { active: item.showPopup, down: item.showPopup === (direction === 'down') }) }} title-class"
|
||||||
style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
|
style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
|
||||||
>
|
>
|
||||||
<view class="van-ellipsis">
|
<view class="van-ellipsis">
|
||||||
|
@ -6,6 +6,10 @@ var version_1 = require("../common/version");
|
|||||||
field: true,
|
field: true,
|
||||||
classes: ['field-class', 'input-class', 'cancel-class'],
|
classes: ['field-class', 'input-class', 'cancel-class'],
|
||||||
props: {
|
props: {
|
||||||
|
value: {
|
||||||
|
type: String,
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
label: String,
|
label: String,
|
||||||
focus: Boolean,
|
focus: Boolean,
|
||||||
error: Boolean,
|
error: Boolean,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user