-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(forms): add column width stories, remove max-width (#1715)
## PR Checklist Please check if your PR fulfills the following requirements: - [ ] Tests for the changes have been added (for bug fixes / features) - [ ] Docs have been added / updated (for bug fixes / features) - [ ] If applicable, have a visual design approval ## PR Type What kind of change does this PR introduce? <!-- Please check the one that applies to this PR using "x". --> - [X] Bugfix - [ ] Feature - [ ] Code style update (formatting, local variables) - [ ] Refactoring (no functional changes, no api changes) - [ ] Build related changes - [ ] CI related changes - [ ] Documentation content changes - [ ] Other... Please describe: ## What is the current behavior? No visual tests. Setting max-width on the control-container class which is not needed actually. <!-- Please describe the current behavior that you are modifying, or link to a relevant issue. --> Issue Number: N/A ## What is the new behavior? Visual tests for column widths. No max-width set. ## Does this PR introduce a breaking change? - [ ] Yes - [X] No <!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information --------- Co-authored-by: Daniel Tsanev <tsanevd@vmware.com> Co-authored-by: GitHub <noreply@github.com>
- Loading branch information
1 parent
18498d4
commit ec32f04
Showing
114 changed files
with
240 additions
and
4 deletions.
There are no files selected for viewing
237 changes: 237 additions & 0 deletions
237
.storybook/stories/forms/forms-input-column-width.stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,237 @@ | ||
/* | ||
* Copyright (c) 2016-2025 Broadcom. All Rights Reserved. | ||
* The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries. | ||
* This software is released under MIT license. | ||
* The full license information can be found in LICENSE in the root directory of this project. | ||
*/ | ||
|
||
import { ChangeDetectorRef, Component, Input } from '@angular/core'; | ||
import { FormControl, FormGroup } from '@angular/forms'; | ||
import { ClrFormLayout, ClrFormsModule, ClrLayoutModule } from '@clr/angular'; | ||
import { argsToTemplate, moduleMetadata, StoryObj } from '@storybook/angular'; | ||
|
||
import { CommonModules } from '../../helpers/common'; | ||
|
||
// Class binding for inputs is not working due to 'initControlClass' function for that service being called in the constructor. However moving it to ngOnInit | ||
// breaks the tests. | ||
@Component({ | ||
selector: 'forms-input-states-components', | ||
template: ` | ||
<form class="clr-form-full-width" clrForm [formGroup]="form" [clrLayout]="clrLayout"> | ||
<h3>Col 1</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 1 label</label> | ||
<input class="clr-col-1" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 2</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 2 label</label> | ||
<input class="clr-col-2" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 3</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 3 label</label> | ||
<input class="clr-col-3" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 4</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 4 label</label> | ||
<input class="clr-col-4" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 5</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 5 label</label> | ||
<input class="clr-col-5" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 6</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 6 label</label> | ||
<input class="clr-col-6" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 7</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 7 label</label> | ||
<input class="clr-col-7" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 8</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 8 label</label> | ||
<input class="clr-col-8" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 9</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 9 label</label> | ||
<input class="clr-col-9" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 10</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 10 label</label> | ||
<input class="clr-col-10" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
<h3>Col 11</h3> | ||
<clr-input-container> | ||
<label class="clr-col-1">Field 11 label</label> | ||
<input class="clr-col-11" type="text" clrInput name="name" formControlName="name" /> | ||
<clr-control-helper>Helper Subtext</clr-control-helper> | ||
<clr-control-error>State Subtext</clr-control-error> | ||
<clr-control-success>State Subtext</clr-control-success> | ||
</clr-input-container> | ||
</form> | ||
`, | ||
}) | ||
class FormsStoryComponent { | ||
columns = new Array(11); | ||
_isDisabled = false; | ||
_isSuccess = false; | ||
_isError = false; | ||
|
||
form = new FormGroup({ | ||
name: new FormControl(), | ||
}); | ||
|
||
@Input() clrLayout = ClrFormLayout.HORIZONTAL; | ||
|
||
constructor(private changeDetectorRef: ChangeDetectorRef) {} | ||
|
||
@Input() | ||
get isDisabled() { | ||
return this._isDisabled; | ||
} | ||
set isDisabled(value: boolean) { | ||
this._isDisabled = value; | ||
this.setControlsState(); | ||
} | ||
|
||
@Input() | ||
get isError() { | ||
return this._isError; | ||
} | ||
set isError(value: boolean) { | ||
this._isError = value; | ||
this.setControlsState(); | ||
} | ||
|
||
@Input() | ||
get isSuccess() { | ||
return this._isSuccess; | ||
} | ||
set isSuccess(value: boolean) { | ||
this._isSuccess = value; | ||
this.setControlsState(); | ||
} | ||
setControlsState() { | ||
this.form.enable(); | ||
Object.keys(this.form.controls).forEach(control => { | ||
if (this._isDisabled) { | ||
this.form.get(control)?.disable(); | ||
} else { | ||
if (this._isError && !this._isSuccess) { | ||
this.form.get(control).setErrors({ required: true }); | ||
this.form.get(control).markAsTouched(); | ||
this.form.get(control).markAsDirty(); | ||
} else if (this._isSuccess) { | ||
this.form.get(control).setErrors(null); | ||
this.form.get(control).markAsTouched(); | ||
} | ||
} | ||
}); | ||
this.form.updateValueAndValidity(); | ||
this.changeDetectorRef.detectChanges(); | ||
} | ||
} | ||
|
||
export default { | ||
title: 'Forms/Input Column Widths', | ||
component: FormsStoryComponent, | ||
decorators: [ | ||
moduleMetadata({ | ||
declarations: [FormsStoryComponent], | ||
imports: [...CommonModules, ClrLayoutModule, ClrFormsModule], | ||
}), | ||
], | ||
argTypes: { | ||
getProviderFromContainer: { control: { disable: true }, table: { disable: true } }, | ||
triggerValidation: { control: { disable: true }, table: { disable: true } }, | ||
clrLayout: { control: 'radio', options: Object.values(ClrFormLayout).filter(value => typeof value === 'string') }, | ||
}, | ||
args: { | ||
clrLayout: ClrFormLayout.HORIZONTAL, | ||
isDisabled: false, | ||
isError: false, | ||
isSuccess: false, | ||
}, | ||
render: (args: FormsStoryComponent) => ({ | ||
props: { | ||
...args, | ||
}, | ||
template: ` | ||
<forms-input-states-components ${argsToTemplate(args)}></forms-input-states-components> | ||
`, | ||
}), | ||
}; | ||
|
||
type Story = StoryObj<FormsStoryComponent>; | ||
|
||
export const InputStates: Story = {}; | ||
|
||
export const VerticalInputStates: Story = { | ||
args: { clrLayout: ClrFormLayout.VERTICAL }, | ||
}; | ||
|
||
export const CompactInputStates: Story = { | ||
args: { clrLayout: ClrFormLayout.COMPACT }, | ||
}; | ||
|
||
export const DisabledStates: Story = { | ||
args: { isDisabled: true }, | ||
}; | ||
|
||
export const ErrorStates: Story = { | ||
args: { isError: true }, | ||
}; | ||
export const VerticalErrorStates: Story = { | ||
args: { isError: true, clrLayout: ClrFormLayout.VERTICAL }, | ||
}; | ||
export const CompactErrorStates: Story = { | ||
args: { isError: true, clrLayout: ClrFormLayout.COMPACT }, | ||
}; | ||
|
||
export const SuccessStates: Story = { | ||
args: { isSuccess: true }, | ||
}; | ||
export const VerticalSuccessStates: Story = { | ||
args: { isSuccess: true, clrLayout: ClrFormLayout.VERTICAL }, | ||
}; | ||
export const CompactSuccessStates: Story = { | ||
args: { isSuccess: true, clrLayout: ClrFormLayout.COMPACT }, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+57 KB
...napshots/chromium/forms/input-column-widths--compact-error-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+56.2 KB
...apshots/chromium/forms/input-column-widths--compact-error-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+42.2 KB
...napshots/chromium/forms/input-column-widths--compact-input-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+41.9 KB
...apshots/chromium/forms/input-column-widths--compact-input-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+57.4 KB
...pshots/chromium/forms/input-column-widths--compact-success-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+57.4 KB
...shots/chromium/forms/input-column-widths--compact-success-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+44.3 KB
tests/snapshots/chromium/forms/input-column-widths--disabled-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+45.1 KB
tests/snapshots/chromium/forms/input-column-widths--disabled-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+62.7 KB
tests/snapshots/chromium/forms/input-column-widths--error-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+61.9 KB
tests/snapshots/chromium/forms/input-column-widths--error-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+45.4 KB
tests/snapshots/chromium/forms/input-column-widths--input-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+45 KB
tests/snapshots/chromium/forms/input-column-widths--input-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+63.6 KB
tests/snapshots/chromium/forms/input-column-widths--success-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+62.8 KB
tests/snapshots/chromium/forms/input-column-widths--success-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+64.2 KB
...apshots/chromium/forms/input-column-widths--vertical-error-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+63.2 KB
...pshots/chromium/forms/input-column-widths--vertical-error-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+46.8 KB
...apshots/chromium/forms/input-column-widths--vertical-input-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+46.4 KB
...pshots/chromium/forms/input-column-widths--vertical-input-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+65.1 KB
...shots/chromium/forms/input-column-widths--vertical-success-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+64.3 KB
...hots/chromium/forms/input-column-widths--vertical-success-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-12 Bytes
(100%)
...m/forms/input-states-styles-only--compact-full-width-error-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-9 Bytes
(100%)
.../forms/input-states-styles-only--compact-full-width-error-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-11 Bytes
(100%)
...m/forms/input-states-styles-only--compact-full-width-input-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-8 Bytes
(100%)
.../forms/input-states-styles-only--compact-full-width-input-states-core-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-10 Bytes
(100%)
...forms/input-states-styles-only--full-width-compact-success-states-core-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-10 Bytes
(100%)
...orms/input-states-styles-only--full-width-compact-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-11 Bytes
(100%)
.../chromium/forms/input-states-styles-only--full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-11 Bytes
(100%)
...chromium/forms/input-states-styles-only--full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(100%)
.../chromium/forms/input-states-styles-only--full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-9 Bytes
(100%)
...chromium/forms/input-states-styles-only--full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
...hromium/forms/input-states-styles-only--full-width-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(100%)
...romium/forms/input-states-styles-only--full-width-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...orms/input-states-styles-only--full-width-vertical-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...rms/input-states-styles-only--full-width-vertical-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...m/forms/input-states-styles-only--vertica-full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
.../forms/input-states-styles-only--vertica-full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
.../forms/input-states-styles-only--vertical-full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...forms/input-states-styles-only--vertical-full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ms/input-states-using-components--compact-full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...s/input-states-using-components--compact-full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...ms/input-states-using-components--compact-full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...s/input-states-using-components--compact-full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
.../input-states-using-components--full-width-compact-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...input-states-using-components--full-width-compact-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-7 Bytes
(100%)
...mium/forms/input-states-using-components--full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ium/forms/input-states-using-components--full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
...mium/forms/input-states-using-components--full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ium/forms/input-states-using-components--full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(100%)
...um/forms/input-states-using-components--full-width-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...m/forms/input-states-using-components--full-width-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...input-states-using-components--full-width-vertical-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...nput-states-using-components--full-width-vertical-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ms/input-states-using-components--vertica-full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...s/input-states-using-components--vertica-full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
...s/input-states-using-components--vertical-full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
.../input-states-using-components--vertical-full-width-error-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+95 KB
...snapshots/firefox/forms/input-column-widths--compact-error-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+94.9 KB
...napshots/firefox/forms/input-column-widths--compact-error-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+74.7 KB
...snapshots/firefox/forms/input-column-widths--compact-input-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+74.5 KB
...napshots/firefox/forms/input-column-widths--compact-input-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+95.5 KB
...apshots/firefox/forms/input-column-widths--compact-success-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+95.7 KB
...pshots/firefox/forms/input-column-widths--compact-success-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+83 KB
tests/snapshots/firefox/forms/input-column-widths--disabled-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+84 KB
tests/snapshots/firefox/forms/input-column-widths--disabled-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+111 KB
tests/snapshots/firefox/forms/input-column-widths--error-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+111 KB
tests/snapshots/firefox/forms/input-column-widths--error-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+85 KB
tests/snapshots/firefox/forms/input-column-widths--input-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+84.6 KB
tests/snapshots/firefox/forms/input-column-widths--input-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+112 KB
tests/snapshots/firefox/forms/input-column-widths--success-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+112 KB
tests/snapshots/firefox/forms/input-column-widths--success-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+116 KB
...napshots/firefox/forms/input-column-widths--vertical-error-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+116 KB
...apshots/firefox/forms/input-column-widths--vertical-error-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+89.4 KB
...napshots/firefox/forms/input-column-widths--vertical-input-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+89.1 KB
...apshots/firefox/forms/input-column-widths--vertical-input-states-core-light.png
Oops, something went wrong.
Binary file added
BIN
+117 KB
...pshots/firefox/forms/input-column-widths--vertical-success-states-core-dark.png
Oops, something went wrong.
Binary file added
BIN
+117 KB
...shots/firefox/forms/input-column-widths--vertical-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+9 Bytes
(100%)
...x/forms/input-states-styles-only--compact-full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-25 Bytes
(100%)
.../forms/input-states-styles-only--compact-full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+17 Bytes
(100%)
...x/forms/input-states-styles-only--compact-full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-18 Bytes
(100%)
.../forms/input-states-styles-only--compact-full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...forms/input-states-styles-only--full-width-compact-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-21 Bytes
(100%)
...orms/input-states-styles-only--full-width-compact-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+75 Bytes
(100%)
...s/firefox/forms/input-states-styles-only--full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-60 Bytes
(100%)
.../firefox/forms/input-states-styles-only--full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+69 Bytes
(100%)
...s/firefox/forms/input-states-styles-only--full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-49 Bytes
(100%)
.../firefox/forms/input-states-styles-only--full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+68 Bytes
(100%)
...firefox/forms/input-states-styles-only--full-width-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-61 Bytes
(100%)
...irefox/forms/input-states-styles-only--full-width-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+9 Bytes
(100%)
...orms/input-states-styles-only--full-width-vertical-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-22 Bytes
(100%)
...rms/input-states-styles-only--full-width-vertical-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+9 Bytes
(100%)
...x/forms/input-states-styles-only--vertica-full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-26 Bytes
(100%)
.../forms/input-states-styles-only--vertica-full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
.../forms/input-states-styles-only--vertical-full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-25 Bytes
(100%)
...forms/input-states-styles-only--vertical-full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-35 Bytes
(100%)
...ms/input-states-using-components--compact-full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-25 Bytes
(100%)
...s/input-states-using-components--compact-full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+18 Bytes
(100%)
...ms/input-states-using-components--compact-full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+28 Bytes
(100%)
...s/input-states-using-components--compact-full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
.../input-states-using-components--full-width-compact-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-18 Bytes
(100%)
...input-states-using-components--full-width-compact-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-13 Bytes
(100%)
...efox/forms/input-states-using-components--full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-19 Bytes
(100%)
...fox/forms/input-states-using-components--full-width-error-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...efox/forms/input-states-using-components--full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-29 Bytes
(100%)
...fox/forms/input-states-using-components--full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(100%)
...ox/forms/input-states-using-components--full-width-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
-22 Bytes
(100%)
...x/forms/input-states-using-components--full-width-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...input-states-using-components--full-width-vertical-success-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...nput-states-using-components--full-width-vertical-success-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
...ms/input-states-using-components--vertica-full-width-input-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+14 Bytes
(100%)
...s/input-states-using-components--vertica-full-width-input-states-core-light.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...s/input-states-using-components--vertical-full-width-error-states-core-dark.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
.../input-states-using-components--vertical-full-width-error-states-core-light.png
Oops, something went wrong.