Expansion
Basic usage
  Expansion title 
 <CExpansion title="Expansion title">
  <h3>Some body content</h3>
</CExpansion><CExpansion title="Expansion title">
  <h3>Some body content</h3>
</CExpansion>svelte
   Click fold/expand code 
Custom arrow
  Expansion title 
 <CExpansion title="Expansion title">
  <p>Look at the arrow, is a smile!</p>
  <div slot="arrow" class="i-ant-design-smile-outlined text-6" />
</CExpansion><CExpansion title="Expansion title">
  <p>Look at the arrow, is a smile!</p>
  <div slot="arrow" class="i-ant-design-smile-outlined text-6" />
</CExpansion>svelte
   Click fold/expand code 
Manual control
  Click button above toggle expand status 
 <script lang="ts">
  let expanded = false
</script>
<CButton
  rounded
  mb-4
  label="Click Me"
  on:click={() => (expanded = !expanded)}
/>
<CExpansion title="Click button above toggle expand status" bind:expanded>
  <p>Some content</p>
</CExpansion><script lang="ts">
  let expanded = false
</script>
<CButton
  rounded
  mb-4
  label="Click Me"
  on:click={() => (expanded = !expanded)}
/>
<CExpansion title="Click button above toggle expand status" bind:expanded>
  <p>Some content</p>
</CExpansion>svelte
   Click fold/expand code 
Reverse direction
  Expansion title 
 <CExpansion reverse title="Expansion title">
  <p>Hello, I'm expanded from top!</p>
</CExpansion><CExpansion reverse title="Expansion title">
  <p>Hello, I'm expanded from top!</p>
</CExpansion>svelte
   Click fold/expand code 
CExpansion Props
- titledefault:stringThe title of the expansion 
- expandeddefault:booleanfalseDetermine whether the expansion is expanded or not. It is recomended to use bind:expanded
- reversedefault:booleanfalseDetermine the expand direction, falsemeans down,truemeans up
- headerStyledefault:stringCustom header style 
- showArrowdefault:booleantrueDetermine whether to show the expanded status arrow on the right. 
CExpansion Events
- toggledDispatch when the toggle transition end 
- readyEmit when the initial height compute is done 
CExpansion Slots
- defaultExpansion body content Bindings: - recomputedHeight   () => voidThe method to recomputed the body height. 
 
- recomputedHeight   
- iconThe content before title 
- titleCustomize the title content Bindings: 
- arrowCustomize the arrow dom 
CExpansion Exports
No data