@tplc/wot 0.1.84 → 0.1.86
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/CHANGELOG.md +9 -0
- package/components/wd-calendar/index.scss +11 -10
- package/components/wd-calendar/wd-calendar.vue +1 -1
- package/components/wd-cell/index.scss +10 -9
- package/components/wd-cell/wd-cell.vue +3 -1
- package/components/wd-col-picker/index.scss +11 -10
- package/components/wd-col-picker/wd-col-picker.vue +1 -1
- package/components/wd-datetime-picker/index.scss +11 -10
- package/components/wd-datetime-picker/wd-datetime-picker.vue +1 -1
- package/components/wd-input/index.scss +11 -10
- package/components/wd-picker/index.scss +11 -10
- package/components/wd-picker/wd-picker.vue +1 -1
- package/components/wd-select-picker/index.scss +11 -10
- package/components/wd-select-picker/wd-select-picker.vue +1 -1
- package/components/wd-textarea/index.scss +11 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.86](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.85...v0.1.86) (2025-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 新增有 ([6518110](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6518110c12f29389272461464bb8842c050d0e59))
|
|
11
|
+
|
|
12
|
+
### [0.1.85](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.134...v0.1.85) (2025-06-21)
|
|
13
|
+
|
|
5
14
|
### [0.1.84](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.109...v0.1.84) (2025-05-11)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -121,16 +121,17 @@
|
|
|
121
121
|
color: $-cell-title-color;
|
|
122
122
|
|
|
123
123
|
@include when(required) {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
124
|
+
.wd-calendar__label-inner {
|
|
125
|
+
position: relative;
|
|
126
|
+
&::after {
|
|
127
|
+
position: absolute;
|
|
128
|
+
top: 2px;
|
|
129
|
+
right: -12px;
|
|
130
|
+
font-size: $-cell-required-size;
|
|
131
|
+
line-height: 1.1;
|
|
132
|
+
color: $-cell-required-color;
|
|
133
|
+
content: '*';
|
|
134
|
+
}
|
|
134
135
|
}
|
|
135
136
|
}
|
|
136
137
|
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
:class="`wd-calendar__label ${isRequired ? 'is-required' : ''} ${customLabelClass}`"
|
|
14
14
|
:style="labelWidth ? 'min-width:' + labelWidth + ';max-width:' + labelWidth + ';' : ''"
|
|
15
15
|
>
|
|
16
|
-
<
|
|
16
|
+
<text v-if="label" class="wd-calendar__label-inner">{{ label }}</text>
|
|
17
17
|
<slot v-else name="label"></slot>
|
|
18
18
|
</view>
|
|
19
19
|
<view class="wd-calendar__body">
|
|
@@ -83,15 +83,16 @@
|
|
|
83
83
|
text-align: left;
|
|
84
84
|
|
|
85
85
|
@include when(required) {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
86
|
+
.wd-cell__title-inner {
|
|
87
|
+
position: relative;
|
|
88
|
+
&::after {
|
|
89
|
+
position: absolute;
|
|
90
|
+
top: 0;
|
|
91
|
+
right: -12px;
|
|
92
|
+
font-size: $-cell-required-size;
|
|
93
|
+
color: $-cell-required-color;
|
|
94
|
+
content: '*';
|
|
95
|
+
}
|
|
95
96
|
}
|
|
96
97
|
}
|
|
97
98
|
}
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
|
|
28
28
|
<view class="wd-cell__title">
|
|
29
29
|
<!--title BEGIN-->
|
|
30
|
-
<view v-if="title" :class="customTitleClass"
|
|
30
|
+
<view v-if="title" :class="customTitleClass" class="wd-cell__title-inner">
|
|
31
|
+
{{ title }}
|
|
32
|
+
</view>
|
|
31
33
|
<slot v-else name="title"></slot>
|
|
32
34
|
<!--title END-->
|
|
33
35
|
|
|
@@ -116,16 +116,17 @@
|
|
|
116
116
|
color: $-cell-title-color;
|
|
117
117
|
|
|
118
118
|
@include when(required) {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
119
|
+
.wd-col-picker__label-inner {
|
|
120
|
+
position: relative;
|
|
121
|
+
&::after {
|
|
122
|
+
position: absolute;
|
|
123
|
+
top: 2px;
|
|
124
|
+
right: -12px;
|
|
125
|
+
font-size: $-cell-required-size;
|
|
126
|
+
line-height: 1.1;
|
|
127
|
+
color: $-cell-required-color;
|
|
128
|
+
content: '*';
|
|
129
|
+
}
|
|
129
130
|
}
|
|
130
131
|
}
|
|
131
132
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
:class="`wd-col-picker__label ${isRequired && 'is-required'} ${customLabelClass}`"
|
|
17
17
|
:style="labelWidth ? 'min-width:' + labelWidth + ';max-width:' + labelWidth + ';' : ''"
|
|
18
18
|
>
|
|
19
|
-
<
|
|
19
|
+
<text v-if="label" class="wd-col-picker__label-inner">{{ label }}</text>
|
|
20
20
|
<slot v-else name="label"></slot>
|
|
21
21
|
</view>
|
|
22
22
|
<view class="wd-col-picker__body">
|
|
@@ -128,16 +128,17 @@
|
|
|
128
128
|
color: $-cell-title-color;
|
|
129
129
|
|
|
130
130
|
@include when(required) {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
131
|
+
.wd-datetime-picker__label-inner {
|
|
132
|
+
position: relative;
|
|
133
|
+
&::after {
|
|
134
|
+
position: absolute;
|
|
135
|
+
top: 2px;
|
|
136
|
+
right: -12px;
|
|
137
|
+
font-size: $-cell-required-size;
|
|
138
|
+
line-height: 1.1;
|
|
139
|
+
color: $-cell-required-color;
|
|
140
|
+
content: '*';
|
|
141
|
+
}
|
|
141
142
|
}
|
|
142
143
|
}
|
|
143
144
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
:class="`wd-picker__label ${customLabelClass} ${isRequired ? 'is-required' : ''}`"
|
|
15
15
|
:style="labelWidth ? 'min-width:' + labelWidth + ';max-width:' + labelWidth + ';' : ''"
|
|
16
16
|
>
|
|
17
|
-
<
|
|
17
|
+
<text v-if="label" class="wd-picker__label-inner">{{ label }}</text>
|
|
18
18
|
<slot v-else name="label"></slot>
|
|
19
19
|
</view>
|
|
20
20
|
<view class="wd-picker__body">
|
|
@@ -103,16 +103,17 @@
|
|
|
103
103
|
color: $-cell-title-color;
|
|
104
104
|
|
|
105
105
|
@include when(required) {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
106
|
+
.wd-input__label-inner {
|
|
107
|
+
position: relative;
|
|
108
|
+
&::after {
|
|
109
|
+
position: absolute;
|
|
110
|
+
top: 2px;
|
|
111
|
+
right: -12px;
|
|
112
|
+
font-size: $-cell-required-size;
|
|
113
|
+
line-height: 1.1;
|
|
114
|
+
color: $-cell-required-color;
|
|
115
|
+
content: '*';
|
|
116
|
+
}
|
|
116
117
|
}
|
|
117
118
|
}
|
|
118
119
|
}
|
|
@@ -132,16 +132,17 @@
|
|
|
132
132
|
color: $-cell-title-color;
|
|
133
133
|
|
|
134
134
|
@include when(required) {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
135
|
+
.wd-picker__label-inner {
|
|
136
|
+
position: relative;
|
|
137
|
+
&::after {
|
|
138
|
+
position: absolute;
|
|
139
|
+
top: 2px;
|
|
140
|
+
right: -12px;
|
|
141
|
+
font-size: $-cell-required-size;
|
|
142
|
+
line-height: 1.1;
|
|
143
|
+
color: $-cell-required-color;
|
|
144
|
+
content: '*';
|
|
145
|
+
}
|
|
145
146
|
}
|
|
146
147
|
}
|
|
147
148
|
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
:class="`wd-picker__label ${customLabelClass} ${isRequired ? 'is-required' : ''}`"
|
|
14
14
|
:style="labelWidth ? 'min-width:' + labelWidth + ';max-width:' + labelWidth + ';' : ''"
|
|
15
15
|
>
|
|
16
|
-
<
|
|
16
|
+
<text v-if="label" class="wd-picker__label-inner">{{ label }}</text>
|
|
17
17
|
<slot v-else name="label"></slot>
|
|
18
18
|
</view>
|
|
19
19
|
<view class="wd-picker__body">
|
|
@@ -96,16 +96,17 @@
|
|
|
96
96
|
color: $-cell-title-color;
|
|
97
97
|
|
|
98
98
|
@include when(required) {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
99
|
+
.wd-select-picker__label-inner {
|
|
100
|
+
position: relative;
|
|
101
|
+
&::after {
|
|
102
|
+
position: absolute;
|
|
103
|
+
top: 2px;
|
|
104
|
+
right: -12px;
|
|
105
|
+
font-size: $-cell-required-size;
|
|
106
|
+
line-height: 1.1;
|
|
107
|
+
color: $-cell-required-color;
|
|
108
|
+
content: '*';
|
|
109
|
+
}
|
|
109
110
|
}
|
|
110
111
|
}
|
|
111
112
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
:class="`wd-select-picker__label ${isRequired && 'is-required'} ${customLabelClass}`"
|
|
17
17
|
:style="labelWidth ? 'min-width:' + labelWidth + ';max-width:' + labelWidth + ';' : ''"
|
|
18
18
|
>
|
|
19
|
-
<
|
|
19
|
+
<text v-if="label" class="wd-select-picker__label-inner">{{ label }}</text>
|
|
20
20
|
<slot v-else name="label"></slot>
|
|
21
21
|
</view>
|
|
22
22
|
<view class="wd-select-picker__body">
|
|
@@ -100,16 +100,17 @@
|
|
|
100
100
|
color: $-cell-title-color;
|
|
101
101
|
|
|
102
102
|
@include when(required) {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
103
|
+
.wd-input__label-inner {
|
|
104
|
+
position: relative;
|
|
105
|
+
&::after {
|
|
106
|
+
position: absolute;
|
|
107
|
+
top: 2px;
|
|
108
|
+
right: -12px;
|
|
109
|
+
font-size: $-cell-required-size;
|
|
110
|
+
line-height: 1.1;
|
|
111
|
+
color: $-cell-required-color;
|
|
112
|
+
content: '*';
|
|
113
|
+
}
|
|
113
114
|
}
|
|
114
115
|
}
|
|
115
116
|
}
|