-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Changelog ## Minor - ✨ Browser autofill behavior (#457) - ✨ validate only non-empty input value (#452) - ✨ Gitmoji CLI hook (#448) - ✨ enable html and obj on radio button (#441) ## Patch - 💄 radio item gap to 16px (#454) - 💄 disabled state on loader button (#442) - 🔧 Add Lars to CODEOWNERS (#455) - ⬆️🔒 Bump websocket-extensions from 0.1.3 to 0.1.4 (#451) - 📝 Use homeday-blocks/ instead of homeday/ (#447) - [B] Remove blurred transition of image slide on Gallery (#435)
- Loading branch information
Showing
16 changed files
with
2,236 additions
and
689 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1 @@ | ||
* @viniciuskneves @SinisaG @drapisarda @ilyasmez @aym3nb @volcanioo @leandroinacio @metal-gogo | ||
* @viniciuskneves @SinisaG @drapisarda @ilyasmez @aym3nb @volcanioo @leandroinacio @metal-gogo @LarsFe |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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 |
---|---|---|
|
@@ -369,6 +369,10 @@ export default { | |
.radio { | ||
margin-left: 0; | ||
&:not(:first-child) { | ||
margin-top: $stack-m; | ||
} | ||
} | ||
} | ||
|
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
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
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,4 @@ | ||
**⚠️ The disabled option still triggers a "click" event.** | ||
|
||
Please note that the disabled prop will change the state and block clicks to trigger the animation, but still emits a click event.<br> | ||
This is working as designed, as some forms want to trigger long running processes for validations. |
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
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
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
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
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
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 |
---|---|---|
|
@@ -105,11 +105,11 @@ describe('HdInput', () => { | |
it('validates email', async () => { | ||
const VALID_EMAIL = '[email protected]'; | ||
const INVALID_EMAIL = 'unvalid@email@com'; | ||
const wrapper = emailWrapperBuilder({ | ||
props: { | ||
value: INVALID_EMAIL, | ||
}, | ||
}); | ||
const wrapper = emailWrapperBuilder(); | ||
|
||
expect(wrapper.vm.validate()).toBe(true); | ||
|
||
wrapper.setProps({ value: INVALID_EMAIL }); | ||
|
||
expect(wrapper.vm.validate()).toBe(false); | ||
|
||
|
@@ -143,11 +143,11 @@ describe('HdInput', () => { | |
it('validates date', async () => { | ||
const VALID_DATE = '1990-01-01'; | ||
const INVALID_DATE = '01-01-1990'; | ||
const wrapper = dateWrapperBuilder({ | ||
props: { | ||
value: INVALID_DATE, | ||
}, | ||
}); | ||
const wrapper = dateWrapperBuilder(); | ||
|
||
expect(wrapper.vm.validate()).toBe(true); | ||
|
||
wrapper.setProps({ value: INVALID_DATE }); | ||
|
||
expect(wrapper.vm.validate()).toBe(false); | ||
|
||
|