@momentum-ui/web-components 2.26.14 → 2.26.15
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.
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
>
|
|
20
20
|
${t.template(t,i)}
|
|
21
21
|
</div>
|
|
22
|
-
`}getActiveDescendant(){return this.activeId?`${e.prefixId}${this.activeId}`:this.value?`${e.prefixId}${this.value[0]}`:""}render(){return a.html`
|
|
22
|
+
`}getActiveDescendant(){return this.activeId?`${e.prefixId}${this.activeId}`:this.value&&this.value.length>0&&this.value[0]?`${e.prefixId}${this.value[0]}`:""}render(){return a.html`
|
|
23
23
|
${this.getStyles()}
|
|
24
24
|
<div
|
|
25
25
|
class="md-advance-list-wrapper virtual-scroll"
|
package/dist/index-entry.js
CHANGED
|
@@ -995,7 +995,7 @@
|
|
|
995
995
|
>
|
|
996
996
|
${e.template(e,i)}
|
|
997
997
|
</div>
|
|
998
|
-
`}getActiveDescendant(){return this.activeId?`${t.prefixId}${this.activeId}`:this.value?`${t.prefixId}${this.value[0]}`:""}render(){return l.html`
|
|
998
|
+
`}getActiveDescendant(){return this.activeId?`${t.prefixId}${this.activeId}`:this.value&&this.value.length>0&&this.value[0]?`${t.prefixId}${this.value[0]}`:""}render(){return l.html`
|
|
999
999
|
${this.getStyles()}
|
|
1000
1000
|
<div
|
|
1001
1001
|
class="md-advance-list-wrapper virtual-scroll"
|
|
@@ -83,7 +83,7 @@ export declare namespace Grabber {
|
|
|
83
83
|
};
|
|
84
84
|
private get grabberContainerClassMap();
|
|
85
85
|
private get isRtl();
|
|
86
|
-
get iconName(): "arrow-up-bold" | "arrow-down-bold" | "
|
|
86
|
+
get iconName(): "arrow-up-bold" | "arrow-down-bold" | "arrow-left-bold" | "arrow-right-bold" | "list-menu-bold";
|
|
87
87
|
get iconSize(): "10" | "12";
|
|
88
88
|
render(): import("lit-element").TemplateResult;
|
|
89
89
|
}
|