Skip to content

Commit

Permalink
[email protected] - Swapped CaretIcon with CaretDownFilledIcon (#1906
Browse files Browse the repository at this point in the history
)

* Swapped CaretIcon with Fixed up CaretDownFilledIcon via @justeattakeaway/pie-icons-vue

* Update CHANGELOG.md

* Update FormDropdown.vue

* Update FormDropdown.vue

* Update FormDropdown.vue

Co-authored-by: billy.oliver <[email protected]>
  • Loading branch information
oliversweb and billy.oliver authored Jun 7, 2022
1 parent 9c33d91 commit 9514c3e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
9 changes: 9 additions & 0 deletions packages/components/atoms/f-form-field/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


v4.12.0
------------------------------
*Jun 7, 2022*

### Changed
- Swapped CaretIcon with CaretDownFilledIcon via @justeattakeaway/pie-icons-vue


v4.11.0
------------------------------
*May 30, 2022*
Expand Down
2 changes: 1 addition & 1 deletion packages/components/atoms/f-form-field/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@justeat/f-form-field",
"description": "Fozzie Form Field - Fozzie Form Field Component",
"version": "4.11.0",
"version": "4.12.0",
"main": "dist/f-form-field.umd.min.js",
"maxBundleSize": "20kB",
"files": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@
:value="option.value">{{ option.text }}</option>
</select>

<caret-icon
<caret-down-filled-icon
:class="$style['c-formDropdown-icon']"
:data-test-id="testId.icon" />
</div>
</template>

<script>
import { CaretIcon } from '@justeat/f-vue-icons';
import { CaretDownFilledIcon } from '@justeattakeaway/pie-icons-vue';
export default {
name: 'FormDropdown',
components: {
CaretIcon
CaretDownFilledIcon
},
inheritAttrs: false,
Expand Down Expand Up @@ -99,7 +99,6 @@ $form-dropdown-iconIndent--large : 25px;
width: spacing(c);
position: absolute;
right: spacing(e);
transform: rotate(180deg);
pointer-events: none;
path {
Expand Down

0 comments on commit 9514c3e

Please sign in to comment.