bkui-vue 0.0.1-beta.331 → 0.0.1-beta.332
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/index.cjs.js +25 -25
- package/dist/index.esm.js +76 -33
- package/dist/index.umd.js +26 -26
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/alert/alert.css +4 -0
- package/lib/alert/alert.less +24 -19
- package/lib/alert/alert.variable.css +4 -0
- package/lib/checkbox/checkbox.css +10 -6
- package/lib/checkbox/checkbox.less +38 -32
- package/lib/checkbox/checkbox.variable.css +10 -6
- package/lib/checkbox/index.js +1 -1
- package/lib/form/form-item.d.ts +14 -3
- package/lib/form/form.css +13 -7
- package/lib/form/form.less +61 -52
- package/lib/form/form.variable.css +13 -7
- package/lib/form/index.d.ts +11 -2
- package/lib/form/index.js +1 -1
- package/lib/form/type.d.ts +1 -2
- package/lib/form/utils.d.ts +2 -0
- package/lib/message/message.css +1 -1
- package/lib/message/message.less +1 -1
- package/lib/message/message.variable.css +1 -1
- package/lib/pagination/pagination.less +9 -7
- package/lib/radio/index.js +1 -1
- package/lib/radio/radio.css +60 -63
- package/lib/radio/radio.less +74 -78
- package/lib/radio/radio.variable.css +60 -63
- package/lib/select/index.js +1 -1
- package/lib/shared/index.js +1 -1
- package/lib/table/index.js +1 -1
- package/lib/table/table.css +13 -6
- package/lib/table/table.less +6 -0
- package/lib/table/table.variable.css +13 -6
- package/lib/tree/tree.css +10 -6
- package/lib/tree/tree.variable.css +10 -6
- package/package.json +1 -1
package/lib/tree/tree.css
CHANGED
@@ -31,11 +31,15 @@
|
|
31
31
|
width: 1px;
|
32
32
|
background: transparent;
|
33
33
|
}
|
34
|
+
.bk-checkbox-group {
|
35
|
+
display: inline-block;
|
36
|
+
letter-spacing: normal;
|
37
|
+
}
|
34
38
|
.bk-checkbox {
|
35
39
|
display: inline-flex;
|
36
40
|
justify-self: center;
|
41
|
+
align-items: center;
|
37
42
|
font-size: 14px;
|
38
|
-
line-height: 18px;
|
39
43
|
letter-spacing: normal;
|
40
44
|
color: #63656e;
|
41
45
|
cursor: pointer;
|
@@ -101,21 +105,20 @@
|
|
101
105
|
.bk-checkbox.is-disabled.is-checked .bk-checkbox-input {
|
102
106
|
background: #dcdee5;
|
103
107
|
}
|
104
|
-
.bk-checkbox
|
108
|
+
.bk-checkbox-input {
|
105
109
|
position: relative;
|
106
110
|
display: inline-block;
|
107
111
|
width: 16px;
|
108
112
|
height: 16px;
|
109
|
-
margin-right: 5px;
|
110
113
|
vertical-align: middle;
|
111
114
|
border: 1px solid #979ba5;
|
112
115
|
border-radius: 2px;
|
113
116
|
}
|
114
|
-
.bk-checkbox
|
117
|
+
.bk-checkbox-input.small {
|
115
118
|
width: 14px;
|
116
119
|
height: 14px;
|
117
120
|
}
|
118
|
-
.bk-checkbox
|
121
|
+
.bk-checkbox-original {
|
119
122
|
position: absolute;
|
120
123
|
top: 0;
|
121
124
|
left: 0;
|
@@ -123,8 +126,9 @@
|
|
123
126
|
width: 0;
|
124
127
|
height: 0;
|
125
128
|
}
|
126
|
-
.bk-checkbox
|
129
|
+
.bk-checkbox-label {
|
127
130
|
display: inline-block;
|
131
|
+
margin-left: 5px;
|
128
132
|
vertical-align: middle;
|
129
133
|
}
|
130
134
|
.bk-tree {
|
@@ -150,11 +150,15 @@
|
|
150
150
|
width: 1px;
|
151
151
|
background: transparent;
|
152
152
|
}
|
153
|
+
.bk-checkbox-group {
|
154
|
+
display: inline-block;
|
155
|
+
letter-spacing: normal;
|
156
|
+
}
|
153
157
|
.bk-checkbox {
|
154
158
|
display: inline-flex;
|
155
159
|
justify-self: center;
|
160
|
+
align-items: center;
|
156
161
|
font-size: 14px;
|
157
|
-
line-height: 18px;
|
158
162
|
letter-spacing: normal;
|
159
163
|
color: #63656e;
|
160
164
|
cursor: pointer;
|
@@ -220,21 +224,20 @@
|
|
220
224
|
.bk-checkbox.is-disabled.is-checked .bk-checkbox-input {
|
221
225
|
background: #dcdee5;
|
222
226
|
}
|
223
|
-
.bk-checkbox
|
227
|
+
.bk-checkbox-input {
|
224
228
|
position: relative;
|
225
229
|
display: inline-block;
|
226
230
|
width: 16px;
|
227
231
|
height: 16px;
|
228
|
-
margin-right: 5px;
|
229
232
|
vertical-align: middle;
|
230
233
|
border: 1px solid #979ba5;
|
231
234
|
border-radius: 2px;
|
232
235
|
}
|
233
|
-
.bk-checkbox
|
236
|
+
.bk-checkbox-input.small {
|
234
237
|
width: 14px;
|
235
238
|
height: 14px;
|
236
239
|
}
|
237
|
-
.bk-checkbox
|
240
|
+
.bk-checkbox-original {
|
238
241
|
position: absolute;
|
239
242
|
top: 0;
|
240
243
|
left: 0;
|
@@ -242,8 +245,9 @@
|
|
242
245
|
width: 0;
|
243
246
|
height: 0;
|
244
247
|
}
|
245
|
-
.bk-checkbox
|
248
|
+
.bk-checkbox-label {
|
246
249
|
display: inline-block;
|
250
|
+
margin-left: 5px;
|
247
251
|
vertical-align: middle;
|
248
252
|
}
|
249
253
|
.bk-tree {
|