[breaking change] rebuild style struct (#2021)

This commit is contained in:
neverland 2018-11-03 21:08:06 +08:00 committed by GitHub
parent a5576762d8
commit 11ce2a602f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
165 changed files with 1371 additions and 4729 deletions

View File

@ -38,6 +38,5 @@ npm run dev
## Component Developing Guidelines ## Component Developing Guidelines
- Create new directory under `packages` for a new component. - Create new directory under `packages` for a new component.
- All the style code are located under `packages/vant-css/src`.
- Refer to `Sku` for nested components. - Refer to `Sku` for nested components.
- Refer to `Button` for components that depend on other components. - Refer to `Button` for components that depend on other components.

View File

@ -13,7 +13,7 @@
<img src="https://travis-ci.org/youzan/vant.svg?branch=master" alt="Build Status" /> <img src="https://travis-ci.org/youzan/vant.svg?branch=master" alt="Build Status" />
<img src="https://img.shields.io/npm/dt/vant.svg" alt="downloads" /> <img src="https://img.shields.io/npm/dt/vant.svg" alt="downloads" />
<img src="https://img.badgesize.io/https://unpkg.com/vant/lib/vant.min.js?compression=gzip&style=flat-square&label=JS%20gzip%20size" alt="JS Gzip Size" /> <img src="https://img.badgesize.io/https://unpkg.com/vant/lib/vant.min.js?compression=gzip&style=flat-square&label=JS%20gzip%20size" alt="JS Gzip Size" />
<img src="https://img.badgesize.io/https://unpkg.com/vant/lib/vant-css/index.css?compression=gzip&style=flat-square&label=CSS%20gzip%20size" alt="CSS Gzip Size" /> <img src="https://img.badgesize.io/https://unpkg.com/vant/lib/index.css?compression=gzip&style=flat-square&label=CSS%20gzip%20size" alt="CSS Gzip Size" />
<img src="https://isitmaintained.com/badge/open/youzan/vant.svg" alt="issue" /> <img src="https://isitmaintained.com/badge/open/youzan/vant.svg" alt="issue" />
<img src="https://img.shields.io/codecov/c/github/youzan/vant/dev.svg" alt="Coverage Status" /> <img src="https://img.shields.io/codecov/c/github/youzan/vant/dev.svg" alt="Coverage Status" />
</p> </p>
@ -53,7 +53,7 @@ yarn add vant
```html ```html
<!-- import style --> <!-- import style -->
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css" /> <link rel="stylesheet" href="https://unpkg.com/vant/lib/index.css" />
<!-- import script --> <!-- import script -->
<script src="https://unpkg.com/vue/dist/vue.min.js"></script> <script src="https://unpkg.com/vue/dist/vue.min.js"></script>
@ -95,8 +95,7 @@ import { Button } from 'vant';
```js ```js
import Button from 'vant/lib/button'; import Button from 'vant/lib/button';
import 'vant/lib/vant-css/base.css'; import 'vant/lib/button/style';
import 'vant/lib/vant-css/button.css';
``` ```
#### 3. Import all components #### 3. Import all components
@ -104,7 +103,7 @@ import 'vant/lib/vant-css/button.css';
```js ```js
import Vue from 'vue'; import Vue from 'vue';
import Vant from 'vant'; import Vant from 'vant';
import 'vant/lib/vant-css/index.css'; import 'vant/lib/index.css';
Vue.use(Vant); Vue.use(Vant);
``` ```

View File

@ -12,7 +12,7 @@
<img src="https://travis-ci.org/youzan/vant.svg?branch=master" alt="Build Status" /> <img src="https://travis-ci.org/youzan/vant.svg?branch=master" alt="Build Status" />
<img src="https://img.shields.io/npm/dt/vant.svg" alt="downloads" /> <img src="https://img.shields.io/npm/dt/vant.svg" alt="downloads" />
<img src="https://img.badgesize.io/https://unpkg.com/vant/lib/vant.min.js?compression=gzip&style=flat-square&label=JS%20gzip%20size" alt="JS Gzip Size" /> <img src="https://img.badgesize.io/https://unpkg.com/vant/lib/vant.min.js?compression=gzip&style=flat-square&label=JS%20gzip%20size" alt="JS Gzip Size" />
<img src="https://img.badgesize.io/https://unpkg.com/vant/lib/vant-css/index.css?compression=gzip&style=flat-square&label=CSS%20gzip%20size" alt="CSS Gzip Size" /> <img src="https://img.badgesize.io/https://unpkg.com/vant/lib/index.css?compression=gzip&style=flat-square&label=CSS%20gzip%20size" alt="CSS Gzip Size" />
<img src="https://isitmaintained.com/badge/open/youzan/vant.svg" alt="issue" /> <img src="https://isitmaintained.com/badge/open/youzan/vant.svg" alt="issue" />
<img src="https://img.shields.io/codecov/c/github/youzan/vant/dev.svg" alt="Coverage Status" /> <img src="https://img.shields.io/codecov/c/github/youzan/vant/dev.svg" alt="Coverage Status" />
</p> </p>
@ -54,7 +54,7 @@ yarn add vant
```html ```html
<!-- 引入样式 --> <!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css"> <link rel="stylesheet" href="https://unpkg.com/vant/lib/index.css">
<!-- 引入组件 --> <!-- 引入组件 -->
<script src="https://unpkg.com/vue/dist/vue.min.js"></script> <script src="https://unpkg.com/vue/dist/vue.min.js"></script>
@ -100,8 +100,7 @@ import { Button } from 'vant';
```js ```js
import Button from 'vant/lib/button'; import Button from 'vant/lib/button';
import 'vant/lib/vant-css/base.css'; import 'vant/lib/button/style';
import 'vant/lib/vant-css/button.css';
``` ```
#### 方式三. 导入所有组件 #### 方式三. 导入所有组件
@ -109,7 +108,7 @@ import 'vant/lib/vant-css/button.css';
```js ```js
import Vue from 'vue'; import Vue from 'vue';
import Vant from 'vant'; import Vant from 'vant';
import 'vant/lib/vant-css/index.css'; import 'vant/lib/index.css';
Vue.use(Vant); Vue.use(Vant);
``` ```

View File

@ -15,51 +15,56 @@ const compilerOption = {
} }
}; };
const whiteList = /(demo|vant-css|test|\.md)$/; const isDir = dir => fs.lstatSync(dir).isDirectory();
const isJs = path => /\.js$/.test(isJs);
const isSfc = path => /\.vue$/.test(path);
const isCode = path => !/(demo|test|\.md)$/.test(path);
function compile(dir) {
const files = fs.readdirSync(dir);
files.forEach(file => {
const filePath = path.join(dir, file);
// reomve unnecessary files
if (!isCode(file)) {
return fs.removeSync(filePath);
}
// scan dir
if (isDir(filePath)) {
return compile(filePath);
}
// compile sfc
if (isSfc(file)) {
const source = fs.readFileSync(filePath, 'utf-8');
fs.removeSync(filePath);
const jsPath = filePath.replace('.vue', '.js');
const vuePath = filePath + '.js';
const output = fs.existsSync(jsPath) ? vuePath : jsPath;
return fs.outputFileSync(output, compiler(source, compilerOption).js);
}
// compile js
if (isJs(file)) {
const { code } = babel.transformFileSync(filePath, compilerOption.babel);
fs.outputFileSync(filePath, code);
}
});
}
// clear dir // clear dir
fs.emptyDirSync(esDir); fs.emptyDirSync(esDir);
fs.emptyDirSync(libDir); fs.emptyDirSync(libDir);
// copy packages // compile es dir
fs.copySync(srcDir, esDir); fs.copySync(srcDir, esDir);
compile(esDir); compile(esDir);
function compile(dir, jsOnly = false) { // compile lib dir
const files = fs.readdirSync(dir);
files.forEach(file => {
const absolutePath = path.join(dir, file);
// reomve unnecessary files
if (whiteList.test(file)) {
fs.removeSync(absolutePath);
// scan dir
} else if (isDir(absolutePath)) {
return compile(absolutePath);
// compile sfc
} else if (/\.vue$/.test(file) && !jsOnly) {
const source = fs.readFileSync(absolutePath, 'utf-8');
fs.removeSync(absolutePath);
const outputVuePath = absolutePath + '.js';
const outputJsPath = absolutePath.replace('.vue', '.js');
const output = fs.existsSync(outputJsPath) ? outputVuePath : outputJsPath;
fs.outputFileSync(output, compiler(source, compilerOption).js);
} else if (/\.js$/.test(file)) {
const { code } = babel.transformFileSync(absolutePath, compilerOption.babel);
fs.outputFileSync(absolutePath, code);
}
});
}
process.env.BABEL_MODULE = 'commonjs'; process.env.BABEL_MODULE = 'commonjs';
fs.copySync(srcDir, libDir); fs.copySync(srcDir, libDir);
compile(libDir); compile(libDir);
function isDir(dir) {
return fs.lstatSync(dir).isDirectory();
}

View File

@ -13,10 +13,9 @@ const config = require('../packages/icon/config');
const local = require('../packages/icon/config/template-local'); const local = require('../packages/icon/config/template-local');
const iconDir = path.join(__dirname, '../packages/icon'); const iconDir = path.join(__dirname, '../packages/icon');
const cssDir = path.join(__dirname, '../packages/vant-css/src');
const svgDir = path.join(iconDir, 'svg'); const svgDir = path.join(iconDir, 'svg');
const sketch = path.join(iconDir, 'assets/icons.sketch'); const sketch = path.join(iconDir, 'assets/icons.sketch');
const template = path.join(iconDir, 'config/template.css'); const template = path.join(iconDir, 'config/template.tpl');
// get md5 from sketch // get md5 from sketch
const md5 = md5File.sync(sketch).slice(0, 6); const md5 = md5File.sync(sketch).slice(0, 6);
@ -49,7 +48,7 @@ gulp.task('ttf', () => {
iconfontCss({ iconfontCss({
fontName: config.name, fontName: config.name,
path: template, path: template,
targetPath: '../vant-css/src/icon.css', targetPath: '../icon/index.css',
normalize: true, normalize: true,
firstGlyph: 0xf000, firstGlyph: 0xf000,
cssClass: ttf // this is a trick to pass ttf to template cssClass: ttf // this is a trick to pass ttf to template
@ -67,7 +66,7 @@ gulp.task('ttf', () => {
gulp.task('default', ['ttf'], () => { gulp.task('default', ['ttf'], () => {
// generate icon-local.css // generate icon-local.css
fs.writeFileSync( fs.writeFileSync(
path.join(cssDir, 'icon-local.css'), path.join(iconDir, 'local.css'),
local(config.name, ttf) local(config.name, ttf)
); );

View File

@ -9,7 +9,7 @@ const tasks = [
'lint', 'lint',
'build:entry', 'build:entry',
'build:components', 'build:components',
'build:vant-css', 'build:style',
'build:style-entry', 'build:style-entry',
'build:vant' 'build:vant'
]; ];

View File

@ -6,15 +6,17 @@ const fs = require('fs-extra');
const path = require('path'); const path = require('path');
const components = require('./get-components')(); const components = require('./get-components')();
const dependencyTree = require('dependency-tree'); const dependencyTree = require('dependency-tree');
const whiteList = ['info', 'icon', 'loading', 'cell', 'button']; const whiteList = ['info', 'icon', 'loading', 'cell', 'cell-group', 'button'];
const dir = path.join(__dirname, '../es'); const dir = path.join(__dirname, '../es');
components.forEach(component => { components.forEach(component => {
const deps = analyzeDependencies(component); const deps = analyzeDependencies(component).map(dep =>
getStyleRelativePath(component, dep)
);
const esEntry = path.join(dir, component, 'style/index.js'); const esEntry = path.join(dir, component, 'style/index.js');
const libEntry = path.join(__dirname, '../lib', component, 'style/index.js'); const libEntry = path.join(__dirname, '../lib', component, 'style/index.js');
const esContent = deps.map(dep => `import '../../vant-css/${dep}.css';`).join('\n'); const esContent = deps.map(dep => `import '${dep}';`).join('\n');
const libContent = deps.map(dep => `require('../../vant-css/${dep}.css');`).join('\n'); const libContent = deps.map(dep => `require('${dep}');`).join('\n');
fs.outputFileSync(esEntry, esContent); fs.outputFileSync(esEntry, esContent);
fs.outputFileSync(libEntry, libContent); fs.outputFileSync(libEntry, libContent);
@ -45,17 +47,38 @@ function search(tree, component, checkList) {
Object.keys(tree).forEach(key => { Object.keys(tree).forEach(key => {
search(tree[key], component, checkList); search(tree[key], component, checkList);
components components
.filter(item => key.replace(dir, '').split('/').includes(item)) .filter(item =>
key
.replace(dir, '')
.split('/')
.includes(item)
)
.forEach(item => { .forEach(item => {
if (!checkList.includes(item) && !whiteList.includes(item) && item !== component) { if (
!checkList.includes(item) &&
!whiteList.includes(item) &&
item !== component
) {
checkList.push(item); checkList.push(item);
} }
}); });
}); });
} }
function checkComponentHasStyle(component) { function getStylePath(component) {
return fs.existsSync( if (component === 'base') {
path.join(__dirname, `../es/vant-css/`, `${component}.css`) return path.join(__dirname, '../es/style/base.css');
}
return path.join(__dirname, `../es/${component}/index.css`);
}
function getStyleRelativePath(component, style) {
return path.relative(
path.join(__dirname, `../es/${component}/style`),
getStylePath(style)
); );
} }
function checkComponentHasStyle(component) {
return fs.existsSync(getStylePath(component));
}

16
build/build-style.js Normal file
View File

@ -0,0 +1,16 @@
const gulp = require('gulp');
const less = require('gulp-less');
const postcss = require('gulp-postcss');
const cssmin = require('gulp-clean-css');
// compile component css
gulp.task('compile', () => {
return gulp
.src(['../es/**/*.less', '../lib/**/*.less'])
.pipe(less())
.pipe(postcss())
.pipe(cssmin())
.pipe(gulp.dest(file => file.base.replace('.less', '.css')));
});
gulp.task('default', ['compile']);

View File

@ -1,8 +1,16 @@
const fs = require('fs'); const fs = require('fs');
const path = require('path'); const path = require('path');
const excludes = [
'index.js',
'index.less',
'style',
'mixins',
'utils',
'.DS_Store'
];
module.exports = function() { module.exports = function() {
const dirs = fs.readdirSync(path.resolve(__dirname, '../packages')); const dirs = fs.readdirSync(path.resolve(__dirname, '../packages'));
const excludes = ['index.js', 'vant-css', 'mixins', 'utils', '.DS_Store'];
return dirs.filter(dirName => excludes.indexOf(dirName) === -1); return dirs.filter(dirName => excludes.indexOf(dirName) === -1);
}; };

View File

@ -14,13 +14,6 @@ then
npm version $VERSION --no-git-tag-version npm version $VERSION --no-git-tag-version
VERSION=$VERSION npm run build:lib VERSION=$VERSION npm run build:lib
# publish vant-css
echo "Releasing vant-css $VERSION ..."
cd packages/vant-css
npm version $VERSION
npm publish
cd ../..
# commit # commit
git tag v$VERSION git tag v$VERSION
git commit -am "[release] $VERSION" git commit -am "[release] $VERSION"

View File

@ -56,11 +56,12 @@ module.exports = {
use: 'babel-loader' use: 'babel-loader'
}, },
{ {
test: /\.(css|postcss)$/, test: /\.less$/,
use: [ use: [
'style-loader', 'style-loader',
'css-loader', 'css-loader',
'postcss-loader' 'postcss-loader',
'less-loader'
] ]
}, },
{ {

View File

@ -339,7 +339,7 @@
- fix Progress text empty [\#1411](https://github.com/youzan/vant/pull/1411) - fix Progress text empty [\#1411](https://github.com/youzan/vant/pull/1411)
- fix Tab random insert order [\#1429](https://github.com/youzan/vant/pull/1429) - fix Tab random insert order [\#1429](https://github.com/youzan/vant/pull/1429)
- fix error when use Vue.use in typescript [\#1410](https://github.com/youzan/vant/pull/1410) - fix error when use Vue.use in typescript [\#1410](https://github.com/youzan/vant/pull/1410)
- fix vant-css missing dependencies [\#1426](https://github.com/youzan/vant/pull/1426) - fix style missing dependencies [\#1426](https://github.com/youzan/vant/pull/1426)
## [v1.1.11](https://github.com/youzan/vant/tree/v1.1.11) ## [v1.1.11](https://github.com/youzan/vant/tree/v1.1.11)
@ -1332,7 +1332,7 @@
**Breaking changes** **Breaking changes**
* remove reset.css in vant-css [\#192](https://github.com/youzan/vant/issues/192) [\#196](https://github.com/youzan/vant/pull/196) * remove reset.css in style [\#192](https://github.com/youzan/vant/issues/192) [\#196](https://github.com/youzan/vant/pull/196)
* reconstruct Swipe component, adjust some API [#174](https://github.com/youzan/vant/issues/174) [#180](https://github.com/youzan/vant/issues/180) [\#194](https://github.com/youzan/vant/pull/194) [\#200](https://github.com/youzan/vant/pull/200) * reconstruct Swipe component, adjust some API [#174](https://github.com/youzan/vant/issues/174) [#180](https://github.com/youzan/vant/issues/180) [\#194](https://github.com/youzan/vant/pull/194) [\#200](https://github.com/youzan/vant/pull/200)
* optimize Search componentadjust struct [\#198](https://github.com/youzan/vant/pull/198) * optimize Search componentadjust struct [\#198](https://github.com/youzan/vant/pull/198)
@ -1388,7 +1388,7 @@
* fix Button active border color [\#150](https://github.com/youzan/vant/issues/150) * fix Button active border color [\#150](https://github.com/youzan/vant/issues/150)
* fix Stepper input style [\#159](https://github.com/youzan/vant/pull/159) * fix Stepper input style [\#159](https://github.com/youzan/vant/pull/159)
* fix Waterfall disable props not work when display none [\#166](https://github.com/youzan/vant/pull/166) * fix Waterfall disable props not work when display none [\#166](https://github.com/youzan/vant/pull/166)
* fix vant-css not compile calc property after build * fix style not compile calc property after build
* fix npm run dev error in MacOS [\#152](https://github.com/youzan/vant/issues/152) * fix npm run dev error in MacOS [\#152](https://github.com/youzan/vant/issues/152)
* fix document router not work in some browsers [\#158](https://github.com/youzan/vant/pull/158) * fix document router not work in some browsers [\#158](https://github.com/youzan/vant/pull/158)

View File

@ -339,7 +339,7 @@
- 修复 Progress 文字为空时样式错误的问题 [\#1411](https://github.com/youzan/vant/pull/1411) - 修复 Progress 文字为空时样式错误的问题 [\#1411](https://github.com/youzan/vant/pull/1411)
- 修复 Tab 同时进行插入和删除时顺序错误的问题 [\#1429](https://github.com/youzan/vant/pull/1429) - 修复 Tab 同时进行插入和删除时顺序错误的问题 [\#1429](https://github.com/youzan/vant/pull/1429)
- 修复 Vue.use 方法 TypeScript 类型错误 [\#1410](https://github.com/youzan/vant/pull/1410) - 修复 Vue.use 方法 TypeScript 类型错误 [\#1410](https://github.com/youzan/vant/pull/1410)
- 修复 vant-css 依赖丢失 [\#1426](https://github.com/youzan/vant/pull/1426) - 修复 style 依赖丢失 [\#1426](https://github.com/youzan/vant/pull/1426)
## [v1.1.11](https://github.com/youzan/vant/tree/v1.1.11) ## [v1.1.11](https://github.com/youzan/vant/tree/v1.1.11)
@ -1325,7 +1325,7 @@
**Breaking changes** **Breaking changes**
* 移除 vant-css 中对 reset.css 的默认引用 [\#192](https://github.com/youzan/vant/issues/192) [\#196](https://github.com/youzan/vant/pull/196) * 移除 style 中对 reset.css 的默认引用 [\#192](https://github.com/youzan/vant/issues/192) [\#196](https://github.com/youzan/vant/pull/196)
* 重写 Swipe 组件,调整部分 API [#174](https://github.com/youzan/vant/issues/174) [#180](https://github.com/youzan/vant/issues/180) [\#194](https://github.com/youzan/vant/pull/194) [\#200](https://github.com/youzan/vant/pull/200) * 重写 Swipe 组件,调整部分 API [#174](https://github.com/youzan/vant/issues/174) [#180](https://github.com/youzan/vant/issues/180) [\#194](https://github.com/youzan/vant/pull/194) [\#200](https://github.com/youzan/vant/pull/200)
* 优化 Search 组件,修改原有结构 [\#198](https://github.com/youzan/vant/pull/198) * 优化 Search 组件,修改原有结构 [\#198](https://github.com/youzan/vant/pull/198)
@ -1381,7 +1381,7 @@
* 修复 Button active 状态下边框样式问题 [\#150](https://github.com/youzan/vant/issues/150) * 修复 Button active 状态下边框样式问题 [\#150](https://github.com/youzan/vant/issues/150)
* 修复 Stepper 组件输入框样式错误 [\#159](https://github.com/youzan/vant/pull/159) * 修复 Stepper 组件输入框样式错误 [\#159](https://github.com/youzan/vant/pull/159)
* 修复 Waterfall 未显示时 disable 属性无法生效的问题 [\#166](https://github.com/youzan/vant/pull/166) * 修复 Waterfall 未显示时 disable 属性无法生效的问题 [\#166](https://github.com/youzan/vant/pull/166)
* 修复 vant-css 构建过程中未编译 calc 属性的问题 * 修复 style 构建过程中未编译 calc 属性的问题
* 修复 MacOS 下 npm run dev 报错的问题 [\#152](https://github.com/youzan/vant/issues/152) * 修复 MacOS 下 npm run dev 报错的问题 [\#152](https://github.com/youzan/vant/issues/152)
* 修复文档在部分低版本浏览器路由失效的问题 [\#158](https://github.com/youzan/vant/pull/158) * 修复文档在部分低版本浏览器路由失效的问题 [\#158](https://github.com/youzan/vant/pull/158)
* 修复文档中遗漏 SwipeItem 组件引入方式的问题 [\#167](https://github.com/youzan/vant/pull/167) * 修复文档中遗漏 SwipeItem 组件引入方式的问题 [\#167](https://github.com/youzan/vant/pull/167)

View File

@ -34,7 +34,6 @@ npm run dev
### 目录结构 ### 目录结构
- 仓库的组件代码位于 packages 下,每个组件一个文件夹 - 仓库的组件代码位于 packages 下,每个组件一个文件夹
- 组件样式代码位于 packages/vant-css/src 下vant-css 也会在发布时单独发包
- docs 目录下是文档网站的代码,本地开发时可以在目录下运行 npm run dev 开启文档网站 - docs 目录下是文档网站的代码,本地开发时可以在目录下运行 npm run dev 开启文档网站
项目目录大致如下: 项目目录大致如下:
@ -59,10 +58,11 @@ packages
| ├─ test # 单元测试 | ├─ test # 单元测试
| ├─ zh-CN.md # 中文文档 | ├─ zh-CN.md # 中文文档
| ├─ en-US.md # 英文文档 | ├─ en-US.md # 英文文档
| ├─ index.less # 组件样式
| └─ index.vue # 组件入口 | └─ index.vue # 组件入口
└─ vant-css |
├─ index.css # 样式入口 ├─ index.js # 所有组件入口
└─ button.css # 组件样式 └─ index.less # 所有组件样式
``` ```
### 组件文档 ### 组件文档

View File

@ -41,7 +41,7 @@ yarn add vant
```html ```html
<!-- import style --> <!-- import style -->
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css" /> <link rel="stylesheet" href="https://unpkg.com/vant/lib/index.css" />
<!-- import script --> <!-- import script -->
<script src="https://unpkg.com/vue/dist/vue.min.js"></script> <script src="https://unpkg.com/vue/dist/vue.min.js"></script>
@ -94,8 +94,7 @@ import { Button } from 'vant';
```js ```js
import Button from 'vant/lib/button'; import Button from 'vant/lib/button';
import 'vant/lib/vant-css/base.css'; import 'vant/lib/button/style';
import 'vant/lib/vant-css/button.css';
``` ```
#### 3. Import all components #### 3. Import all components
@ -103,7 +102,7 @@ import 'vant/lib/vant-css/button.css';
```js ```js
import Vue from 'vue'; import Vue from 'vue';
import Vant from 'vant'; import Vant from 'vant';
import 'vant/lib/vant-css/index.css'; import 'vant/lib/index.css';
Vue.use(Vant); Vue.use(Vant);
``` ```

View File

@ -47,7 +47,7 @@ yarn add vant
```html ```html
<!-- 引入样式 --> <!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/vant/lib/vant-css/index.css"> <link rel="stylesheet" href="https://unpkg.com/vant/lib/index.css">
<!-- 引入组件 --> <!-- 引入组件 -->
<script src="https://unpkg.com/vue/dist/vue.min.js"></script> <script src="https://unpkg.com/vue/dist/vue.min.js"></script>
@ -104,8 +104,7 @@ import { Button, Cell } from 'vant';
```js ```js
import Button from 'vant/lib/button'; import Button from 'vant/lib/button';
import 'vant/lib/vant-css/base.css'; import 'vant/lib/button/style';
import 'vant/lib/vant-css/button.css';
``` ```
#### 方式三. 导入所有组件 #### 方式三. 导入所有组件
@ -113,7 +112,7 @@ import 'vant/lib/vant-css/button.css';
```js ```js
import Vue from 'vue'; import Vue from 'vue';
import Vant from 'vant'; import Vant from 'vant';
import 'vant/lib/vant-css/index.css'; import 'vant/lib/index.css';
Vue.use(Vant); Vue.use(Vant);
``` ```

View File

@ -7,14 +7,14 @@ You can import the postcss source code in your own project, then use [postcss-th
```javascript ```javascript
// import base style // import base style
import 'vant/packages/vant-css/src/base.css'; import 'vant/packages/style/base.css';
// import component style // import component style
import 'vant/packages/vant-css/src/button.css'; import 'vant/packages/button/index.css';
import 'vant/packages/vant-css/src/checkbox.css'; import 'vant/packages/checkbox/index.css';
``` ```
Then require the plugin in the postcss.config.js, and configure the variables according to project needs, you can view all the available variables in [profile](https://github.com/youzan/vant/blob/dev/packages/vant-css/src/common/var.css). Then require the plugin in the postcss.config.js, and configure the variables according to project needs, you can view all the available variables in [profile](https://github.com/youzan/vant/blob/dev/packages/style/var.less).
```javascript ```javascript
module.exports = { module.exports = {
@ -45,10 +45,10 @@ Vant also support local build to custom themes.
```bash ```bash
# Clone the repository # Clone the repository
git clone git@github.com:youzan/vant.git git clone git@github.com:youzan/vant.git
cd packages/vant-css cd packages/style
``` ```
In the local vant-css repository, modify the variables in src/common/var.css, then execute the following build command to generate the style file. In the local style repository, modify the variables in src/var.less, then execute the following build command to generate the style file.
```bash ```bash
npm run build npm run build
``` ```

View File

@ -7,14 +7,14 @@
```javascript ```javascript
// 引入基础样式 // 引入基础样式
import 'vant/packages/vant-css/src/base.css'; import 'vant/packages/style/base.css';
// 引入组件对应的样式 // 引入组件对应的样式
import 'vant/packages/vant-css/src/button.css'; import 'vant/packages/style/button/index.css';
import 'vant/packages/vant-css/src/checkbox.css'; import 'vant/packages/style/checkbox/index.css';
``` ```
接着在 postcss.config.js 中引入所需的 postcss 插件,并根据项目需求配置颜色变量,所有可用的颜色变量请参考 [配置文件](https://github.com/youzan/vant/blob/dev/packages/vant-css/src/common/var.css) 接着在 postcss.config.js 中引入所需的 postcss 插件,并根据项目需求配置颜色变量,所有可用的颜色变量请参考 [配置文件](https://github.com/youzan/vant/blob/dev/packages/style/var.less)
```javascript ```javascript
module.exports = { module.exports = {
@ -37,15 +37,15 @@ module.exports = {
``` ```
### 方案二. 本地构建 ### 方案二. 本地构建
可以通过在本地构建 vant-css 的方式生成所需的主题 可以通过在本地构建 style 的方式生成所需的主题
```bash ```bash
# 克隆仓库 # 克隆仓库
git clone git@github.com:youzan/vant.git git clone git@github.com:youzan/vant.git
cd packages/vant-css cd packages/style
``` ```
在本地 vant-css 仓库中,修改 src/common/var.css 中的颜色变量,然后执行以下构建命令,即可生成对应的样式文件 在本地 style 仓库中,修改 src/var.less 中的颜色变量,然后执行以下构建命令,即可生成对应的样式文件
```bash ```bash
npm run build npm run build
``` ```

View File

@ -46,7 +46,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.van-doc-intro { .van-doc-intro {
text-align: center; text-align: center;
font-family: "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif; font-family: "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;

View File

@ -38,7 +38,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
body { body {
color: #333; color: #333;
line-height: 1; line-height: 1;

View File

@ -56,8 +56,8 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
@import '../../../packages/vant-css/src/common/var.css'; @import '../../../packages/style/var';
.side-nav { .side-nav {
width: 100%; width: 100%;
@ -103,9 +103,9 @@ export default {
top: 15px; top: 15px;
right: 15px; right: 15px;
font-size: 11px; font-size: 11px;
border: 1px solid $blue; border: 1px solid @blue;
border-radius: 3px; border-radius: 3px;
color: $blue; color: @blue;
cursor: pointer; cursor: pointer;
span { span {
@ -116,7 +116,7 @@ export default {
&.active { &.active {
color: #fff; color: #fff;
background-color: $blue; background-color: @blue;
} }
} }
} }

View File

@ -84,7 +84,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.van-doc-demo-pages { .van-doc-demo-pages {
&__gallery { &__gallery {
margin-top: 30px; margin-top: 30px;

View File

@ -28,7 +28,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.mobile-nav { .mobile-nav {
&__item { &__item {
margin-bottom: 20px; margin-bottom: 20px;

View File

@ -42,6 +42,7 @@ export default {
'slider': () => wrapper(import('../../packages/slider/demo'), 'slider'), 'slider': () => wrapper(import('../../packages/slider/demo'), 'slider'),
'stepper': () => wrapper(import('../../packages/stepper/demo'), 'stepper'), 'stepper': () => wrapper(import('../../packages/stepper/demo'), 'stepper'),
'steps': () => wrapper(import('../../packages/steps/demo'), 'steps'), 'steps': () => wrapper(import('../../packages/steps/demo'), 'steps'),
'style': () => wrapper(import('../../packages/style/demo'), 'style'),
'submit-bar': () => wrapper(import('../../packages/submit-bar/demo'), 'submit-bar'), 'submit-bar': () => wrapper(import('../../packages/submit-bar/demo'), 'submit-bar'),
'swipe': () => wrapper(import('../../packages/swipe/demo'), 'swipe'), 'swipe': () => wrapper(import('../../packages/swipe/demo'), 'swipe'),
'swipe-cell': () => wrapper(import('../../packages/swipe-cell/demo'), 'swipe-cell'), 'swipe-cell': () => wrapper(import('../../packages/swipe-cell/demo'), 'swipe-cell'),
@ -53,6 +54,5 @@ export default {
'toast': () => wrapper(import('../../packages/toast/demo'), 'toast'), 'toast': () => wrapper(import('../../packages/toast/demo'), 'toast'),
'tree-select': () => wrapper(import('../../packages/tree-select/demo'), 'tree-select'), 'tree-select': () => wrapper(import('../../packages/tree-select/demo'), 'tree-select'),
'uploader': () => wrapper(import('../../packages/uploader/demo'), 'uploader'), 'uploader': () => wrapper(import('../../packages/uploader/demo'), 'uploader'),
'vant-css': () => wrapper(import('../../packages/vant-css/demo'), 'vant-css'),
'waterfall': () => wrapper(import('../../packages/waterfall/demo'), 'waterfall') 'waterfall': () => wrapper(import('../../packages/waterfall/demo'), 'waterfall')
}; };

View File

@ -40,7 +40,7 @@ module.exports = {
title: '更新日志' title: '更新日志'
}, },
{ {
path: '/vant-css', path: '/style',
title: '内置样式' title: '内置样式'
}, },
{ {
@ -344,7 +344,7 @@ module.exports = {
title: 'Changelog' title: 'Changelog'
}, },
{ {
path: '/vant-css', path: '/style',
title: 'Built-in style' title: 'Built-in style'
}, },
{ {

View File

@ -92,6 +92,8 @@ export default {
'stepper.zh-CN': () => import('../../packages/stepper/zh-CN.md'), 'stepper.zh-CN': () => import('../../packages/stepper/zh-CN.md'),
'steps.en-US': () => import('../../packages/steps/en-US.md'), 'steps.en-US': () => import('../../packages/steps/en-US.md'),
'steps.zh-CN': () => import('../../packages/steps/zh-CN.md'), 'steps.zh-CN': () => import('../../packages/steps/zh-CN.md'),
'style.en-US': () => import('../../packages/style/en-US.md'),
'style.zh-CN': () => import('../../packages/style/zh-CN.md'),
'submit-bar.en-US': () => import('../../packages/submit-bar/en-US.md'), 'submit-bar.en-US': () => import('../../packages/submit-bar/en-US.md'),
'submit-bar.zh-CN': () => import('../../packages/submit-bar/zh-CN.md'), 'submit-bar.zh-CN': () => import('../../packages/submit-bar/zh-CN.md'),
'swipe.en-US': () => import('../../packages/swipe/en-US.md'), 'swipe.en-US': () => import('../../packages/swipe/en-US.md'),
@ -114,8 +116,6 @@ export default {
'tree-select.zh-CN': () => import('../../packages/tree-select/zh-CN.md'), 'tree-select.zh-CN': () => import('../../packages/tree-select/zh-CN.md'),
'uploader.en-US': () => import('../../packages/uploader/en-US.md'), 'uploader.en-US': () => import('../../packages/uploader/en-US.md'),
'uploader.zh-CN': () => import('../../packages/uploader/zh-CN.md'), 'uploader.zh-CN': () => import('../../packages/uploader/zh-CN.md'),
'vant-css.en-US': () => import('../../packages/vant-css/en-US.md'),
'vant-css.zh-CN': () => import('../../packages/vant-css/zh-CN.md'),
'waterfall.en-US': () => import('../../packages/waterfall/en-US.md'), 'waterfall.en-US': () => import('../../packages/waterfall/en-US.md'),
'waterfall.zh-CN': () => import('../../packages/waterfall/zh-CN.md') 'waterfall.zh-CN': () => import('../../packages/waterfall/zh-CN.md')
}; };

View File

@ -1,4 +1,4 @@
import '../../packages/vant-css/src/index.css'; import '../../packages/index.less';
import Vue from 'vue'; import Vue from 'vue';
import VueRouter from 'vue-router'; import VueRouter from 'vue-router';
import App from './WapApp'; import App from './WapApp';

View File

@ -11,7 +11,7 @@ module.exports = {
snapshotSerializers: ['<rootDir>/node_modules/jest-serializer-vue'], snapshotSerializers: ['<rootDir>/node_modules/jest-serializer-vue'],
collectCoverageFrom: [ collectCoverageFrom: [
'packages/**/*.{js,vue}', 'packages/**/*.{js,vue}',
'!**/vant-css/**', '!**/style/**',
'!**/demo/**', '!**/demo/**',
'!**/locale/lang/**', '!**/locale/lang/**',
'!**/sku/**', '!**/sku/**',

View File

@ -4,7 +4,7 @@
"description": "Lightweight Mobile UI Components built on Vue", "description": "Lightweight Mobile UI Components built on Vue",
"main": "lib/index.js", "main": "lib/index.js",
"module": "es/index.js", "module": "es/index.js",
"style": "lib/vant-css/index.css", "style": "lib/index.css",
"typings": "types/index.d.ts", "typings": "types/index.d.ts",
"files": [ "files": [
"es", "es",
@ -13,13 +13,13 @@
"types" "types"
], ],
"scripts": { "scripts": {
"bootstrap": "yarn || npm i && cd ./packages/vant-css/ && yarn || npm i && cd ../../", "bootstrap": "yarn || npm i",
"dev": "npm run build:entry && webpack-serve --config build/webpack.dev.js", "dev": "npm run build:entry && webpack-serve --config build/webpack.dev.js",
"lint": "eslint ./packages --ext .js,.vue && stylelint \"packages/vant-css/src/*.css\"", "lint": "eslint ./packages --ext .js,.vue && stylelint \"packages/*.css\"",
"build:entry": "node build/build-entry.js", "build:entry": "node build/build-entry.js",
"build:components": "node build/build-components.js --color", "build:components": "node build/build-components.js --color",
"build:vant-css": "gulp build --gulpfile packages/vant-css/gulpfile.js --color --silent",
"build:vant": "cross-env NODE_ENV=production webpack --color --config build/webpack.build.js && cross-env NODE_ENV=production webpack -p --color --config build/webpack.build.js", "build:vant": "cross-env NODE_ENV=production webpack --color --config build/webpack.build.js && cross-env NODE_ENV=production webpack -p --color --config build/webpack.build.js",
"build:style": "gulp --gulpfile ./build/build-style.js",
"build:style-entry": "node build/build-style-entry.js", "build:style-entry": "node build/build-style-entry.js",
"build:changelog": "vant-doc changelog ./changelog.generated.md", "build:changelog": "vant-doc changelog ./changelog.generated.md",
"build:iconfont": "gulp --gulpfile ./build/build-iconfont.js", "build:iconfont": "gulp --gulpfile ./build/build-iconfont.js",
@ -72,38 +72,41 @@
"@babel/preset-env": "^7.1.0", "@babel/preset-env": "^7.1.0",
"@vue/server-test-utils": "^1.0.0-beta.25", "@vue/server-test-utils": "^1.0.0-beta.25",
"@vue/test-utils": "^1.0.0-beta.25", "@vue/test-utils": "^1.0.0-beta.25",
"autoprefixer": "^9.3.0", "autoprefixer": "^9.3.1",
"babel-core": "^7.0.0-0", "babel-core": "^7.0.0-0",
"babel-jest": "^23.6.0", "babel-jest": "^23.6.0",
"babel-loader": "^8.0.4", "babel-loader": "^8.0.4",
"codecov": "^3.1.0", "codecov": "^3.1.0",
"cross-env": "^5.2.0", "cross-env": "^5.2.0",
"css-loader": "^1.0.0", "css-loader": "^1.0.1",
"dependency-tree": "^6.2.1", "dependency-tree": "^6.2.1",
"eslint": "^5.7.0", "eslint": "^5.8.0",
"eslint-plugin-vue-libs": "^3.0.0", "eslint-plugin-vue-libs": "^3.0.0",
"fast-glob": "^2.2.3", "fast-glob": "^2.2.3",
"fast-vue-md-loader": "^1.0.3", "fast-vue-md-loader": "^1.0.3",
"gh-pages": "^2.0.1", "gh-pages": "^2.0.1",
"gulp": "^3.9.1", "gulp": "^3.9.1",
"gulp-clean-css": "^3.10.0",
"gulp-iconfont": "^10.0.2", "gulp-iconfont": "^10.0.2",
"gulp-iconfont-css": "^2.3.0", "gulp-iconfont-css": "^2.3.0",
"gulp-less": "^4.0.1",
"gulp-postcss": "^8.0.0",
"html-webpack-plugin": "3.2.0", "html-webpack-plugin": "3.2.0",
"husky": "^1.1.2", "husky": "^1.1.3",
"jest": "^23.6.0", "jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2", "jest-serializer-vue": "^2.0.2",
"lint-staged": "^7.3.0", "less": "^3.8.1",
"less-loader": "^4.1.0",
"lint-staged": "^8.0.4",
"md5-file": "^4.0.0", "md5-file": "^4.0.0",
"postcss": "^7.0.5", "postcss": "^7.0.5",
"postcss-calc": "^7.0.0",
"postcss-loader": "^3.0.0", "postcss-loader": "^3.0.0",
"precss": "3.1.2",
"progress-bar-webpack-plugin": "^1.11.0", "progress-bar-webpack-plugin": "^1.11.0",
"rimraf": "^2.5.4", "rimraf": "^2.5.4",
"shelljs": "^0.8.1", "shelljs": "^0.8.1",
"signale": "^1.3.0", "signale": "^1.3.0",
"style-loader": "^0.23.1", "style-loader": "^0.23.1",
"stylelint": "^9.6.0", "stylelint": "^9.7.1",
"stylelint-config-standard": "^18.2.0", "stylelint-config-standard": "^18.2.0",
"uppercamelcase": "^3.0.0", "uppercamelcase": "^3.0.0",
"url-loader": "^1.1.2", "url-loader": "^1.1.2",
@ -116,7 +119,7 @@
"vue-sfc-compiler": "^0.1.3", "vue-sfc-compiler": "^0.1.3",
"vue-template-compiler": "2.5.17", "vue-template-compiler": "2.5.17",
"vue-template-es2015-compiler": "^1.6.0", "vue-template-es2015-compiler": "^1.6.0",
"webpack": "^4.22.0", "webpack": "^4.23.1",
"webpack-cli": "^3.1.2", "webpack-cli": "^3.1.2",
"webpack-serve": "^2.0.2" "webpack-serve": "^2.0.2"
} }

View File

@ -81,7 +81,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-actionsheet { .demo-actionsheet {
.van-button { .van-button {
margin-left: 15px; margin-left: 15px;

View File

@ -1,18 +1,18 @@
@import './common/var.css'; @import '../style/var';
.van-actionsheet { .van-actionsheet {
position: fixed; position: fixed;
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
color: $text-color; color: @text-color;
max-height: 90%; max-height: 90%;
overflow-y: auto; overflow-y: auto;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
background-color: $background-color; background-color: @background-color;
&--withtitle { &--withtitle {
background-color: $white; background-color: @white;
} }
&__item, &__item,
@ -21,24 +21,24 @@
line-height: 50px; line-height: 50px;
font-size: 16px; font-size: 16px;
text-align: center; text-align: center;
background-color: $white; background-color: @white;
&:active { &:active {
background-color: $active-color; background-color: @active-color;
} }
} }
&__item--disabled { &__item--disabled {
color: $gray; color: @gray;
&:active { &:active {
background-color: $white; background-color: @white;
} }
} }
&__subname { &__subname {
font-size: 12px; font-size: 12px;
color: $gray-darker; color: @gray-darker;
margin-left: 5px; margin-left: 5px;
} }
@ -60,7 +60,7 @@
right: 0; right: 0;
padding: 0 15px; padding: 0 15px;
font-size: 18px; font-size: 18px;
color: $gray-dark; color: @gray-dark;
position: absolute; position: absolute;
line-height: inherit; line-height: inherit;
} }

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-address-edit { .van-address-edit {
&__buttons { &__buttons {
@ -27,7 +27,7 @@
padding: 0; padding: 0;
&__finish { &__finish {
color: $blue; color: @blue;
font-size: 12px; font-size: 12px;
display: block; display: block;
} }

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-address-list { .van-address-list {
height: 100%; height: 100%;
@ -13,7 +13,7 @@
} }
&__disabled-text { &__disabled-text {
color: $gray-dark; color: @gray-dark;
padding: 0 15px; padding: 0 15px;
font-size: 12px; font-size: 12px;
line-height: 30px; line-height: 30px;
@ -24,7 +24,7 @@
padding: 15px; padding: 15px;
.van-cell__value { .van-cell__value {
color: $text-color; color: @text-color;
padding-right: 34px; padding-right: 34px;
position: relative; position: relative;
} }
@ -45,7 +45,7 @@
} }
.van-icon-checked { .van-icon-checked {
color: $red; color: @red;
} }
&__name { &__name {
@ -58,7 +58,7 @@
&__address { &__address {
font-size: 12px; font-size: 12px;
line-height: 16px; line-height: 16px;
color: $gray-darker; color: @gray-darker;
} }
&--unswitchable { &--unswitchable {
@ -74,7 +74,7 @@
&--disabled { &--disabled {
.van-address-item__name, .van-address-item__name,
.van-address-item__address { .van-address-item__address {
color: $gray-dark; color: @gray-dark;
} }
} }

View File

@ -0,0 +1,5 @@
@import '../style/var';
.badge-group {
width: 85px;
}

View File

@ -33,7 +33,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-badge { .demo-badge {
.van-badge-group { .van-badge-group {
width: auto; width: auto;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-badge { .van-badge {
display: block; display: block;
@ -6,29 +6,25 @@
font-size: 14px; font-size: 14px;
line-height: 1.4; line-height: 1.4;
user-select: none; user-select: none;
color: $gray-darker; color: @gray-darker;
word-break: break-all; word-break: break-all;
box-sizing: border-box; box-sizing: border-box;
padding: 20px 12px 20px 9px; padding: 20px 12px 20px 9px;
background-color: $background-color; background-color: @background-color;
border-left: 3px solid transparent; border-left: 3px solid transparent;
&:active { &:active {
background-color: $active-color; background-color: @active-color;
} }
&:not(:last-child)::after { &:not(:last-child)::after {
border-bottom-width: 1px; border-bottom-width: 1px;
} }
&-group {
width: 85px;
}
&--select { &--select {
font-weight: 500; font-weight: 500;
color: $text-color; color: @text-color;
border-color: $red; border-color: @red;
&::after { &::after {
border-right-width: 1px; border-right-width: 1px;
@ -36,7 +32,7 @@
&, &,
&:active { &:active {
background-color: $white; background-color: @white;
} }
} }

View File

@ -79,7 +79,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-button { .demo-button {
.van-button { .van-button {
user-select: none; user-select: none;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-button { .van-button {
position: relative; position: relative;
@ -22,8 +22,8 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
border: inherit; border: inherit;
border-color: $black; border-color: @black;
background-color: $black; background-color: @black;
border-radius: inherit; /* inherit parent's border radius */ border-radius: inherit; /* inherit parent's border radius */
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
} }
@ -37,42 +37,42 @@
} }
&--default { &--default {
color: $button-default-color; color: @button-default-color;
background-color: $button-default-background-color; background-color: @button-default-background-color;
border: 1px solid $button-default-border-color; border: 1px solid @button-default-border-color;
} }
&--primary { &--primary {
color: $button-primary-color; color: @button-primary-color;
background-color: $button-primary-background-color; background-color: @button-primary-background-color;
border: 1px solid $button-primary-border-color; border: 1px solid @button-primary-border-color;
} }
&--danger { &--danger {
color: $button-danger-color; color: @button-danger-color;
background-color: $button-danger-background-color; background-color: @button-danger-background-color;
border: 1px solid $button-danger-border-color; border: 1px solid @button-danger-border-color;
} }
&--warning { &--warning {
color: $button-warning-color; color: @button-warning-color;
background-color: $button-warning-background-color; background-color: @button-warning-background-color;
border: 1px solid $button-warning-border-color; border: 1px solid @button-warning-border-color;
} }
&--plain { &--plain {
background-color: $white; background-color: @white;
&.van-button--primary { &.van-button--primary {
color: $button-primary-background-color; color: @button-primary-background-color;
} }
&.van-button--danger { &.van-button--danger {
color: $button-danger-background-color; color: @button-danger-background-color;
} }
&.van-button--warning { &.van-button--warning {
color: $button-warning-background-color; color: @button-warning-background-color;
} }
} }
@ -126,11 +126,11 @@
border: 0; border: 0;
border-radius: 0; border-radius: 0;
font-size: 16px; font-size: 16px;
color: $button-bottom-action-default-color; color: @button-bottom-action-default-color;
background-color: $button-bottom-action-default-background-color; background-color: @button-bottom-action-default-background-color;
&.van-button--primary { &.van-button--primary {
background-color: $button-bottom-action-primary-background-color; background-color: @button-bottom-action-primary-background-color;
} }
} }

View File

@ -1,14 +1,14 @@
@import './common/var.css'; @import '../style/var';
@import './mixins/ellipsis.css'; @import '../style/mixins/ellipsis';
.van-card { .van-card {
color: $text-color; color: @text-color;
height: 100px; height: 100px;
font-size: 12px; font-size: 12px;
position: relative; position: relative;
box-sizing: border-box; box-sizing: border-box;
padding: 5px 15px 5px 115px; padding: 5px 15px 5px 115px;
background-color: $background-color-light; background-color: @background-color-light;
&:not(:first-child) { &:not(:first-child) {
margin-top: 10px; margin-top: 10px;
@ -53,11 +53,11 @@
&__title { &__title {
max-height: 40px; max-height: 40px;
@include multi-ellipsis(2); .multi-ellipsis(2);
} }
&__desc { &__desc {
color: $gray-darker; color: @gray-darker;
max-height: 20px; max-height: 20px;
} }
@ -74,12 +74,12 @@
} }
&__origin-price { &__origin-price {
color: $gray-darker; color: @gray-darker;
text-decoration: line-through; text-decoration: line-through;
} }
&__num { &__num {
color: $gray-darker; color: @gray-darker;
} }
&__tag { &__tag {

View File

@ -0,0 +1,5 @@
@import '../style/var';
.van-cell-group {
background-color: @white;
}

View File

@ -63,7 +63,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-cell { .demo-cell {
.van-cell-text { .van-cell-text {
margin-right: 5px; margin-right: 5px;

View File

@ -1,5 +1,5 @@
@import './common/var.css'; @import '../style/var';
@import "./mixins/hairline.css"; @import "../style/mixins/hairline";
.van-cell { .van-cell {
width: 100%; width: 100%;
@ -8,27 +8,23 @@
box-sizing: border-box; box-sizing: border-box;
line-height: 24px; line-height: 24px;
position: relative; position: relative;
background-color: $white; background-color: @white;
color: $text-color; color: @text-color;
font-size: 14px; font-size: 14px;
overflow: hidden; overflow: hidden;
&:not(:last-child)::after { &:not(:last-child)::after {
@include hairline-bottom($border-color, 15px); .hairline-bottom(@border-color, 15px);
} }
&--borderless::after { &--borderless::after {
display: none; display: none;
} }
&-group {
background-color: $white;
}
&__label { &__label {
font-size: 12px; font-size: 12px;
line-height: 1.2; line-height: 1.2;
color: $gray-darker; color: @gray-darker;
} }
&__title, &__title,
@ -55,7 +51,7 @@
} }
&__right-icon { &__right-icon {
color: $gray-dark; color: @gray-dark;
font-size: 12px; font-size: 12px;
line-height: 24px; line-height: 24px;
margin-left: 5px; margin-left: 5px;
@ -75,7 +71,7 @@
&--clickable { &--clickable {
&:active { &:active {
background-color: $active-color; background-color: @active-color;
} }
} }
@ -87,7 +83,7 @@
position: absolute; position: absolute;
left: 7px; left: 7px;
font-size: 14px; font-size: 14px;
color: $red; color: @red;
} }
} }

View File

@ -108,7 +108,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-checkbox { .demo-checkbox {
.van-checkbox { .van-checkbox {
margin: 10px 0 0 20px; margin: 10px 0 0 20px;

View File

@ -1,6 +1,4 @@
@import './common/var.css'; @import '../style/var';
$van-checkbox-size: 20px;
.van-checkbox { .van-checkbox {
overflow: hidden; overflow: hidden;
@ -10,7 +8,7 @@ $van-checkbox-size: 20px;
&__label { &__label {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
line-height: $van-checkbox-size; line-height: @van-checkbox-size;
} }
&__icon { &__icon {
@ -19,9 +17,9 @@ $van-checkbox-size: 20px;
color: transparent; color: transparent;
text-align: center; text-align: center;
line-height: inherit; line-height: inherit;
border: 1px solid $gray-light; border: 1px solid @gray-light;
width: $van-checkbox-size; width: @van-checkbox-size;
height: $van-checkbox-size; height: @van-checkbox-size;
box-sizing: border-box; box-sizing: border-box;
transition: .2s; transition: .2s;
} }
@ -34,24 +32,24 @@ $van-checkbox-size: 20px;
&--checked { &--checked {
.van-icon { .van-icon {
color: $white; color: @white;
border-color: $blue; border-color: @blue;
background-color: $blue; background-color: @blue;
} }
} }
&--disabled { &--disabled {
.van-icon { .van-icon {
color: $background-color; color: @background-color;
border-color: $border-color; border-color: @border-color;
background-color: currentColor; background-color: currentColor;
} }
} }
&--disabled&--checked { &--disabled&--checked {
.van-icon { .van-icon {
border-color: $border-color; border-color: @border-color;
background-color: $border-color; background-color: @border-color;
} }
} }
} }

View File

@ -61,7 +61,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-circle { .demo-circle {
.van-circle { .van-circle {
margin-left: 15px; margin-left: 15px;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-circle { .van-circle {
position: relative; position: relative;
@ -26,7 +26,7 @@
top: 50%; top: 50%;
left: 0; left: 0;
width: 100%; width: 100%;
color: $text-color; color: @text-color;
position: absolute; position: absolute;
transform: translateY(-50%); transform: translateY(-50%);
} }

View File

@ -74,7 +74,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-col { .demo-col {
.van-doc-demo-block { .van-doc-demo-block {
padding: 0 15px; padding: 0 15px;

13
packages/col/index.less Normal file
View File

@ -0,0 +1,13 @@
@import '../style/var';
.van-col {
float: left;
box-sizing: border-box;
}
.generate-col(24);
.generate-col(@n, @i: 1) when (@i =< @n) {
.van-col--@{i} { width: @i * 100% / 24; }
.van-col--offset-@{i} { margin-left: @i * 100% / 24; }
.generate-col(@n, (@i + 1));
}

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-collapse-item { .van-collapse-item {
&__title { &__title {
@ -24,11 +24,11 @@
&--disabled { &--disabled {
&, &,
& .van-cell__right-icon { & .van-cell__right-icon {
color: $gray; color: @gray;
} }
&:active { &:active {
background-color: $white; background-color: @white;
} }
} }
} }
@ -41,6 +41,6 @@
&__content { &__content {
padding: 15px; padding: 15px;
background-color: $white; background-color: @white;
} }
} }

View File

@ -65,18 +65,18 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
@import "../../../packages/vant-css/src/common/var.css"; @import "../../../packages/style/var";
.demo-collapse { .demo-collapse {
.van-collapse-item__content { .van-collapse-item__content {
font-size: 13px; font-size: 13px;
line-height: 1.5; line-height: 1.5;
color: $gray-darker; color: @gray-darker;
} }
.van-icon-question { .van-icon-question {
color: $blue; color: @blue;
vertical-align: -3px; vertical-align: -3px;
margin-left: 5px; margin-left: 5px;
font-size: 15px; font-size: 15px;

View File

@ -124,7 +124,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-contact-card { .demo-contact-card {
.van-popup { .van-popup {
height: 100%; height: 100%;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-contact-card { .van-contact-card {
padding: 15px; padding: 15px;
@ -16,7 +16,7 @@
} }
.van-cell__left-icon { .van-cell__left-icon {
color: $blue; color: @blue;
font-size: 40px; font-size: 40px;
} }
} }
@ -34,8 +34,8 @@
#ff6c6c 20%, #ff6c6c 20%,
transparent 0, transparent 0,
transparent 25%, transparent 25%,
$blue 0, @blue 0,
$blue 45%, @blue 45%,
transparent 0, transparent 0,
transparent 50% transparent 50%
); );

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-contact-edit { .van-contact-edit {
&__buttons { &__buttons {

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-contact-list { .van-contact-list {
height: 100%; height: 100%;
@ -10,7 +10,7 @@
} }
.van-cell__value { .van-cell__value {
color: $text-color; color: @text-color;
padding-right: 34px; padding-right: 34px;
position: relative; position: relative;
} }
@ -28,7 +28,7 @@
} }
.van-icon-checked { .van-icon-checked {
color: $red; color: @red;
} }
&__group { &__group {

View File

@ -122,7 +122,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-coupon-list { .demo-coupon-list {
.van-popup { .van-popup {
height: 100%; height: 100%;

View File

@ -1,11 +1,11 @@
@import './common/var.css'; @import '../style/var';
@import './mixins/ellipsis.css'; @import '../style/mixins/ellipsis';
.van-coupon { .van-coupon {
&-list { &-list {
height: 100%; height: 100%;
position: relative; position: relative;
background-color: $background-color; background-color: @background-color;
&__field { &__field {
padding: 7px 15px; padding: 7px 15px;
@ -35,7 +35,7 @@
text-align: center; text-align: center;
p { p {
color: $gray-dark; color: @gray-dark;
margin: 15px 0; margin: 15px 0;
font-size: 14px; font-size: 14px;
line-height: 20px; line-height: 20px;
@ -52,11 +52,11 @@
overflow: hidden; overflow: hidden;
border-radius: 4px; border-radius: 4px;
margin: 0 15px 15px; margin: 0 15px 15px;
background-color: $white; background-color: @white;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
&:active { &:active {
background-color: $active-color; background-color: @active-color;
} }
&__content { &__content {
@ -70,7 +70,7 @@
h2 { h2 {
margin: 0; margin: 0;
@include ellipsis; .ellipsis();
} }
h2 { h2 {
@ -82,14 +82,14 @@
p { p {
font-size: 12px; font-size: 12px;
line-height: 16px; line-height: 16px;
color: $gray-dark; color: @gray-dark;
} }
&__head { &__head {
min-width: 90px; min-width: 90px;
h2 { h2 {
color: $red; color: @red;
font-size: 24px; font-size: 24px;
span { span {
@ -114,20 +114,20 @@
position: absolute; position: absolute;
.van-icon { .van-icon {
border-color: $red; border-color: @red;
background-color: $red; background-color: @red;
} }
} }
&__reason { &__reason {
padding: 7px 15px; padding: 7px 15px;
border-top: 1px dashed $border-color; border-top: 1px dashed @border-color;
background-color: $background-color-light; background-color: @background-color-light;
} }
&--disabled { &--disabled {
&:active { &:active {
background-color: $white; background-color: @white;
} }
.van-coupon-item__content { .van-coupon-item__content {
@ -137,7 +137,7 @@
p, p,
h2, h2,
span { span {
color: $gray-dark; color: @gray-dark;
} }
} }
} }

View File

@ -88,7 +88,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-dialog { .demo-dialog {
.van-doc-demo-block > .van-button { .van-doc-demo-block > .van-button {
margin-left: 15px; margin-left: 15px;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-dialog { .van-dialog {
position: fixed; position: fixed;
@ -9,7 +9,7 @@
overflow: hidden; overflow: hidden;
transition: .3s; transition: .3s;
border-radius: 4px; border-radius: 4px;
background-color: $white; background-color: @white;
transform: translate3d(-50%, -50%, 0); transform: translate3d(-50%, -50%, 0);
&__header { &__header {
@ -29,7 +29,7 @@
&--has-title { &--has-title {
padding-top: 12px; padding-top: 12px;
color: $gray-darker; color: @gray-darker;
} }
} }
@ -53,7 +53,7 @@
&__confirm { &__confirm {
&, &,
&:active { &:active {
color: $blue; color: @blue;
} }
} }

View File

@ -136,14 +136,14 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
@import '../../vant-css/src/common/var.css'; @import '../../style/var';
.demo-field { .demo-field {
padding-bottom: 30px; padding-bottom: 30px;
.van-field__icon .van-icon { .van-field__icon .van-icon {
color: $blue; color: @blue;
} }
} }
</style> </style>

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-field { .van-field {
.van-cell__title { .van-cell__title {
@ -22,7 +22,7 @@
&:disabled { &:disabled {
opacity: 1; opacity: 1;
color: $gray-darker; color: @gray-darker;
background-color: transparent; background-color: transparent;
} }
@ -55,14 +55,14 @@
} }
&__clear { &__clear {
color: $gray; color: @gray;
font-size: 16px; font-size: 16px;
} }
&__icon .van-icon { &__icon .van-icon {
display: block; display: block;
font-size: 16px; font-size: 16px;
color: $gray-dark; color: @gray-dark;
line-height: inherit; line-height: inherit;
} }
@ -71,14 +71,14 @@
} }
&__error-message { &__error-message {
color: $red; color: @red;
font-size: 12px; font-size: 12px;
text-align: left; text-align: left;
} }
&--disabled { &--disabled {
.van-field__control { .van-field__control {
color: $gray-dark; color: @gray-dark;
} }
} }
@ -86,7 +86,7 @@
.van-field__control { .van-field__control {
&, &,
&::placeholder { &::placeholder {
color: $red; color: @red;
} }
} }
} }

View File

@ -0,0 +1,10 @@
@import '../style/var';
.van-goods-action-big-btn {
flex: 1;
padding: 0;
@media (max-width: 321px) {
font-size: 15px;
}
}

View File

@ -0,0 +1,32 @@
@import '../style/var';
.van-goods-action-mini-btn {
color: @gray-darker;
display: flex;
height: 50px;
font-size: 10px;
min-width: 15%;
line-height: 1;
text-align: center;
background-color: @white;
flex-direction: column;
justify-content: center;
&::after {
border-width: 1px 0 0 1px;
}
&:first-child::after {
border-left-width: 0;
}
&:active {
background-color: @active-color;
}
&__icon {
width: 1em;
font-size: 20px;
margin: 0 auto 5px;
}
}

View File

@ -58,7 +58,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-goods-action { .demo-goods-action {
.van-goods-action { .van-goods-action {
position: relative; position: relative;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-goods-action { .van-goods-action {
left: 0; left: 0;
@ -17,14 +17,14 @@
} }
&-mini-btn { &-mini-btn {
color: $gray-darker; color: @gray-darker;
display: flex; display: flex;
height: 50px; height: 50px;
font-size: 10px; font-size: 10px;
min-width: 15%; min-width: 15%;
line-height: 1; line-height: 1;
text-align: center; text-align: center;
background-color: $white; background-color: @white;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
@ -37,7 +37,7 @@
} }
&:active { &:active {
background-color: $active-color; background-color: @active-color;
} }
&__icon { &__icon {

View File

@ -3,7 +3,7 @@ module.exports = (fontName, ttf) => {
font-style: normal; font-style: normal;
font-weight: normal; font-weight: normal;
font-family: '${fontName}'; font-family: '${fontName}';
src: url('../icon/${ttf}') format('truetype'); src: url('./${ttf}') format('truetype');
} }
`; `;
}; };

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
@font-face { @font-face {
font-style: normal; font-style: normal;

View File

@ -29,7 +29,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-icon { .demo-icon {
font-size: 0; font-size: 0;

View File

@ -20,7 +20,7 @@ View all usable icons on the right.
Icon uses font file in `yzcdn.cn` by defaultif you want to use the local font fileplease import the following css file. Icon uses font file in `yzcdn.cn` by defaultif you want to use the local font fileplease import the following css file.
```js ```js
import 'vant/lib/vant-css/icon-local.css'; import 'vant/lib/icon/local.css';
``` ```
#### Add custom iconfont #### Add custom iconfont

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
@font-face { @font-face {
font-style: normal; font-style: normal;

View File

@ -2,5 +2,5 @@
font-style: normal; font-style: normal;
font-weight: normal; font-weight: normal;
font-family: 'vant-icon'; font-family: 'vant-icon';
src: url('../icon/vant-icon-872dd0.ttf') format('truetype'); src: url('./vant-icon-872dd0.ttf') format('truetype');
} }

Binary file not shown.

View File

@ -22,7 +22,7 @@ Vue.use(Icon);
Icon 组件默认引用 `yzcdn.cn` 域名下的字体文件,如果想要使用本地字体文件,请引入下面的 css 文件 Icon 组件默认引用 `yzcdn.cn` 域名下的字体文件,如果想要使用本地字体文件,请引入下面的 css 文件
```js ```js
import 'vant/lib/vant-css/icon-local.css'; import 'vant/lib/icon/local.css';
``` ```
#### 自定义图标 #### 自定义图标

View File

@ -55,7 +55,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-image-preview { .demo-image-preview {
.van-button { .van-button {
margin-left: 15px; margin-left: 15px;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-image-preview { .van-image-preview {
top: 0; top: 0;
@ -22,7 +22,7 @@
position: absolute; position: absolute;
top: 10px; top: 10px;
left: 50%; left: 50%;
color: $white; color: @white;
font-size: 14px; font-size: 14px;
letter-spacing: 2px; letter-spacing: 2px;
transform: translate(-50%, 0); transform: translate(-50%, 0);

70
packages/index.less Normal file
View File

@ -0,0 +1,70 @@
/**
* Entry of all component's style
*/
/* base */
@import './style/base';
// /* common components */
@import './col/index';
@import './row/index';
@import './badge/index';
@import './badge-group/index';
@import './circle/index';
@import './collapse-item/index';
@import './list/index';
@import './nav-bar/index';
@import './notice-bar/index';
@import './popup/index';
@import './search/index';
@import './pagination/index';
@import './panel/index';
@import './rate/index';
@import './steps/index';
@import './step/index';
@import './tag/index';
@import './tab/index';
@import './tabs/index';
@import './tabbar/index';
@import './tabbar-item/index';
@import './image-preview/index';
@import './stepper/index';
@import './progress/index';
@import './swipe/index';
@import './swipe-item/index';
@import './slider/index';
/* form components */
@import './checkbox/index';
@import './field/index';
@import './radio/index';
@import './switch/index';
@import './uploader/index';
@import './password-input/index';
@import './number-keyboard/index';
/* action components */
@import './actionsheet/index';
@import './dialog/index';
@import './picker/index';
@import './pull-refresh/index';
@import './toast/index';
/* high order components */
@import './swipe-cell/index';
@import './switch-cell/index';
@import './tree-select/index';
/* business components */
@import './address-edit/index';
@import './address-list/index';
@import './card/index';
@import './contact-card/index';
@import './contact-list/index';
@import './contact-edit/index';
@import './coupon-list/index';
@import './goods-action/index';
@import './goods-action-big-btn/index';
@import './goods-action-mini-btn/index';
@import './submit-bar/index';
@import './sku/index';

View File

@ -1,9 +1,9 @@
@import './common/var.css'; @import '../style/var';
.van-info { .van-info {
left: 100%; left: 100%;
top: -.5em; top: -.5em;
color: $white; color: @white;
font-size: .6em; font-size: .6em;
font-weight: 500; font-weight: 500;
padding: 0 .25em; padding: 0 .25em;
@ -13,7 +13,7 @@
position: absolute; position: absolute;
border-radius: .7em; border-radius: .7em;
box-sizing: border-box; box-sizing: border-box;
background-color: $red; background-color: @red;
transform: translateX(-50%); transform: translateX(-50%);
font-family: PingFang SC, Helvetica Neue, Arial, sans-serif; font-family: PingFang SC, Helvetica Neue, Arial, sans-serif;
} }

View File

@ -56,7 +56,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-lazyload { .demo-lazyload {
padding: 0 15px; padding: 0 15px;

View File

@ -62,7 +62,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-list { .demo-list {
.van-cell { .van-cell {
text-align: center; text-align: center;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-list { .van-list {
&__loading { &__loading {
@ -18,7 +18,7 @@
&-text { &-text {
font-size: 13px; font-size: 13px;
color: $gray-dark; color: @gray-dark;
line-height: 50px; line-height: 50px;
} }
} }

View File

@ -27,7 +27,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-loading { .demo-loading {
.van-loading { .van-loading {
display: inline-block; display: inline-block;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-loading { .van-loading {
width: 30px; width: 30px;
@ -26,8 +26,8 @@
&--circle { &--circle {
border-radius: 100%; border-radius: 100%;
border: 3px solid transparent; border: 3px solid transparent;
border-color: $gray; border-color: @gray;
border-top-color: $gray-darker; border-top-color: @gray-darker;
} }
&--gradient-circle { &--gradient-circle {
@ -103,9 +103,11 @@
} }
} }
@for $i from 1 to 12 { .generate-spinner(@n, @i: 1) when (@i =< @n) {
.van-loading__spinner--spinner i:nth-of-type($i) { .van-loading__spinner--spinner i:nth-of-type(@{i}) {
opacity: calc(1 - (0.75 / 12) * ($i - 1)); opacity: 1 - (0.75 / 12) * (@i - 1);
transform: rotate(calc($i * 30deg)); transform: rotate(@i * 30deg);
} }
.generate-spinner(@n, (@i + 1));
} }
.generate-spinner(12);

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-nav-bar { .van-nav-bar {
height: 46px; height: 46px;
@ -6,10 +6,10 @@
user-select: none; user-select: none;
text-align: center; text-align: center;
line-height: 46px; line-height: 46px;
background-color: $white; background-color: @white;
.van-icon { .van-icon {
color: $blue; color: @blue;
vertical-align: middle; vertical-align: middle;
} }
@ -52,14 +52,14 @@
} }
&__text { &__text {
color: $blue; color: @blue;
margin: 0 -15px; margin: 0 -15px;
padding: 0 15px; padding: 0 15px;
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
&:active { &:active {
background-color: $active-color; background-color: @active-color;
} }
} }
} }

View File

@ -35,7 +35,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-notice-bar { .demo-notice-bar {
.van-notice-bar:not(:first-of-type) { .van-notice-bar:not(:first-of-type) {
margin-top: 15px; margin-top: 15px;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-notice-bar { .van-notice-bar {
display: flex; display: flex;
@ -8,8 +8,8 @@
line-height: 24px; line-height: 24px;
position: relative; position: relative;
align-items: center; align-items: center;
color: $orange-dark; color: @orange-dark;
background-color: $orange-light; background-color: @orange-light;
&--withicon { &--withicon {
position: relative; position: relative;

View File

@ -69,7 +69,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-number-keyboard { .demo-number-keyboard {
.van-button { .van-button {
margin-left: 15px; margin-left: 15px;

View File

@ -1,6 +1,4 @@
@import "./common/var.css"; @import '../style/var';
$van-number-keyboard-key-height: 54px;
.van-number-keyboard { .van-number-keyboard {
left: 0; left: 0;
@ -8,7 +6,7 @@ $van-number-keyboard-key-height: 54px;
width: 100%; width: 100%;
position: fixed; position: fixed;
user-select: none; user-select: none;
background-color: $white; background-color: @white;
animation-timing-function: ease-out; animation-timing-function: ease-out;
&__title { &__title {
@ -17,7 +15,7 @@ $van-number-keyboard-key-height: 54px;
line-height: 30px; line-height: 30px;
text-align: center; text-align: center;
position: relative; position: relative;
color: $gray-darker; color: @gray-darker;
} }
&__body { &__body {
@ -26,13 +24,13 @@ $van-number-keyboard-key-height: 54px;
&__close { &__close {
right: 0; right: 0;
color: $blue; color: @blue;
font-size: 14px; font-size: 14px;
padding: 0 15px; padding: 0 15px;
position: absolute; position: absolute;
&:active { &:active {
background-color: $active-color; background-color: @active-color;
} }
} }
@ -41,7 +39,7 @@ $van-number-keyboard-key-height: 54px;
bottom: 0; bottom: 0;
width: 25%; width: 25%;
position: absolute; position: absolute;
height: calc($van-number-keyboard-key-height * 4); height: @van-number-keyboard-key-height * 4;
} }
&--custom { &--custom {
@ -52,40 +50,40 @@ $van-number-keyboard-key-height: 54px;
} }
.van-key { .van-key {
width: calc(100% / 3); width: 100% / 3;
font-size: 24px; font-size: 24px;
font-style: normal; font-style: normal;
text-align: center; text-align: center;
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
height: $van-number-keyboard-key-height; height: @van-number-keyboard-key-height;
line-height: $van-number-keyboard-key-height; line-height: @van-number-keyboard-key-height;
&::after { &::after {
border-width: 1px 1px 0 0; border-width: 1px 1px 0 0;
} }
&--middle { &--middle {
width: calc(200% / 3); width: 200% / 3;
} }
&--big { &--big {
width: 100%; width: 100%;
height: calc($van-number-keyboard-key-height * 2); height: @van-number-keyboard-key-height * 2;
line-height: calc($van-number-keyboard-key-height * 2); line-height: @van-number-keyboard-key-height * 2;
} }
&--blue { &--blue {
font-size: 20px; font-size: 20px;
color: $white; color: @white;
background-color: $blue; background-color: @blue;
&.van-key--active { &.van-key--active {
background-color: $blue; background-color: @blue;
} }
&::after { &::after {
border-color: $blue; border-color: @blue;
} }
} }
@ -96,10 +94,10 @@ $van-number-keyboard-key-height: 54px;
} }
&--gray { &--gray {
background-color: $background-color; background-color: @background-color;
} }
&--active { &--active {
background-color: $active-color; background-color: @active-color;
} }
} }

View File

@ -61,7 +61,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-pagination { .demo-pagination {
.van-pagination { .van-pagination {
margin: 5px 0; margin: 5px 0;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-pagination { .van-pagination {
display: flex; display: flex;
@ -8,16 +8,16 @@
&__item { &__item {
flex: 1; flex: 1;
color: $blue; color: @blue;
height: 40px; height: 40px;
min-width: 36px; min-width: 36px;
background-color: $white; background-color: @white;
box-sizing: border-box; box-sizing: border-box;
user-select: none; user-select: none;
&:active { &:active {
color: $white; color: @white;
background-color: $blue; background-color: @blue;
} }
&::after { &::after {
@ -30,14 +30,14 @@
&--disabled, &--disabled,
&--disabled:active { &--disabled:active {
background-color: $background-color; background-color: @background-color;
color: $gray-darker; color: @gray-darker;
opacity: 0.6; opacity: 0.6;
} }
&--active { &--active {
color: $white; color: @white;
background-color: $blue; background-color: @blue;
} }
} }
@ -53,7 +53,7 @@
&__page-desc { &__page-desc {
flex: 1; flex: 1;
height: 40px; height: 40px;
color: $gray-darker; color: @gray-darker;
} }
&--simple { &--simple {

View File

@ -22,7 +22,7 @@
export default {}; export default {};
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-panel { .demo-panel {
.van-panel__footer { .van-panel__footer {
text-align: right; text-align: right;

View File

@ -1,11 +1,11 @@
@import './common/var.css'; @import '../style/var';
.van-panel { .van-panel {
background: $white; background: @white;
&__header { &__header {
.van-cell__value { .van-cell__value {
color: $red; color: @red;
} }
} }

View File

@ -1,4 +1,4 @@
@import "./common/var.css"; @import '../style/var';
.van-password-input { .van-password-input {
margin: 0 15px; margin: 0 15px;
@ -17,18 +17,18 @@
} }
&__info { &__info {
color: $gray-dark; color: @gray-dark;
} }
&__error-info { &__error-info {
color: $red; color: @red;
} }
&__security { &__security {
width: 100%; width: 100%;
height: 50px; height: 50px;
display: flex; display: flex;
background-color: $white; background-color: @white;
&::after { &::after {
border-radius: 6px; border-radius: 6px;
@ -53,7 +53,7 @@
margin: -5px 0 0 -5px; margin: -5px 0 0 -5px;
visibility: hidden; visibility: hidden;
border-radius: 100%; border-radius: 100%;
background-color: $black; background-color: @black;
} }
} }
} }

View File

@ -1,10 +1,10 @@
@import './common/var.css'; @import '../style/var';
.van-picker { .van-picker {
overflow: hidden; overflow: hidden;
user-select: none; user-select: none;
position: relative; position: relative;
background-color: $white; background-color: @white;
-webkit-text-size-adjust: 100%; /* avoid iOS text size adjust */ -webkit-text-size-adjust: 100%; /* avoid iOS text size adjust */
&__toolbar { &__toolbar {
@ -16,12 +16,12 @@
&__cancel, &__cancel,
&__confirm { &__confirm {
color: $blue; color: @blue;
padding: 0 15px; padding: 0 15px;
font-size: 14px; font-size: 14px;
&:active { &:active {
background-color: $active-color; background-color: @active-color;
} }
} }
@ -47,7 +47,7 @@
background-color: rgba(255, 255, 255, .9); background-color: rgba(255, 255, 255, .9);
circle { circle {
stroke: $blue; stroke: @blue;
} }
} }
@ -70,11 +70,11 @@
&__item { &__item {
padding: 0 5px; padding: 0 5px;
color: $gray-dark; color: @gray-dark;
&--selected { &--selected {
font-weight: 500; font-weight: 500;
color: $text-color; color: @text-color;
} }
&--disabled { &--disabled {

View File

@ -90,7 +90,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-popup { .demo-popup {
.van-button { .van-button {
margin: 10px 0 10px 15px; margin: 10px 0 10px 15px;

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van { .van {
&-modal { &-modal {
@ -20,7 +20,7 @@
left: 50%; left: 50%;
max-height: 100%; max-height: 100%;
overflow-y: auto; overflow-y: auto;
background-color: $white; background-color: @white;
transition: .3s ease-out; transition: .3s ease-out;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
transform: translate3d(-50%, -50%, 0); transform: translate3d(-50%, -50%, 0);

View File

@ -36,7 +36,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-progress { .demo-progress {
.van-progress { .van-progress {
margin: 20px; margin: 20px;

View File

@ -1,10 +1,10 @@
@import './common/var.css'; @import '../style/var';
.van-progress { .van-progress {
height: 4px; height: 4px;
position: relative; position: relative;
border-radius: 4px; border-radius: 4px;
background: $gray-light; background: @gray-light;
&__portion { &__portion {
left: 0; left: 0;
@ -30,7 +30,7 @@
border-radius: 1em; border-radius: 1em;
word-break: keep-all; word-break: keep-all;
box-sizing: border-box; box-sizing: border-box;
background-color: $gray-light; background-color: @gray-light;
transform: translate(100%, -50%); transform: translate(100%, -50%);
} }
} }

View File

@ -40,7 +40,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-pull-refresh { .demo-pull-refresh {
.van-pull-refresh { .van-pull-refresh {
&, &,

View File

@ -1,4 +1,4 @@
@import './common/var.css'; @import '../style/var';
.van-pull-refresh { .van-pull-refresh {
user-select: none; user-select: none;
@ -17,7 +17,7 @@
text-align: center; text-align: center;
top: -50px; top: -50px;
font-size: 14px; font-size: 14px;
color: $gray-dark; color: @gray-dark;
line-height: 50px; line-height: 50px;
} }

View File

@ -56,7 +56,7 @@ export default {
}; };
</script> </script>
<style lang="postcss"> <style lang="less">
.demo-radio { .demo-radio {
&-group { &-group {
padding: 0 17px; padding: 0 17px;

View File

@ -1,6 +1,4 @@
@import "./common/var.css"; @import '../style/var';
$van-radio-size: 20px;
.van-radio { .van-radio {
overflow: hidden; overflow: hidden;
@ -15,7 +13,7 @@ $van-radio-size: 20px;
&__input { &__input {
height: 1em; height: 1em;
position: relative; position: relative;
font-size: $van-radio-size; font-size: @van-radio-size;
} }
&__control { &__control {
@ -29,7 +27,7 @@ $van-radio-size: 20px;
} }
&__label { &__label {
line-height: $van-radio-size; line-height: @van-radio-size;
margin-left: 10px; margin-left: 10px;
&--left { &--left {
@ -44,18 +42,18 @@ $van-radio-size: 20px;
} }
.van-icon-checked { .van-icon-checked {
color: $green; color: @green;
} }
.van-icon-check { .van-icon-check {
color: $gray-dark; color: @gray-dark;
} }
&--disabled { &--disabled {
.van-icon { .van-icon {
color: $gray-light; color: @gray-light;
border-radius: 100%; border-radius: 100%;
background-color: $background-color; background-color: @background-color;
} }
} }
} }

Some files were not shown because too many files have changed in this diff Show More