UNPKG

@kdsoft/lit-mvvm-components

Version:

Webcomponents based on @kdsoft-lit-mvvm

23 lines (18 loc) 377 B
class KdsDropdownConnector { constructor(getDropdown) { this.getDropdown = getDropdown; } // override this connectDropdownSlot() { // } // override this disconnectDropdownSlot() { // } reconnectDropdownSlot() { this.disconnectDropdownSlot(); this.connectDropdownSlot(); } } export default KdsDropdownConnector;