Skip to content

Commit

Permalink
Vue 3x - Update for titleId and maskId prop along & prettier config (#…
Browse files Browse the repository at this point in the history
…455)

* add prettier config 

* prettier fixups

* add tests for family (#458)

* add title id and mask id with test
  • Loading branch information
jasonlundien committed Nov 1, 2023
1 parent 15117f6 commit 90cad31
Show file tree
Hide file tree
Showing 9 changed files with 11,124 additions and 6,146 deletions.
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.keep
node_modules
npm-packages
12 changes: 12 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"bracketSameLine": false,
"htmlWhitespaceSensitivity": "css",
"printWidth": 160,
"quoteProps": "consistent",
"semi": false,
"singleAttributePerLine": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
}
4 changes: 3 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
import { IconDefinition } from '@fortawesome/fontawesome-svg-core'
import { DefineComponent } from 'vue'

interface FontAwesomeIconProps {
Expand All @@ -7,6 +7,7 @@ interface FontAwesomeIconProps {
flip?: 'horizontal' | 'vertical' | 'both'
icon: object | Array<string> | string | IconDefinition
mask?: object | Array<string> | string
maskId?: object | Array<string> | string
listItem?: boolean
pull?: 'right' | 'left'
pulse?: boolean
Expand All @@ -17,6 +18,7 @@ interface FontAwesomeIconProps {
transform?: object | string
symbol?: boolean | string
title?: string
titleId?: string
inverse?: boolean
bounce?: boolean
shake?: boolean
Expand Down

0 comments on commit 90cad31

Please sign in to comment.