Skip to content

Commit

Permalink
chore: format code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Denny09310 committed Oct 7, 2024
1 parent b5d166e commit 68e8523
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 48 deletions.
28 changes: 14 additions & 14 deletions src/Shoelace.Style/Components/Switch/ShoelaceSwitch.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
@inherits ShoelaceCheckbox

<sl-switch @ref="Element"
@attributes="AdditionalAttributes"
class="@Class"
id="@Id"
style="@Style"
default-value="@DefaultValue"
disabled="@Disabled"
form="@Form"
help-text="@HelpText"
name="@Name"
required="@Required"
size="@Size"
value="@Value"
checked="@Checked"
default-checked="@DefaultChecked">
@attributes="AdditionalAttributes"
class="@Class"
id="@Id"
style="@Style"
default-value="@DefaultValue"
disabled="@Disabled"
form="@Form"
help-text="@HelpText"
name="@Name"
required="@Required"
size="@Size"
value="@Value"
checked="@Checked"
default-checked="@DefaultChecked">
@Label
</sl-switch>
68 changes: 34 additions & 34 deletions src/Shoelace.Style/Components/Textarea/ShoealceTextarea.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,37 @@
@inherits ShoelaceInput<string>

<sl-textarea @ref="Element"
@attributes="AdditionalAttributes"
id="@Id"
class="@Class"
style="@Style"
default-value="@DefaultValue"
disabled="@Disabled"
form="@Form"
help-text="@HelpText"
label="@Label"
name="@Name"
required="@Required"
size="@Size"
value="@Value"
autocapitalize="@AutoCapitalize"
autocorrect="@AutoCorrect"
autofocus="@AutoFocus"
clearable="@Clearable"
enterkeyhint="@EnterKeyHint"
filled="@Filled"
inputmode="@InputMode"
maxlength="@MaxLength"
minlength="@MinLength"
no-spin-buttons="@NoSpinButtons"
password-toggle="@PasswordToggle"
password-visible="@PasswordVisible"
pattern="@Pattern"
pill="@Pill"
placeholder="@Placeholder"
readonly="@Readonly"
spellcheck="@Spellcheck"
step="@Step"
type="@Type"
rows="@Rows"
resize="@Resize"></sl-textarea>
@attributes="AdditionalAttributes"
id="@Id"
class="@Class"
style="@Style"
default-value="@DefaultValue"
disabled="@Disabled"
form="@Form"
help-text="@HelpText"
label="@Label"
name="@Name"
required="@Required"
size="@Size"
value="@Value"
autocapitalize="@AutoCapitalize"
autocorrect="@AutoCorrect"
autofocus="@AutoFocus"
clearable="@Clearable"
enterkeyhint="@EnterKeyHint"
filled="@Filled"
inputmode="@InputMode"
maxlength="@MaxLength"
minlength="@MinLength"
no-spin-buttons="@NoSpinButtons"
password-toggle="@PasswordToggle"
password-visible="@PasswordVisible"
pattern="@Pattern"
pill="@Pill"
placeholder="@Placeholder"
readonly="@Readonly"
spellcheck="@Spellcheck"
step="@Step"
type="@Type"
rows="@Rows"
resize="@Resize"></sl-textarea>

0 comments on commit 68e8523

Please sign in to comment.