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