Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<p>This is the bottom pane.</p>
</ix-pane>

<div slot="content">
<div>
<ix-button (click)="toggleVariant()" style="margin: 2.5rem"
>Toggle Variant</ix-button
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<p>This is the bottom pane.</p>
</ix-pane>

<div slot="content">
<div>
<ix-button (click)="toggleVariant()" style="margin: 2.5rem"
>Toggle Variant</ix-button
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<p>This is the bottom pane.</p>
</ix-pane>

<div slot="content">
<div>
<ix-button id="toggle-variant" style="margin: 2.5rem">
Toggle Variant
</ix-button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default () => {
<p>This is the bottom pane.</p>
</IxPane>

<div slot="content">
<div>
<IxButton
onClick={() =>
setVariant(variant === 'inline' ? 'floating' : 'inline')
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-test-app/src/preview-examples/pane-layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const layout = ref<'full-horizontal' | 'full-vertical'>('full-horizontal');
<p>This is the bottom pane.</p>
</IxPane>

<div slot="content">
<div>
<IxButton
@click="
() => {
Expand Down
Loading