neo.mjs 4.4.5 → 4.4.7
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
CHANGED
@@ -191,7 +191,9 @@
|
|
191
191
|
display : flex;
|
192
192
|
flex : 1 1 100px;
|
193
193
|
min-height : v(textfield-input-height);
|
194
|
+
outline : 0 solid v(textfield-outline-active);
|
194
195
|
overflow : hidden;
|
196
|
+
transition : outline-width .1s ease-out;
|
195
197
|
|
196
198
|
.neo-textfield-input {
|
197
199
|
border : none;
|
package/src/list/Base.mjs
CHANGED
@@ -288,10 +288,12 @@ class Base extends Component {
|
|
288
288
|
* @protected
|
289
289
|
*/
|
290
290
|
afterSetUseHeaders(value, oldValue) {
|
291
|
-
|
291
|
+
if (value) {
|
292
|
+
let me = this;
|
292
293
|
|
293
|
-
|
294
|
-
|
294
|
+
me.vdom.tag = 'dl';
|
295
|
+
me.itemTagName = 'dd';
|
296
|
+
}
|
295
297
|
}
|
296
298
|
|
297
299
|
/**
|