vdesign-ui 0.1.8 → 0.1.10
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/dist/components/actionbar/actionbar-cell/index.vue +34 -0
- package/dist/components/actionbar/index.js +8 -0
- package/dist/components/actionbar/index.vue +39 -0
- package/dist/components/actionbar/style.less +48 -0
- package/dist/components/actions-cell/actions/index.js +7 -0
- package/dist/components/actions-cell/actions/index.vue +67 -0
- package/dist/components/actions-cell/actions/style.less +75 -0
- package/dist/components/actions-cell/index.js +7 -0
- package/dist/components/actions-cell/index.vue +94 -0
- package/dist/components/actions-cell/style.less +39 -0
- package/dist/components/activityviews/index.js +8 -0
- package/dist/components/activityviews/index.vue +110 -0
- package/dist/components/activityviews/style.less +146 -0
- package/dist/components/badge/index.js +8 -0
- package/dist/components/badge/index.vue +49 -0
- package/dist/components/badge/style.less +66 -0
- package/dist/components/button/index.js +8 -0
- package/dist/components/button/index.vue +89 -0
- package/dist/components/button/style.less +563 -0
- package/dist/components/calendar/end.png +0 -0
- package/dist/components/calendar/index-element.vue +84 -0
- package/dist/components/calendar/index.js +8 -0
- package/dist/components/calendar/index.vue +52 -0
- package/dist/components/calendar/start.png +0 -0
- package/dist/components/calendar/style.less +167 -0
- package/dist/components/checkbox/assist.js +34 -0
- package/dist/components/checkbox/checkbox-group/index.js +8 -0
- package/dist/components/checkbox/checkbox-group/index.vue +69 -0
- package/dist/components/checkbox/index.js +8 -0
- package/dist/components/checkbox/index.vue +184 -0
- package/dist/components/checkbox/style.less +289 -0
- package/dist/components/common/state/index.vue +80 -0
- package/dist/components/data-list/index.js +10 -0
- package/dist/components/data-list/index.vue +19 -0
- package/dist/components/data-list/style.less +624 -0
- package/dist/components/datetime-picker/index.js +8 -0
- package/dist/components/datetime-picker/index.vue +37 -0
- package/dist/components/datetime-picker/style.less +25 -0
- package/dist/components/dialog/index copy.vue +112 -0
- package/dist/components/dialog/index.js +8 -0
- package/dist/components/dialog/index.vue +111 -0
- package/dist/components/dialog/style.less +122 -0
- package/dist/components/divider/index.js +8 -0
- package/dist/components/divider/index.vue +54 -0
- package/dist/components/divider/style.less +92 -0
- package/dist/components/dropdown/index.js +8 -0
- package/dist/components/dropdown/index.vue +210 -0
- package/dist/components/dropdown/style.less +402 -0
- package/dist/components/empty/empty-404.png +0 -0
- package/dist/components/empty/empty-img.png +0 -0
- package/dist/components/empty/empty-network.png +0 -0
- package/dist/components/empty/index.js +8 -0
- package/dist/components/empty/index.vue +65 -0
- package/dist/components/empty/style.less +53 -0
- package/dist/components/footer/index.js +7 -0
- package/dist/components/footer/index.vue +29 -0
- package/dist/components/footer/style.less +22 -0
- package/dist/components/footnav/footnav-item/index.js +7 -0
- package/dist/components/footnav/footnav-item/index.vue +75 -0
- package/dist/components/footnav/footnav-item/style.less +38 -0
- package/dist/components/footnav/index.js +7 -0
- package/dist/components/footnav/index.vue +82 -0
- package/dist/components/footnav/style.less +22 -0
- package/dist/components/form/index.js +7 -0
- package/dist/components/form/index.vue +12 -0
- package/dist/components/headnav/index.js +7 -0
- package/dist/components/headnav/index.vue +139 -0
- package/dist/components/headnav/style.less +232 -0
- package/dist/components/icon/font/iconfont.css +817 -0
- package/dist/components/icon/font/iconfont.js +2 -0
- package/dist/components/icon/index.js +9 -0
- package/dist/components/icon/index.vue +46 -0
- package/dist/components/icon/style.less +44 -0
- package/dist/components/input/calcTextareaHeight.js +266 -0
- package/dist/components/input/index.js +8 -0
- package/dist/components/input/index.vue +338 -0
- package/dist/components/input/password/index.js +8 -0
- package/dist/components/input/password/index.vue +60 -0
- package/dist/components/input/search/index.js +8 -0
- package/dist/components/input/search/index.vue +64 -0
- package/dist/components/input/stepper/index.js +8 -0
- package/dist/components/input/stepper/index.vue +136 -0
- package/dist/components/input/style.less +482 -0
- package/dist/components/list/index.js +8 -0
- package/dist/components/list/index.vue +159 -0
- package/dist/components/list/style.less +290 -0
- package/dist/components/loading/index.js +7 -0
- package/dist/components/loading/index.vue +53 -0
- package/dist/components/loading/loading.png +0 -0
- package/dist/components/loading/refresh.png +0 -0
- package/dist/components/loading/style.less +48 -0
- package/dist/components/mixins/clickoutside.js +81 -0
- package/dist/components/mixins/dom.js +41 -0
- package/dist/components/mixins/languageMixin.js +38 -0
- package/dist/components/mixins/outlineConfigPlugin.js +40 -0
- package/dist/components/mixins/router-link.js +23 -0
- package/dist/components/noticebar/index.js +8 -0
- package/dist/components/noticebar/index.vue +246 -0
- package/dist/components/noticebar/style.less +309 -0
- package/dist/components/overlay/index.js +8 -0
- package/dist/components/overlay/index.vue +161 -0
- package/dist/components/overlay/style.less +23 -0
- package/dist/components/pagebreak/index.js +7 -0
- package/dist/components/pagebreak/index.vue +60 -0
- package/dist/components/pagebreak/style.less +43 -0
- package/dist/components/popover/index.js +8 -0
- package/dist/components/popover/index.vue +99 -0
- package/dist/components/popover/style.less +349 -0
- package/dist/components/popover/vue-popover.vue +314 -0
- package/dist/components/radio/assist.js +34 -0
- package/dist/components/radio/index.js +8 -0
- package/dist/components/radio/index.vue +159 -0
- package/dist/components/radio/radio-group/index.vue +70 -0
- package/dist/components/radio/style.less +297 -0
- package/dist/components/result/completed.png +0 -0
- package/dist/components/result/error.png +0 -0
- package/dist/components/result/index.js +8 -0
- package/dist/components/result/index.vue +47 -0
- package/dist/components/result/style.less +42 -0
- package/dist/components/result/wait.png +0 -0
- package/dist/components/selector/index.js +8 -0
- package/dist/components/selector/index.vue +124 -0
- package/dist/components/selector/style.less +474 -0
- package/dist/components/skeleton/index.js +7 -0
- package/dist/components/skeleton/index.vue +134 -0
- package/dist/components/skeleton/style.less +192 -0
- package/dist/components/slider/draggable.js +49 -0
- package/dist/components/slider/index.js +7 -0
- package/dist/components/slider/index.vue +173 -0
- package/dist/components/slider/style.less +95 -0
- package/dist/components/slider/utils.js +60 -0
- package/dist/components/step/index.js +7 -0
- package/dist/components/step/index.vue +48 -0
- package/dist/components/step/style.less +59 -0
- package/dist/components/step-item/index.js +7 -0
- package/dist/components/step-item/index.vue +89 -0
- package/dist/components/step-item/style.less +361 -0
- package/dist/components/style/index.vue +42 -0
- package/dist/components/switch/index.js +8 -0
- package/dist/components/switch/index.vue +72 -0
- package/dist/components/switch/style.less +54 -0
- package/dist/components/tabs/index.js +8 -0
- package/dist/components/tabs/index.vue +185 -0
- package/dist/components/tabs/style.less +383 -0
- package/dist/components/tabs/tab/index.vue +52 -0
- package/dist/components/tag/index.js +7 -0
- package/dist/components/tag/index.vue +50 -0
- package/dist/components/tag/style.less +211 -0
- package/dist/components/title/index.js +8 -0
- package/dist/components/title/index.vue +92 -0
- package/dist/components/title/style.less +188 -0
- package/dist/components/toast/index.js +80 -0
- package/dist/components/toast/index.vue +44 -0
- package/dist/components/toast/style.less +55 -0
- package/dist/components/transition/index.js +8 -0
- package/dist/components/transition/index.vue +13 -0
- package/dist/components/transition/style.less +208 -0
- package/dist/components/upload/index.js +7 -0
- package/dist/components/upload/index.vue +224 -0
- package/dist/components/upload/style.less +156 -0
- package/dist/vdesign-ui.common.js +214 -268
- package/dist/vdesign-ui.css +1 -1
- package/dist/vdesign-ui.umd.js +214 -268
- package/dist/vdesign-ui.umd.min.js +3 -3
- package/package.json +1 -1
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="vd-password">
|
|
3
|
+
<input type="tel" :maxlength="length" v-model="innerValue" @input="handleInput" @focus="handleFocus"
|
|
4
|
+
@blur="handleBlur" class="vd-password__input" />
|
|
5
|
+
<div class="vd-password__security">
|
|
6
|
+
<div class="vd-password__item" v-for="n in length" :key="n" :class="{ 'is-filled': n > innerValue.length }">
|
|
7
|
+
<template v-if="mask">
|
|
8
|
+
<i v-if="n <= innerValue.length" class="mask-icon"></i>
|
|
9
|
+
</template>
|
|
10
|
+
<template v-else>
|
|
11
|
+
{{ innerValue[n - 1] }}
|
|
12
|
+
</template>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script>
|
|
19
|
+
export default {
|
|
20
|
+
name: "vd-password",
|
|
21
|
+
props: {
|
|
22
|
+
value: {
|
|
23
|
+
type: String,
|
|
24
|
+
},
|
|
25
|
+
length: {
|
|
26
|
+
type: Number,
|
|
27
|
+
default: 6,
|
|
28
|
+
},
|
|
29
|
+
mask: {
|
|
30
|
+
type: Boolean,
|
|
31
|
+
default: true,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
data() {
|
|
35
|
+
return {
|
|
36
|
+
innerValue: this.value,
|
|
37
|
+
};
|
|
38
|
+
},
|
|
39
|
+
watch: {
|
|
40
|
+
value(val) {
|
|
41
|
+
this.innerValue = val;
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
methods: {
|
|
45
|
+
handleInput(e) {
|
|
46
|
+
this.innerValue = e.target.value.slice(0, this.length);
|
|
47
|
+
this.$emit("input", this.innerValue);
|
|
48
|
+
if (this.innerValue.length === this.length) {
|
|
49
|
+
this.$emit("complete", this.innerValue);
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
handleFocus() {
|
|
53
|
+
this.$emit("focus");
|
|
54
|
+
},
|
|
55
|
+
handleBlur() {
|
|
56
|
+
this.$emit("blur");
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
</script>
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="vd-search">
|
|
3
|
+
<div class="vd-search-content">
|
|
4
|
+
<span v-if="prefix || $slots.prefix" class="vd-search__prefix">
|
|
5
|
+
<slot name="prefix">
|
|
6
|
+
<vd-icon name="icon_nav_search"></vd-icon>
|
|
7
|
+
</slot>
|
|
8
|
+
</span>
|
|
9
|
+
<input :type="type" :class="inputClasses" :placeholder="placeholder">
|
|
10
|
+
<!-- <vd-input
|
|
11
|
+
type="text"
|
|
12
|
+
form="form"
|
|
13
|
+
placeholder="请输出文字"
|
|
14
|
+
v-model="input"
|
|
15
|
+
></vd-input> -->
|
|
16
|
+
<span v-if="suffix || $slots.suffix" class="vd-search__suffix">
|
|
17
|
+
<slot name="suffix">
|
|
18
|
+
<vd-icon v-if="suffix" name="icon_btn_clean"></vd-icon>
|
|
19
|
+
</slot>
|
|
20
|
+
</span>
|
|
21
|
+
|
|
22
|
+
</div>
|
|
23
|
+
<span class="vd-search__action" v-if="$slots.default">
|
|
24
|
+
<slot></slot>
|
|
25
|
+
</span>
|
|
26
|
+
</div>
|
|
27
|
+
</template>
|
|
28
|
+
|
|
29
|
+
<script>
|
|
30
|
+
const prefixCls = 'vd-search';
|
|
31
|
+
export default {
|
|
32
|
+
name: 'vd-search',
|
|
33
|
+
props: {
|
|
34
|
+
type: {
|
|
35
|
+
type: String,
|
|
36
|
+
default: 'text'
|
|
37
|
+
},
|
|
38
|
+
prefix: {
|
|
39
|
+
type: Boolean,
|
|
40
|
+
},
|
|
41
|
+
suffix: {
|
|
42
|
+
type: Boolean,
|
|
43
|
+
},
|
|
44
|
+
placeholder: {
|
|
45
|
+
type: String,
|
|
46
|
+
default: ''
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
data() {
|
|
50
|
+
return {
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
computed: {
|
|
54
|
+
inputClasses() {
|
|
55
|
+
return [
|
|
56
|
+
`${prefixCls}__control`
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
methods: {
|
|
61
|
+
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
</script>
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="vd-stepper" :class="wrapClasses">
|
|
3
|
+
<vd-button v-if="!position" :class="minusButtonClass" icon="icon_btn_reduce" size="small"
|
|
4
|
+
@click="onChange('minus')"></vd-button>
|
|
5
|
+
<input type="number" :class="inputClasses" :disabled="disabled" :value="currentValue" :placeholder="placeholder" @input="onInput"
|
|
6
|
+
@blur="onBlur">
|
|
7
|
+
<vd-button v-if="position === 'right'" class="vd-stepper__minus" icon="icon_btn_reduce" size="small"
|
|
8
|
+
@click="onChange('minus')"></vd-button>
|
|
9
|
+
<vd-button :class="plusButtonClass" icon="icon_btn_add" size="small"
|
|
10
|
+
@click="onChange('plus')"></vd-button>
|
|
11
|
+
</div>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script>
|
|
15
|
+
import languageMixin from '@p/components/mixins/languageMixin.js';
|
|
16
|
+
|
|
17
|
+
const prefixCls = 'vd-stepper';
|
|
18
|
+
export default {
|
|
19
|
+
mixins: [languageMixin],
|
|
20
|
+
name: 'vd-stepper',
|
|
21
|
+
props: {
|
|
22
|
+
value: null,
|
|
23
|
+
integer: Boolean,
|
|
24
|
+
position: String,
|
|
25
|
+
inputCenter: Boolean,
|
|
26
|
+
disabled: Boolean,
|
|
27
|
+
theme: String,
|
|
28
|
+
min: {
|
|
29
|
+
type: [String, Number],
|
|
30
|
+
default: 1
|
|
31
|
+
},
|
|
32
|
+
max: {
|
|
33
|
+
type: [String, Number],
|
|
34
|
+
default: Infinity
|
|
35
|
+
},
|
|
36
|
+
step: {
|
|
37
|
+
type: [String, Number],
|
|
38
|
+
default: 1
|
|
39
|
+
},
|
|
40
|
+
placeholder:String
|
|
41
|
+
},
|
|
42
|
+
data() {
|
|
43
|
+
const value = this.range(this.isDef(this.value) ? this.value : this.defaultValue);
|
|
44
|
+
if (value !== +this.value) {
|
|
45
|
+
this.$emit('input', value);
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
currentValue: value,
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
computed: {
|
|
52
|
+
inputClasses() {
|
|
53
|
+
return [
|
|
54
|
+
`${prefixCls}-input`,
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
wrapClasses() {
|
|
58
|
+
return [
|
|
59
|
+
{
|
|
60
|
+
[`${prefixCls}--disabled`]: this.disabled,
|
|
61
|
+
[`${prefixCls}--${this.theme}`]: this.theme,
|
|
62
|
+
[`${prefixCls}--center`]: this.inputCenter
|
|
63
|
+
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
minusButtonClass() {
|
|
68
|
+
const hairlineClass = this.language === 'ar' ? 'vd-hairline--left' : 'vd-hairline--right';
|
|
69
|
+
return `vd-stepper__minus ${hairlineClass}`;
|
|
70
|
+
},
|
|
71
|
+
plusButtonClass() {
|
|
72
|
+
const hairlineClass = this.language === 'ar' ? 'vd-hairline--right' : 'vd-hairline--left';
|
|
73
|
+
return `vd-stepper__plus ${hairlineClass}`;
|
|
74
|
+
}
|
|
75
|
+
// minusDisabled() {
|
|
76
|
+
// return this.disabled || this.currentValue <= this.min;
|
|
77
|
+
// },
|
|
78
|
+
|
|
79
|
+
// plusDisabled() {
|
|
80
|
+
// return this.disabled || this.currentValue >= this.max;
|
|
81
|
+
// }
|
|
82
|
+
},
|
|
83
|
+
watch: {
|
|
84
|
+
value(val) {
|
|
85
|
+
if (val !== this.currentValue) {
|
|
86
|
+
this.currentValue = this.format(val);
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
|
|
90
|
+
currentValue(val) {
|
|
91
|
+
this.$emit('input', val);
|
|
92
|
+
this.$emit('change', val);
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
methods: {
|
|
96
|
+
format(value) {
|
|
97
|
+
value = String(value).replace(/[^0-9.-]/g, '');
|
|
98
|
+
return value === '' ? 0 : this.integer ? Math.floor(value) : +value;
|
|
99
|
+
},
|
|
100
|
+
|
|
101
|
+
// limit value range
|
|
102
|
+
range(value) {
|
|
103
|
+
return Math.max(Math.min(this.max, this.format(value)), this.min);
|
|
104
|
+
},
|
|
105
|
+
|
|
106
|
+
onInput(event) {
|
|
107
|
+
const { value } = event.target;
|
|
108
|
+
const formatted = this.format(value);
|
|
109
|
+
if (+value !== formatted) {
|
|
110
|
+
event.target.value = formatted;
|
|
111
|
+
}
|
|
112
|
+
this.currentValue = formatted;
|
|
113
|
+
},
|
|
114
|
+
|
|
115
|
+
onChange(type) {
|
|
116
|
+
if (this[`${type}Disabled`]) {
|
|
117
|
+
this.$emit('overlimit', type);
|
|
118
|
+
return;
|
|
119
|
+
}
|
|
120
|
+
const diff = type === 'minus' ? -this.step : +this.step;
|
|
121
|
+
const value = Math.round((this.currentValue + diff) * 100) / 100;
|
|
122
|
+
this.currentValue = this.range(value);
|
|
123
|
+
|
|
124
|
+
this.$emit(type);
|
|
125
|
+
},
|
|
126
|
+
|
|
127
|
+
onBlur(event) {
|
|
128
|
+
this.currentValue = this.range(this.currentValue);
|
|
129
|
+
this.$emit('blur', event);
|
|
130
|
+
},
|
|
131
|
+
isDef(value) {
|
|
132
|
+
return value !== undefined && value !== null;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
</script>
|