File size: 3,371 Bytes
1106169 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
{"prompt": "Basic expandable with title.", "Markdown code": "<|Title|expandable|>"}
{"prompt": "Expandable initially expanded.", "Markdown code": "<|Title|expandable|expanded=True|>"}
{"prompt": "Expandable initially collapsed.", "Markdown code": "<|Title|expandable|expanded=False|>"}
{"prompt": "Expandable with ID.", "Markdown code": "<|Title|expandable|id=my_expandable|>"}
{"prompt": "Expandable with custom classes.", "Markdown code": "<|Title|expandable|class_name='class1 class2'|>"}
{"prompt": "Expandable with hover text.", "Markdown code": "<|Title|expandable|hover_text='Info about expandable'|>"}
{"prompt": "Expandable with page content.", "Markdown code": "<|Title|expandable|page=page_name|>"}
{"prompt": "Expandable with partial content.", "Markdown code": "<|Title|expandable|partial={partial}|>"}
{"prompt": "Expandable with custom properties.", "Markdown code": "<|Title|expandable|properties={key: 'value'}|>"}
{"prompt": "Expandable with dynamic content.", "Markdown code": "<|Title|expandable|content={dynamic_content}|>"}
{"prompt": "Expandable with fixed position.", "Markdown code": "<|Title|expandable|position=fixed|>"}
{"prompt": "Expandable with absolute position.", "Markdown code": "<|Title|expandable|position=absolute|>"}
{"prompt": "Expandable with z-index.", "Markdown code": "<|Title|expandable|z_index=10|>"}
{"prompt": "Expandable with border.", "Markdown code": "<|Title|expandable|border='1px solid black'|>"}
{"prompt": "Expandable with padding.", "Markdown code": "<|Title|expandable|padding='20px'|>"}
{"prompt": "Expandable with margin.", "Markdown code": "<|Title|expandable|margin='10px'|>"}
{"prompt": "Small gap expandable.", "Markdown code": "<|Title|expandable|gap='10px'|>"}
{"prompt": "Large gap expandable.", "Markdown code": "<|Title|expandable|gap='2rem'|>"}
{"prompt": "Expandable with custom style.", "Markdown code": "<|Title|expandable|style='background-color: blue;'|>"}
{"prompt": "Expandable with grouped controls.", "Markdown code": "<|Title|expandable|\n <|{Control 1}|>\n <|{Control 2}|>\n|>"}
{"prompt": "Expandable with conditional rendering.", "Markdown code": "<|Title|expandable|render={conditional}|\n <|{Some Content}|>\n|>"}
{"prompt": "Expandable with a specific width.", "Markdown code": "<|Title|expandable|width='100px'|\n <|{Some Content}|>\n|>"}
{"prompt": "Expandable with a specific height.", "Markdown code": "<|Title|expandable|height='100px'|\n <|{Some Content}|>\n|>"}
{"prompt": "Responsive expandable.", "Markdown code": "<|Title|expandable|responsive|\n <|{Some Content}|>\n|>"}
{"prompt": "Expandable with alignment.", "Markdown code": "<|Title|expandable|align='center'|\n <|{Some Content}|>\n|>"}
{"prompt": "Expandable with vertical orientation.", "Markdown code": "<|Title|expandable|orientation='vertical'|\n <|{Some Content}|>\n|>"}
{"prompt": "Expandable with horizontal orientation.", "Markdown code": "<|Title|expandable|orientation='horizontal'|\n <|{Some Content}|>\n|>"}
{"prompt": "Expandable with background color.", "Markdown code": "<|Title|expandable|background_color='red'|\n <|{Some Content}|>\n|>"}
{"prompt": "Expandable with block content.", "Markdown code": "<|Title|expandable|\n <|{Block content here}|>\n|>"}
{"prompt": "Expandable toggling expanded state.", "Markdown code": "<|Title|expandable|expand={toggle_state}|>"}
|