Skip to content

Commit

Permalink
fix: storybook fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tshimber committed Oct 18, 2024
1 parent 3d7e0b4 commit 6a68116
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const Template = (args, { argTypes }) => ({
:value="value"
:input-id="inputId"
:required="required"
:aria-details-id="ariaDetailsId"
@scaleChange="action('scaleChange')($event)"
@scale-change="action('scale-change')($event)"
></scale-checkbox>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
:input-id="inputId"
:required="required"
:aria-label-checkbox="ariaLabelCheckbox"
:aria-details-id="ariaDetailsId"
@scaleChange="scaleChange"
>
</scale-checkbox>
Expand All @@ -33,6 +32,7 @@ export default {
inputId: { type: String },
required: { type: Boolean },
ariaLabelCheckbox: { type: String },
ariaDetailsId: { type: String },
},
methods: {
scaleChange($event) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export const Template = (args, { argTypes }) => ({
:helper-text="helperText"
:invalid="invalid"
:placeholder="placeholder"
:aria-details-id="ariaDetailsId"
@scaleChange="scaleChange"
@scale-change="scale-change"
@scaleFocus="scaleFocus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
:popup-title="popupTitle"
:placeholder="placeholder"
:styles="styles"
:aria-details-id="ariaDetailsId"
@scaleChange="scaleChange"
@scaleFocus="scaleFocus"
@scaleBlur="scaleBlur"
Expand Down Expand Up @@ -51,6 +50,7 @@ export default {
styles: { type: String },
placeholder: { type: String },
size: { type: String },
ariaDetailsId: { type: String },
},
methods: {
scaleChange($event) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export const Template = (args, { argTypes }) => ({
:combobox-id="comboboxId"
:hide-label-visually="hideLabelVisually"
:floating-strategy="floatingStrategy"
:aria-details-id="ariaDetailsId"
@scaleChange="['scale-change']"
@scaleFocus="['scale-focus']"
@scaleBlur="['scale-blur']"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
:combobox-id="comboboxId"
:hide-label-visually="hideLabelVisually"
:floating-strategy="floatingStrategy"
:aria-details-id="ariaDetailsId"
@scaleChange="['scale-change']"
@scaleFocus="['scale-focus']"
@scaleBlur="['scale-blur']"
Expand All @@ -36,6 +35,7 @@ export default {
comboboxId: { type: String },
hideLabelVisually: { type: Boolean, default: false },
floatingStrategy: { type: String },
ariaDetailsId: { type: String },
},
methods: {
'scale-change'($event) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export const Template = (args, { argTypes }) => ({
:input-id="inputId"
:visible-size="visibleSize"
:controlled="controlled"
:aria-details-id="ariaDetailsId"
@scaleChange="scaleChange"
@scaleFocus="scaleFocus"
@scaleBlur="scaleBlur"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
:input-id="inputId"
:visible-size="visibleSize"
:controlled="controlled"
:aria-details-id="ariaDetailsId"
@scaleInput="scaleInput"
@scaleChange="scaleChange"
@scaleFocus="scaleFocus"
Expand Down Expand Up @@ -41,6 +40,7 @@ export default {
controlled: { type: Boolean },
styles: { type: String },
size: { type: String },
ariaDetailsId: { type: String },
},
methods: {
scaleInput($event) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export const Template = (args, context) => ({
:invalid="itemProps[index]?.invalid"
:helper-text="itemProps[index]?.helperText"
:disabled="itemProps[index]?.disabled"
:aria-details-id="ariaDetailsId"
></scale-radio-button>
</scale-radio-button-group>
`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
:input-id="inputId"
:transparent="transparent"
:input-autofocus="inputAutofocus"
:aria-details-id="ariaDetailsId"
@scaleInput="scaleInput"
@scaleChange="scaleChange"
@scaleFocus="scaleFocus"
Expand Down Expand Up @@ -53,6 +52,7 @@ export default {
transparent: { type: Boolean },
inputAutofocus: { type: Boolean },
styles: { type: String },
ariaDetailsId: { type: String },
},
methods: {
scaleInput($event) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export const Template = (args, { argTypes }) => ({
:input-id="inputId"
:transparent="transparent"
:input-autofocus="inputAutofocus"
:aria-details-id="ariaDetailsId"
@scaleChange="scaleChange"
@scaleFocus="scaleFocus"
@scaleBlur="scaleBlur"
Expand Down

0 comments on commit 6a68116

Please sign in to comment.