@varlet/cli 2.0.0-alpha.1664527888620 → 2.0.0-alpha.1665387432577
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/site/components/progress/Progress.vue +3 -4
- package/site/components/progress/props.ts +9 -12
- package/site/pc/Layout.vue +9 -2
- package/template/generators/config/default/sfc/src/button/docs/zh-CN.md +2 -2
- package/template/generators/config/default/tsx/src/button/docs/zh-CN.md +2 -2
- package/template/generators/config/i18n/sfc/src/button/Button.vue +1 -1
- package/template/generators/config/i18n/sfc/src/button/docs/zh-CN.md +2 -2
- package/template/generators/config/i18n/tsx/src/button/Button.tsx +1 -1
- package/template/generators/config/i18n/tsx/src/button/docs/zh-CN.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varlet/cli",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.1665387432577",
|
|
4
4
|
"description": "cli of varlet",
|
|
5
5
|
"bin": {
|
|
6
6
|
"varlet-cli": "./lib/index.js"
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"@babel/helper-plugin-utils": "^7.14.5",
|
|
33
33
|
"@babel/preset-env": "^7.14.8",
|
|
34
34
|
"@babel/preset-typescript": "^7.14.5",
|
|
35
|
-
"@varlet/icons": "2.0.0-alpha.
|
|
36
|
-
"@varlet/markdown-vite-plugin": "2.0.0-alpha.
|
|
37
|
-
"@varlet/shared": "2.0.0-alpha.
|
|
38
|
-
"@varlet/touch-emulator": "2.0.0-alpha.
|
|
35
|
+
"@varlet/icons": "2.0.0-alpha.1665387432577",
|
|
36
|
+
"@varlet/markdown-vite-plugin": "2.0.0-alpha.1665387432577",
|
|
37
|
+
"@varlet/shared": "2.0.0-alpha.1665387432577",
|
|
38
|
+
"@varlet/touch-emulator": "2.0.0-alpha.1665387432577",
|
|
39
39
|
"@vitejs/plugin-vue": "3.0.1",
|
|
40
40
|
"@vitejs/plugin-vue-jsx": "2.0.0",
|
|
41
41
|
"@vue/babel-plugin-jsx": "1.1.1",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@types/semver": "^7.3.9"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@varlet/touch-emulator": "2.0.0-alpha.
|
|
83
|
+
"@varlet/touch-emulator": "2.0.0-alpha.1665387432577",
|
|
84
84
|
"@vue/runtime-core": "3.2.16",
|
|
85
85
|
"@vue/test-utils": "^2.0.2",
|
|
86
86
|
"clipboard": "^2.0.6",
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div :class="n()">
|
|
3
3
|
<div :class="n('linear')" v-if="mode === 'linear'">
|
|
4
|
-
<div :class="n('linear-block')" :style="{ height: toSizeUnit(lineWidth) }"
|
|
4
|
+
<div :class="n('linear-block')" :style="{ height: toSizeUnit(lineWidth) }">
|
|
5
5
|
<div :class="n('linear-background')" v-if="track" :style="{ background: trackColor }"></div>
|
|
6
6
|
<div
|
|
7
7
|
:class="classes(n('linear-certain'), [ripple, n('linear-ripple')])"
|
|
8
8
|
:style="{ background: color, width: linearProps.width }"
|
|
9
9
|
></div>
|
|
10
10
|
</div>
|
|
11
|
-
<div :class="n('linear-label')
|
|
11
|
+
<div :class="classes(n('linear-label'), [labelClass, labelClass])" v-if="label">
|
|
12
12
|
<slot>
|
|
13
13
|
{{ linearProps.roundValue }}
|
|
14
14
|
</slot>
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
></circle>
|
|
45
45
|
</svg>
|
|
46
46
|
|
|
47
|
-
<div :class="n('circle-label')" v-if="label"
|
|
47
|
+
<div :class="classes(n('circle-label'), [labelClass, labelClass])" v-if="label">
|
|
48
48
|
<slot>
|
|
49
49
|
{{ circleProps.roundValue }}
|
|
50
50
|
</slot>
|
|
@@ -64,7 +64,6 @@ const { n, classes } = createNamespace('progress')
|
|
|
64
64
|
|
|
65
65
|
export default defineComponent({
|
|
66
66
|
name: 'VarProgress',
|
|
67
|
-
inheritAttrs: false,
|
|
68
67
|
props,
|
|
69
68
|
setup(props) {
|
|
70
69
|
const linearProps = computed(() => {
|
|
@@ -1,55 +1,52 @@
|
|
|
1
|
+
import { type PropType } from 'vue'
|
|
2
|
+
|
|
1
3
|
function modeValidator(mode: string): boolean {
|
|
2
4
|
return ['linear', 'circle'].includes(mode)
|
|
3
5
|
}
|
|
4
6
|
|
|
7
|
+
type ProgressMode = 'linear' | 'circle'
|
|
8
|
+
|
|
5
9
|
export const props = {
|
|
6
|
-
// progress 模式
|
|
7
10
|
mode: {
|
|
8
|
-
type: String
|
|
11
|
+
type: String as PropType<ProgressMode>,
|
|
9
12
|
default: 'linear',
|
|
10
13
|
validator: modeValidator,
|
|
11
14
|
},
|
|
12
|
-
// progress 线宽
|
|
13
15
|
lineWidth: {
|
|
14
16
|
type: [Number, String],
|
|
15
17
|
default: 4,
|
|
16
18
|
},
|
|
17
|
-
// progress 颜色
|
|
18
19
|
color: {
|
|
19
20
|
type: String,
|
|
20
21
|
},
|
|
21
|
-
// progress 轨道颜色
|
|
22
22
|
trackColor: {
|
|
23
23
|
type: String,
|
|
24
24
|
},
|
|
25
|
-
// 是否添加水波纹效果
|
|
26
25
|
ripple: {
|
|
27
26
|
type: Boolean,
|
|
28
27
|
default: false,
|
|
29
28
|
},
|
|
30
|
-
// progress 值
|
|
31
29
|
value: {
|
|
32
30
|
type: [Number, String],
|
|
33
31
|
default: 0,
|
|
34
32
|
},
|
|
35
|
-
// 是否显示label
|
|
36
33
|
label: {
|
|
37
34
|
type: Boolean,
|
|
38
35
|
default: false,
|
|
39
36
|
},
|
|
40
|
-
|
|
37
|
+
labelClass: {
|
|
38
|
+
type: String,
|
|
39
|
+
},
|
|
41
40
|
size: {
|
|
42
41
|
type: [Number, String],
|
|
43
42
|
default: 40,
|
|
44
43
|
},
|
|
45
|
-
// circle的原点
|
|
46
44
|
rotate: {
|
|
47
45
|
type: Number,
|
|
48
46
|
default: 0,
|
|
49
47
|
},
|
|
50
|
-
// 是否显示 circle 轨道
|
|
51
48
|
track: {
|
|
52
49
|
type: Boolean,
|
|
53
50
|
default: true,
|
|
54
|
-
}
|
|
51
|
+
}
|
|
55
52
|
}
|
package/site/pc/Layout.vue
CHANGED
|
@@ -305,7 +305,7 @@ iframe {
|
|
|
305
305
|
}
|
|
306
306
|
|
|
307
307
|
h2 {
|
|
308
|
-
margin: 30px 0
|
|
308
|
+
margin: 30px 0;
|
|
309
309
|
font-size: 25px;
|
|
310
310
|
}
|
|
311
311
|
|
|
@@ -327,9 +327,16 @@ iframe {
|
|
|
327
327
|
line-height: 26px;
|
|
328
328
|
border-radius: 4px;
|
|
329
329
|
background: var(--site-config-color-bar);
|
|
330
|
-
list-style: none;
|
|
331
330
|
margin: 14px 0 0;
|
|
332
331
|
padding: 0;
|
|
332
|
+
|
|
333
|
+
li {
|
|
334
|
+
margin-bottom: 4px;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
ul,ol {
|
|
339
|
+
padding: 0 0 0 18px;
|
|
333
340
|
}
|
|
334
341
|
|
|
335
342
|
pre {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
### 基本使用
|
|
4
4
|
```html
|
|
5
|
-
<var-button
|
|
5
|
+
<var-button>按钮起步</var-button>
|
|
6
6
|
```
|
|
7
7
|
|
|
8
8
|
```vue
|
|
@@ -11,7 +11,7 @@ import BasicUse from '../example/BasicUse'
|
|
|
11
11
|
|
|
12
12
|
### 主题色按钮
|
|
13
13
|
```html
|
|
14
|
-
<var-button color="#009688"
|
|
14
|
+
<var-button color="#009688">按钮起步</var-button>
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
```vue
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
### 基本使用
|
|
4
4
|
```html
|
|
5
|
-
<var-button
|
|
5
|
+
<var-button>按钮起步</var-button>
|
|
6
6
|
```
|
|
7
7
|
|
|
8
8
|
```vue
|
|
@@ -11,7 +11,7 @@ import BasicUse from '../example/BasicUse'
|
|
|
11
11
|
|
|
12
12
|
### 主题色按钮
|
|
13
13
|
```html
|
|
14
|
-
<var-button color="#009688"
|
|
14
|
+
<var-button color="#009688">按钮起步</var-button>
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
```vue
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
### 基本使用
|
|
4
4
|
```html
|
|
5
|
-
<var-button
|
|
5
|
+
<var-button>按钮起步</var-button>
|
|
6
6
|
```
|
|
7
7
|
|
|
8
8
|
```vue
|
|
@@ -11,7 +11,7 @@ import BasicUse from '../example/BasicUse'
|
|
|
11
11
|
|
|
12
12
|
### 主题色按钮
|
|
13
13
|
```html
|
|
14
|
-
<var-button color="#009688"
|
|
14
|
+
<var-button color="#009688">按钮起步</var-button>
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
```vue
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
### 基本使用
|
|
4
4
|
```html
|
|
5
|
-
<var-button
|
|
5
|
+
<var-button>按钮起步</var-button>
|
|
6
6
|
```
|
|
7
7
|
|
|
8
8
|
```vue
|
|
@@ -11,7 +11,7 @@ import BasicUse from '../example/BasicUse'
|
|
|
11
11
|
|
|
12
12
|
### 主题色按钮
|
|
13
13
|
```html
|
|
14
|
-
<var-button color="#009688"
|
|
14
|
+
<var-button color="#009688">按钮起步</var-button>
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
```vue
|