Data/Season: Add create team button

This commit is contained in:
2024-12-23 17:32:45 +01:00
parent 77f373d593
commit e4a4a15367
3 changed files with 28 additions and 5 deletions

View File

@ -38,7 +38,10 @@
const meta = $modalStore[0].meta;
team = meta.team;
require_inputs = meta.require_inputs;
disable_inputs = meta.disable_inputs;
banner_template = meta.banner_template;
logo_template = meta.logo_template;
}
</script>

View File

@ -14,13 +14,13 @@
children: Snippet;
/** The main color variant, e.g. "primary" or "secondary". */
color?: string | undefined;
color?: string;
/** Set the button type to "submit" (otherwise "button"). Only if "href" is undefined. */
submit?: boolean;
/** Make the button act as a link. */
href?: string | undefined;
href?: string;
/** Add a width class to the button. */
width?: string;