This commit is contained in:
2023-08-11 10:45:20 +08:00
commit 161ca982f3
31850 changed files with 2706500 additions and 0 deletions

1
node_modules/vant/es/cell-group/index.css generated vendored Normal file
View File

@ -0,0 +1 @@
.van-cell-group{background-color:#fff}.van-cell-group--inset{margin:0 16px;overflow:hidden;border-radius:8px}.van-cell-group__title{padding:16px 16px 8px;color:#969799;font-size:14px;line-height:16px}.van-cell-group__title--inset{padding:16px 16px 8px 32px}

41
node_modules/vant/es/cell-group/index.js generated vendored Normal file
View File

@ -0,0 +1,41 @@
import _mergeJSXProps from "@vue/babel-helper-vue-jsx-merge-props";
// Utils
import { createNamespace } from '../utils';
import { inherit } from '../utils/functional';
import { BORDER_TOP_BOTTOM } from '../utils/constant'; // Types
var _createNamespace = createNamespace('cell-group'),
createComponent = _createNamespace[0],
bem = _createNamespace[1];
function CellGroup(h, props, slots, ctx) {
var _ref;
var Group = h("div", _mergeJSXProps([{
"class": [bem({
inset: props.inset
}), (_ref = {}, _ref[BORDER_TOP_BOTTOM] = props.border, _ref)]
}, inherit(ctx, true)]), [slots.default == null ? void 0 : slots.default()]);
if (props.title || slots.title) {
return h("div", {
"key": ctx.data.key
}, [h("div", {
"class": bem('title', {
inset: props.inset
})
}, [slots.title ? slots.title() : props.title]), Group]);
}
return Group;
}
CellGroup.props = {
title: String,
inset: Boolean,
border: {
type: Boolean,
default: true
}
};
export default createComponent(CellGroup);

22
node_modules/vant/es/cell-group/index.less generated vendored Normal file
View File

@ -0,0 +1,22 @@
@import '../style/var';
.van-cell-group {
background-color: @cell-group-background-color;
&--inset {
margin: @cell-group-inset-padding;
overflow: hidden;
border-radius: @cell-group-inset-border-radius;
}
&__title {
padding: @cell-group-title-padding;
color: @cell-group-title-color;
font-size: @cell-group-title-font-size;
line-height: @cell-group-title-line-height;
&--inset {
padding: @cell-group-inset-title-padding;
}
}
}

2
node_modules/vant/es/cell-group/style/index.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
import '../../style/base.css';
import '../index.css';

2
node_modules/vant/es/cell-group/style/less.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
import '../../style/base.less';
import '../index.less';