);
}
private renderContentStart(): VNode {
- const { hasContentStart } = this;
return (
-
+
);
@@ -422,7 +424,6 @@ export class Block
render(): VNode {
const {
collapsible,
- el,
loading,
open,
heading,
@@ -446,8 +447,6 @@ export class Block
);
- const hasControl = !!getSlotted(el, SLOTS.control);
- const hasMenuActions = !!getSlotted(el, SLOTS.headerMenuActions);
const collapseIcon = open ? ICONS.opened : ICONS.closed;
const headerNode = (
@@ -477,21 +476,18 @@ export class Block
) : (
headerContent
)}
- {hasControl ? (
-
-
-
- ) : null}
- {hasMenuActions ? (
-
-
-
- ) : null}
+
+
+
+
+
+
{this.renderActionsEnd()}