Update passthrough demo
parent
08801b82e9
commit
e3dd7b8958
|
@ -12,9 +12,15 @@
|
||||||
header="Header"
|
header="Header"
|
||||||
toggleable
|
toggleable
|
||||||
:pt="{
|
:pt="{
|
||||||
header: (opts) => {
|
header: (options) => ({
|
||||||
return { class: opts.state.d_collapsed ? 'bg-primary border-primary' : 'bg-primary-reverse border-primary' };
|
class: [
|
||||||
},
|
'border-primary',
|
||||||
|
{
|
||||||
|
'bg-primary': options.state.d_collapsed,
|
||||||
|
'bg-primary-reverse': !options.state.d_collapsed
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
content: { class: 'border-primary text-lg text-primary-700' },
|
content: { class: 'border-primary text-lg text-primary-700' },
|
||||||
title: { class: 'text-xl' },
|
title: { class: 'text-xl' },
|
||||||
toggler: { class: 'bg-primary hover:bg-primary-reverse' }
|
toggler: { class: 'bg-primary hover:bg-primary-reverse' }
|
||||||
|
@ -37,12 +43,18 @@ export default {
|
||||||
basic: `
|
basic: `
|
||||||
<Panel header="Header" toggleable
|
<Panel header="Header" toggleable
|
||||||
:pt="{
|
:pt="{
|
||||||
header: (opts: PanelPassThroughMethodOptions) => {
|
header: (options) => ({
|
||||||
return { class: opts.state.d_collapsed ? 'bg-primary border-primary' : 'bg-primary-reverse border-primary' };
|
class: [
|
||||||
},
|
'border-primary',
|
||||||
|
{
|
||||||
|
'bg-primary': options.state.d_collapsed,
|
||||||
|
'bg-primary-reverse': !options.state.d_collapsed,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}),
|
||||||
content: { class: 'border-primary text-lg text-primary-700' },
|
content: { class: 'border-primary text-lg text-primary-700' },
|
||||||
title: { class: 'text-xl' },
|
title: { class: 'text-xl' },
|
||||||
toggler: { class: 'bg-primary hover:bg-primary-reverse' }
|
toggler: { class: 'bg-primary hover:bg-primary-reverse' },
|
||||||
}">
|
}">
|
||||||
<p class="m-0">
|
<p class="m-0">
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||||
|
@ -54,12 +66,18 @@ export default {
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<Panel header="Header" toggleable
|
<Panel header="Header" toggleable
|
||||||
:pt="{
|
:pt="{
|
||||||
header: (opts: PanelPassThroughMethodOptions) => {
|
header: (options) => ({
|
||||||
return { class: opts.state.d_collapsed ? 'bg-primary border-primary' : 'bg-primary-reverse border-primary' };
|
class: [
|
||||||
},
|
'border-primary',
|
||||||
|
{
|
||||||
|
'bg-primary': options.state.d_collapsed,
|
||||||
|
'bg-primary-reverse': !options.state.d_collapsed,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}),
|
||||||
content: { class: 'border-primary text-lg text-primary-700' },
|
content: { class: 'border-primary text-lg text-primary-700' },
|
||||||
title: { class: 'text-xl' },
|
title: { class: 'text-xl' },
|
||||||
toggler: { class: 'bg-primary hover:bg-primary-reverse' }
|
toggler: { class: 'bg-primary hover:bg-primary-reverse' },
|
||||||
}">
|
}">
|
||||||
<p class="m-0">
|
<p class="m-0">
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||||
|
@ -76,12 +94,18 @@ export default {
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<Panel header="Header" toggleable
|
<Panel header="Header" toggleable
|
||||||
:pt="{
|
:pt="{
|
||||||
header: (opts: PanelPassThroughMethodOptions) => {
|
header: (options) => ({
|
||||||
return { class: opts.state.d_collapsed ? 'bg-primary border-primary' : 'bg-primary-reverse border-primary' };
|
class: [
|
||||||
},
|
'border-primary',
|
||||||
|
{
|
||||||
|
'bg-primary': options.state.d_collapsed,
|
||||||
|
'bg-primary-reverse': !options.state.d_collapsed,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}),
|
||||||
content: { class: 'border-primary text-lg text-primary-700' },
|
content: { class: 'border-primary text-lg text-primary-700' },
|
||||||
title: { class: 'text-xl' },
|
title: { class: 'text-xl' },
|
||||||
toggler: { class: 'bg-primary hover:bg-primary-reverse' }
|
toggler: { class: 'bg-primary hover:bg-primary-reverse' },
|
||||||
}">
|
}">
|
||||||
<p class="m-0">
|
<p class="m-0">
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||||
|
|
Loading…
Reference in New Issue