All checks were successful
Deploy Production / Deploy to Production (push) Successful in 21s
- Plugin csv-export: authenticated route /wg-export/contacts generates CSV with UTF-8 BOM, semicolon separator, white-paper titles resolved - Panel section with k-button wired to the route, index.css for spacing - white-papers.yml dataTab converted to sections to host the custom section - Filename format: YYMMDD-contacts.csv Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
panel.plugin("world-game/csv-export", {
|
|
sections: {
|
|
"csv-export": {
|
|
template: `
|
|
<k-button
|
|
icon="download"
|
|
text="Exporter en CSV"
|
|
variant="filled"
|
|
theme="positive"
|
|
link="/wg-export/contacts"
|
|
target="_blank"
|
|
class="csv-export-btn"
|
|
/>
|
|
`,
|
|
},
|
|
},
|
|
});
|