`', async () => {
+ const wrapper = mount(BSkeletonTable, {
+ propsData: {
+ showFooter: true
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.tagName).toBe('TABLE')
+ expect(wrapper.find('tfoot').exists()).toBe(true)
+
+ wrapper.destroy()
+ })
+
+ it('setting `rows` prop changes amount of `tr` rendered in `tbody`', async () => {
+ const wrapper = mount(BSkeletonTable, {
+ propsData: {
+ rows: 7
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.tagName).toBe('TABLE')
+ expect(wrapper.findAll('tbody > tr').length).toBe(7)
+
+ wrapper.destroy()
+ })
+
+ it('setting `columns` prop changes amount of `th` rendered in `thead`', async () => {
+ const wrapper = mount(BSkeletonTable, {
+ propsData: {
+ columns: 6
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.tagName).toBe('TABLE')
+ expect(wrapper.findAll('thead > tr > th').length).toBe(6)
+
+ wrapper.destroy()
+ })
+
+ it('`table-props` are properly passed to the table', async () => {
+ const wrapper = mount(BSkeletonTable, {
+ propsData: {
+ tableProps: {
+ bordered: true,
+ striped: true
+ }
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.tagName).toBe('TABLE')
+ expect(wrapper.classes()).toContain('table-bordered')
+ expect(wrapper.classes()).toContain('table-striped')
+
+ wrapper.destroy()
+ })
+
+ it('`animation` prop changes animation used in cells', async () => {
+ const wrapper = mount(BSkeletonTable, {
+ propsData: {
+ animation: 'fade'
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.tagName).toBe('TABLE')
+ expect(wrapper.find('tbody > tr > td > div').classes()).toContain('b-skeleton-animate-fade')
+
+ wrapper.destroy()
+ })
+})
diff --git a/src/components/skeleton/skeleton-wrapper.js b/src/components/skeleton/skeleton-wrapper.js
new file mode 100644
index 00000000000..a036e55ed93
--- /dev/null
+++ b/src/components/skeleton/skeleton-wrapper.js
@@ -0,0 +1,40 @@
+import { mergeData } from 'vue-functional-data-merge'
+import Vue from '../../utils/vue'
+import { normalizeSlot } from '../../utils/normalize-slot'
+
+const NAME = 'BSkeletonWrapper'
+
+// @vue/component
+export const BSkeletonWrapper = /*#__PURE__*/ Vue.extend({
+ name: NAME,
+ functional: true,
+ props: {
+ loading: {
+ type: Boolean,
+ default: false
+ }
+ },
+ render(h, { data, props, slots, scopedSlots }) {
+ const $slots = slots()
+ const $scopedSlots = scopedSlots || {}
+ const slotScope = {}
+
+ if (props.loading) {
+ return h(
+ 'div',
+ mergeData(data, {
+ attrs: {
+ role: 'alert',
+ 'aria-live': 'polite',
+ 'aria-busy': true
+ },
+ staticClass: 'b-skeleton-wrapper',
+ key: 'loading'
+ }),
+ [normalizeSlot('loading', slotScope, $scopedSlots, $slots) || h()]
+ )
+ }
+
+ return normalizeSlot('default', slotScope, $scopedSlots, $slots) || h()
+ }
+})
diff --git a/src/components/skeleton/skeleton-wrapper.spec.js b/src/components/skeleton/skeleton-wrapper.spec.js
new file mode 100644
index 00000000000..889b39101c0
--- /dev/null
+++ b/src/components/skeleton/skeleton-wrapper.spec.js
@@ -0,0 +1,49 @@
+import { mount } from '@vue/test-utils'
+import { BSkeletonWrapper } from './skeleton-wrapper'
+
+describe('skeleton-wrapper', () => {
+ it('`loading` slot renders when `loading` prop is true', async () => {
+ const wrapper = mount(BSkeletonWrapper, {
+ propsData: {
+ loading: true
+ },
+ slots: {
+ loading: 'Loading state '
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.tagName).toBe('DIV')
+ expect(wrapper.classes()).toContain('b-skeleton-wrapper')
+
+ expect(wrapper.find('span').exists()).toBe(true)
+ expect(wrapper.find('span').text()).toBe('Loading state')
+ wrapper.destroy()
+ })
+
+ it('`default` slot renders when `loading` prop is false', async () => {
+ const wrapper = mount(BSkeletonWrapper, {
+ propsData: {
+ loading: false
+ },
+ slots: {
+ default: 'Action '
+ }
+ })
+
+ expect(wrapper.element.tagName).toBe('BUTTON')
+ expect(wrapper.text()).toBe('Action')
+ })
+
+ it('root element has correct aria attributes in loading state', async () => {
+ const wrapper = mount(BSkeletonWrapper, {
+ propsData: {
+ loading: true
+ }
+ })
+
+ expect(wrapper.attributes('aria-busy')).toBe('true')
+ expect(wrapper.attributes('aria-live')).toBe('polite')
+ expect(wrapper.attributes('role')).toBe('alert')
+ })
+})
diff --git a/src/components/skeleton/skeleton.js b/src/components/skeleton/skeleton.js
new file mode 100644
index 00000000000..df57cf8706c
--- /dev/null
+++ b/src/components/skeleton/skeleton.js
@@ -0,0 +1,52 @@
+import { mergeData } from 'vue-functional-data-merge'
+import Vue from '../../utils/vue'
+import { getComponentConfig } from '../../utils/config'
+
+const NAME = 'BSkeleton'
+
+// @vue/component
+export const BSkeleton = /*#__PURE__*/ Vue.extend({
+ name: NAME,
+ functional: true,
+ props: {
+ animation: {
+ type: String,
+ default: () => getComponentConfig(NAME, 'animation')
+ },
+ type: {
+ type: String,
+ default: 'text'
+ },
+ width: {
+ type: String
+ },
+ height: {
+ type: String
+ },
+ size: {
+ type: String
+ },
+ variant: {
+ type: String
+ }
+ },
+ render(h, { data, props }) {
+ const { size, animation, variant } = props
+
+ return h(
+ 'div',
+ mergeData(data, {
+ staticClass: 'b-skeleton',
+ style: {
+ width: size || props.width,
+ height: size || props.height
+ },
+ class: {
+ [`b-skeleton-${props.type}`]: true,
+ [`b-skeleton-animate-${animation}`]: animation,
+ [`bg-${variant}`]: variant
+ }
+ })
+ )
+ }
+})
diff --git a/src/components/skeleton/skeleton.spec.js b/src/components/skeleton/skeleton.spec.js
new file mode 100644
index 00000000000..b47b1413609
--- /dev/null
+++ b/src/components/skeleton/skeleton.spec.js
@@ -0,0 +1,126 @@
+import { mount } from '@vue/test-utils'
+import { BSkeleton } from './skeleton'
+
+describe('skeleton', () => {
+ it('default has root element of div, and default classes', async () => {
+ const wrapper = mount(BSkeleton)
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.tagName).toBe('DIV')
+
+ expect(wrapper.classes().length).toBe(3)
+ expect(wrapper.classes()).toContain('b-skeleton')
+ expect(wrapper.classes()).toContain('b-skeleton-text')
+ expect(wrapper.classes()).toContain('b-skeleton-animate-wave')
+
+ wrapper.destroy()
+ })
+
+ it('has class `b-skeleton-button` when `type="button"` is set', async () => {
+ const wrapper = mount(BSkeleton, {
+ propsData: {
+ type: 'button'
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.classes()).toContain('b-skeleton-button')
+
+ wrapper.destroy()
+ })
+
+ it('has class `b-skeleton-animate-fade` when `animation="fade"` is set', async () => {
+ const wrapper = mount(BSkeleton, {
+ propsData: {
+ animation: 'fade'
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.classes()).toContain('b-skeleton-animate-fade')
+
+ wrapper.destroy()
+ })
+
+ it('has no animate class when `animation` prop has falsy value', async () => {
+ const wrapper = mount(BSkeleton, {
+ propsData: {
+ animation: null
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.classes()).not.toContain('b-skeleton-animate-wave')
+
+ wrapper.destroy()
+ })
+
+ it('has `width` style set when `width` prop is used', async () => {
+ const wrapper = mount(BSkeleton, {
+ propsData: {
+ width: '50px'
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.style.width).toBe('50px')
+
+ wrapper.destroy()
+ })
+
+ it('has `height` style set when `height` prop is used', async () => {
+ const wrapper = mount(BSkeleton, {
+ propsData: {
+ height: '50px'
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.style.height).toBe('50px')
+
+ wrapper.destroy()
+ })
+
+ it('has `width` and `height` styles set when `size` prop is used', async () => {
+ const wrapper = mount(BSkeleton, {
+ propsData: {
+ size: '50px'
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.style.height).toBe('50px')
+ expect(wrapper.element.style.width).toBe('50px')
+
+ wrapper.destroy()
+ })
+
+ it('`size` prop overrules the `width` and `height` props', async () => {
+ const wrapper = mount(BSkeleton, {
+ propsData: {
+ height: '25px',
+ width: '40px',
+ size: '50px'
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.element.style.height).toBe('50px')
+ expect(wrapper.element.style.width).toBe('50px')
+
+ wrapper.destroy()
+ })
+
+ it('has `bg-[variant]` class applied when `variant` prop is used', async () => {
+ const wrapper = mount(BSkeleton, {
+ propsData: {
+ variant: 'primary'
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+ expect(wrapper.classes()).toContain('bg-primary')
+
+ wrapper.destroy()
+ })
+})
diff --git a/src/components/spinner/package.json b/src/components/spinner/package.json
index 2debece3acf..8b4c16e4ad6 100644
--- a/src/components/spinner/package.json
+++ b/src/components/spinner/package.json
@@ -11,7 +11,6 @@
"props": [
{
"prop": "variant",
- "settings": true,
"description": "Applies one of the Bootstrap theme color variants to the component"
},
{
diff --git a/src/components/table/README.md b/src/components/table/README.md
index 955bc4c1d04..ef1cd9621fd 100644
--- a/src/components/table/README.md
+++ b/src/components/table/README.md
@@ -182,7 +182,7 @@ Fields can be a simple array, for defining the order of the columns, and which c
### Fields as an array of objects
Fields can be a an array of objects, providing additional control over the fields (such as sorting,
-formatting, etc). Only columns (keys) that appear in the fields array will be shown:
+formatting, etc.). Only columns (keys) that appear in the fields array will be shown:
**Example: Using array of objects fields definition**
@@ -242,6 +242,7 @@ The following field properties are recognized:
| `class` | String or Array | Class name (or array of class names) to add to `` **and** ` ` in the column. |
| `formatter` | String or Function | A formatter callback function or name of a method in your component, can be used instead of (or in conjunction with) scoped field slots. The formatter will be called with the syntax `formatter(value, key, item)`. Refer to [Custom Data Rendering](#custom-data-rendering) for more details. |
| `sortable` | Boolean | Enable sorting on this column. Refer to the [Sorting](#sorting) Section for more details. |
+| `sortKey` | String | v2.17.0+ Set the value of `sortBy` for the column in the emitted context when `no-local-sorting` is `true`. |
| `sortDirection` | String | Set the initial sort direction on this column when it becomes sorted. Refer to the [Change initial sort direction](#change-initial-sort-direction) Section for more details. |
| `sortByFormatted` | Boolean or Function | Sort the column by the result of the field's `formatter` callback function when set to `true`. Default is `false`. Boolean has no effect if the field does not have a `formatter`. Optionally accepts a formatter function _reference_ to format the value for sorting purposes only. Refer to the [Sorting](#sorting) Section for more details. |
| `filterByFormatted` | Boolean or Function | Filter the column by the result of the field's `formatter` callback function when set to `true`. Default is `false`. Boolean has no effect if the field does not have a `formatter`. Optionally accepts a formatter function _reference_ to format the value for filtering purposes only. Refer to the [Filtering](#filtering) section for more details. |
@@ -1305,7 +1306,7 @@ available horizontal space.
- Bootstrap v4 uses the CSS style `border-collapse: collapsed` on table elements. This prevents the
borders on the sticky header from "sticking" to the header, and hence the borders will scroll when
the body scrolls. To get around this issue, set the prop `no-border-collapse` on the table (note
- that this may cause double width borders when using features such as `bordered`, etc).
+ that this may cause double width borders when using features such as `bordered`, etc.).
- The sticky header feature uses CSS style `position: sticky` to position the headings. Internet
Explorer does not support `position: sticky`, hence for IE 11 the table headings will scroll with
the table body.
@@ -1400,7 +1401,7 @@ set.
- Bootstrap v4 uses the CSS style `border-collapse: collapsed` on table elements. This prevents any
borders on the sticky columns from "sticking" to the column, and hence those borders will scroll
when the body scrolls. To get around this issue, set the prop `no-border-collapse` on the table
- (note that this may cause double width borders when using features such as `bordered`, etc).
+ (note that this may cause double width borders when using features such as `bordered`, etc.).
- BootstrapVue's custom CSS is required in order to support sticky columns.
- The sticky column feature uses CSS style `position: sticky` to position the column cells. Internet
Explorer does not support `position: sticky`, hence for IE 11 the sticky column will scroll with
@@ -2048,7 +2049,7 @@ function toString(value) {
### Disable local sorting
If you want to handle sorting entirely in your app, you can disable the local sorting in ``
-by setting the prop `no-local-sorting` to true, while still maintaining the sortable header
+by setting the prop `no-local-sorting` to `true`, while still maintaining the sortable header
functionality (via `sort-changed` or `context-changed` events as well as syncable props).
You can use the syncable props `sort-by.sync` and `sort-desc.sync` to detect changes in sorting
@@ -2059,7 +2060,7 @@ with a single argument containing the context object of ``. See the
[Detection of sorting change](#detection-of-sorting-change) section below for details about the
sort-changed event and the context object.
-When `no-local-sorting` is true, the `sort-compare` prop has no effect.
+When `no-local-sorting` is `true`, the `sort-compare` prop has no effect.
### Change initial sort direction
@@ -2091,7 +2092,7 @@ done) and the filter searches that stringified data (excluding any of the specia
begin with an underscore `'_'`). The stringification also, by default, includes any data not shown
in the presented columns.
-With the default built-in filter function, The `filter` prop value can either be a string or a
+With the default built-in filter function, the `filter` prop value can either be a string or a
`RegExp` object (regular expressions should _not_ have the `/g` global flag set).
If the stringified row contains the provided string value or matches the RegExp expression then it
@@ -2513,7 +2514,7 @@ sticky. See below for more information on using [sticky columns](#simple-tables-
Since `b-table-simple` is just a wrapper component, of which you will need to render content inside,
it does not provide any of the advanced features of `` (i.e. row events, head events,
-sorting, pagination, filtering, foot-clone, items, fields, etc).
+sorting, pagination, filtering, foot-clone, items, fields, etc.).
```html
@@ -2781,7 +2782,7 @@ markup. Components `
` and `` use these helper components
In the [Simple tables](#simple-tables) example, we are using the helper components ``,
``, ``, ``, `` and ``. While you can use regular table child
-elements (i.e. ``, ``, ``, etc) within ``, and the named slots
+elements (i.e. ``, ``, ``, etc.) within ``, and the named slots
`top-row`, `bottom-row`, and `thead-top`, it is recommended to use these BootstrapVue table ``
helper components. Note that there are no helper components for ``, ` ` or
` `, so you may these three HTML5 elements directly in ``.
diff --git a/src/components/table/helpers/mixin-bottom-row.js b/src/components/table/helpers/mixin-bottom-row.js
index d312f9bb280..2c4905b29c7 100644
--- a/src/components/table/helpers/mixin-bottom-row.js
+++ b/src/components/table/helpers/mixin-bottom-row.js
@@ -30,7 +30,7 @@ export default {
? /* istanbul ignore next */ this.tbodyTrAttr(null, 'row-bottom')
: this.tbodyTrAttr
},
- this.normalizeSlot(slotName, { columns: fields.length, fields: fields })
+ this.normalizeSlot(slotName, { columns: fields.length, fields })
)
}
}
diff --git a/src/components/table/helpers/mixin-busy.js b/src/components/table/helpers/mixin-busy.js
index bab604b9a68..ef8f3b2243e 100644
--- a/src/components/table/helpers/mixin-busy.js
+++ b/src/components/table/helpers/mixin-busy.js
@@ -1,3 +1,4 @@
+import { stopEvent } from '../../../utils/events'
import { isFunction } from '../../../utils/inspect'
import { BTr } from '../tr'
import { BTd } from '../td'
@@ -33,8 +34,7 @@ export default {
stopIfBusy(evt) {
if (this.computedBusy) {
// If table is busy (via provider) then don't propagate
- evt.preventDefault()
- evt.stopPropagation()
+ stopEvent(evt)
return true
}
return false
diff --git a/src/components/table/helpers/mixin-colgroup.js b/src/components/table/helpers/mixin-colgroup.js
index 2f6478ab740..5a0760604a1 100644
--- a/src/components/table/helpers/mixin-colgroup.js
+++ b/src/components/table/helpers/mixin-colgroup.js
@@ -8,7 +8,7 @@ export default {
if (this.hasNormalizedSlot('table-colgroup')) {
$colgroup = h('colgroup', { key: 'colgroup' }, [
- this.normalizeSlot('table-colgroup', { columns: fields.length, fields: fields })
+ this.normalizeSlot('table-colgroup', { columns: fields.length, fields })
])
}
diff --git a/src/components/table/helpers/mixin-sorting.js b/src/components/table/helpers/mixin-sorting.js
index 87ea3f056f9..8267d627a2d 100644
--- a/src/components/table/helpers/mixin-sorting.js
+++ b/src/components/table/helpers/mixin-sorting.js
@@ -209,12 +209,13 @@ export default {
}
}
if (field.sortable) {
- if (key === this.localSortBy) {
+ const sortKey = !this.localSorting && field.sortKey ? field.sortKey : key
+ if (this.localSortBy === sortKey) {
// Change sorting direction on current column
this.localSortDesc = !this.localSortDesc
} else {
// Start sorting this column ascending
- this.localSortBy = key
+ this.localSortBy = sortKey
// this.localSortDesc = false
toggleLocalSortDesc()
}
diff --git a/src/components/table/helpers/mixin-tbody-row.js b/src/components/table/helpers/mixin-tbody-row.js
index a4b0d5fb134..04184fcaf28 100644
--- a/src/components/table/helpers/mixin-tbody-row.js
+++ b/src/components/table/helpers/mixin-tbody-row.js
@@ -144,9 +144,9 @@ export default {
}
}
const slotScope = {
- item: item,
+ item,
index: rowIndex,
- field: field,
+ field,
unformatted: get(item, key, ''),
value: formatted,
toggleDetails: this.toggleDetailsFactory(hasDetailsSlot, item),
@@ -262,9 +262,9 @@ export default {
// Row Details slot
if (rowShowDetails) {
const detailsScope = {
- item: item,
+ item,
index: rowIndex,
- fields: fields,
+ fields,
toggleDetails: this.toggleDetailsFactory(hasDetailsSlot, item)
}
// If table supports selectable mode, then add in the following scope
diff --git a/src/components/table/helpers/mixin-tbody.js b/src/components/table/helpers/mixin-tbody.js
index 2a5d4c38647..d2b6c2ec877 100644
--- a/src/components/table/helpers/mixin-tbody.js
+++ b/src/components/table/helpers/mixin-tbody.js
@@ -1,6 +1,7 @@
import KeyCodes from '../../../utils/key-codes'
import { arrayIncludes, from as arrayFrom } from '../../../utils/array'
import { attemptFocus, closest, isActiveElement, isElement } from '../../../utils/dom'
+import { stopEvent } from '../../../utils/events'
import { props as tbodyProps, BTbody } from '../tbody'
import filterEvent from './filter-event'
import textSelectionActive from './text-selection-active'
@@ -74,8 +75,7 @@ export default {
const keyCode = evt.keyCode
if (arrayIncludes([KeyCodes.ENTER, KeyCodes.SPACE], keyCode)) {
// Emulated click for keyboard users, transfer to click handler
- evt.stopPropagation()
- evt.preventDefault()
+ stopEvent(evt)
this.onTBodyRowClicked(evt)
} else if (
arrayIncludes([KeyCodes.UP, KeyCodes.DOWN, KeyCodes.HOME, KeyCodes.END], keyCode)
@@ -83,8 +83,7 @@ export default {
// Keyboard navigation
const rowIndex = this.getTbodyTrIndex(target)
if (rowIndex > -1) {
- evt.stopPropagation()
- evt.preventDefault()
+ stopEvent(evt)
const trs = this.getTbodyTrs()
const shift = evt.shiftKey
if (keyCode === KeyCodes.HOME || (shift && keyCode === KeyCodes.UP)) {
diff --git a/src/components/table/helpers/mixin-thead.js b/src/components/table/helpers/mixin-thead.js
index 527f3f97271..628e01d347a 100644
--- a/src/components/table/helpers/mixin-thead.js
+++ b/src/components/table/helpers/mixin-thead.js
@@ -3,6 +3,7 @@ import KeyCodes from '../../../utils/key-codes'
import noop from '../../../utils/noop'
import startCase from '../../../utils/startcase'
import { getComponentConfig } from '../../../utils/config'
+import { stopEvent } from '../../../utils/events'
import { htmlOrText } from '../../../utils/html'
import { isUndefinedOrNull } from '../../../utils/inspect'
import filterEvent from './filter-event'
@@ -49,8 +50,7 @@ export default {
/* istanbul ignore next: JSDOM doesn't support getSelection() */
return
}
- evt.stopPropagation()
- evt.preventDefault()
+ stopEvent(evt)
this.$emit('head-clicked', field.key, field, evt, isFoot)
},
renderThead(isFoot = false) {
diff --git a/src/components/table/helpers/mixin-top-row.js b/src/components/table/helpers/mixin-top-row.js
index b1e36a31931..5e5ce22f192 100644
--- a/src/components/table/helpers/mixin-top-row.js
+++ b/src/components/table/helpers/mixin-top-row.js
@@ -26,7 +26,7 @@ export default {
],
attrs: isFunction(this.tbodyTrAttr) ? this.tbodyTrAttr(null, 'row-top') : this.tbodyTrAttr
},
- [this.normalizeSlot(slotName, { columns: fields.length, fields: fields })]
+ [this.normalizeSlot(slotName, { columns: fields.length, fields })]
)
}
}
diff --git a/src/components/table/helpers/normalize-fields.js b/src/components/table/helpers/normalize-fields.js
index ae95f5f23ab..e4323cf4fb9 100644
--- a/src/components/table/helpers/normalize-fields.js
+++ b/src/components/table/helpers/normalize-fields.js
@@ -9,17 +9,17 @@ const processField = (key, value) => {
let field = null
if (isString(value)) {
// Label shortcut
- field = { key: key, label: value }
+ field = { key, label: value }
} else if (isFunction(value)) {
// Formatter shortcut
- field = { key: key, formatter: value }
+ field = { key, formatter: value }
} else if (isObject(value)) {
field = clone(value)
field.key = field.key || key
} else if (value !== false) {
// Fallback to just key
/* istanbul ignore next */
- field = { key: key }
+ field = { key }
}
return field
}
diff --git a/src/components/table/helpers/normalize-fields.spec.js b/src/components/table/helpers/normalize-fields.spec.js
index d753c956cf3..4afe16ccac3 100644
--- a/src/components/table/helpers/normalize-fields.spec.js
+++ b/src/components/table/helpers/normalize-fields.spec.js
@@ -64,7 +64,7 @@ describe('table/helpers/normalize-fields', () => {
const formatter = value => value
const arr1 = [{ foo: formatter }]
- expect(normalizeFields(arr1, [])).toEqual([{ key: 'foo', label: 'Foo', formatter: formatter }])
+ expect(normalizeFields(arr1, [])).toEqual([{ key: 'foo', label: 'Foo', formatter }])
})
it('handles when "key: false" shortcut', async () => {
diff --git a/src/components/table/helpers/sanitize-row.js b/src/components/table/helpers/sanitize-row.js
index 7f7ba6f3a5a..2509c2765ac 100644
--- a/src/components/table/helpers/sanitize-row.js
+++ b/src/components/table/helpers/sanitize-row.js
@@ -1,32 +1,41 @@
-import { keys } from '../../../utils/object'
-import { arrayIncludes } from '../../../utils/array'
+import { arrayIncludes, isArray } from '../../../utils/array'
import { isFunction } from '../../../utils/inspect'
+import { clone, keys, pick } from '../../../utils/object'
import { IGNORED_FIELD_KEYS } from './constants'
// Return a copy of a row after all reserved fields have been filtered out
-const sanitizeRow = (row, ignoreFields, includeFields, fieldsObj = {}) =>
- keys(row).reduce((obj, key) => {
- // Ignore special fields that start with `_`
- // Ignore fields in the `ignoreFields` array
- // Include only fields in the `includeFields` array
- if (
- !IGNORED_FIELD_KEYS[key] &&
- !(ignoreFields && ignoreFields.length > 0 && arrayIncludes(ignoreFields, key)) &&
- !(includeFields && includeFields.length > 0 && !arrayIncludes(includeFields, key))
- ) {
- const f = fieldsObj[key] || {}
- const val = row[key]
- // `f.filterByFormatted` will either be a function or boolean
- // `f.formater` will have already been noramlized into a function ref
- const filterByFormatted = f.filterByFormatted
- const formatter = isFunction(filterByFormatted)
- ? /* istanbul ignore next */ filterByFormatted
- : filterByFormatted
- ? /* istanbul ignore next */ f.formatter
- : null
- obj[key] = isFunction(formatter) ? formatter(val, key, row) : val
+const sanitizeRow = (row, ignoreFields, includeFields, fieldsObj = {}) => {
+ // We first need to format the row based on the field configurations
+ // This ensures that we add formatted values for keys that may not
+ // exist in the row itself
+ const formattedRow = keys(fieldsObj).reduce((result, key) => {
+ const field = fieldsObj[key]
+ const { filterByFormatted } = field
+ const formatter = isFunction(filterByFormatted)
+ ? /* istanbul ignore next */ filterByFormatted
+ : filterByFormatted
+ ? /* istanbul ignore next */ field.formatter
+ : null
+
+ if (isFunction(formatter)) {
+ result[key] = formatter(row[key], key, row)
}
- return obj
- }, {})
+
+ return result
+ }, clone(row))
+
+ // Determine the allowed keys:
+ // - Ignore special fields that start with `_`
+ // - Ignore fields in the `ignoreFields` array
+ // - Include only fields in the `includeFields` array
+ const allowedKeys = keys(formattedRow).filter(
+ key =>
+ !IGNORED_FIELD_KEYS[key] &&
+ !(isArray(ignoreFields) && arrayIncludes(ignoreFields, key)) &&
+ !(isArray(includeFields) && !arrayIncludes(includeFields, key))
+ )
+
+ return pick(formattedRow, allowedKeys)
+}
export default sanitizeRow
diff --git a/src/components/table/index.d.ts b/src/components/table/index.d.ts
index 780d6718d27..8b903637e41 100644
--- a/src/components/table/index.d.ts
+++ b/src/components/table/index.d.ts
@@ -24,6 +24,7 @@ export declare class BTable extends BvComponent {
fields?: BvTableFieldArray
primaryKey?: string
sortBy?: string | null
+ sortKey?: string
sortDesc?: boolean
sortDirection?: BvTableSortDirection
sortCompare?: BvTableSortCompareCallback
diff --git a/src/components/table/package.json b/src/components/table/package.json
index 8febde65dc9..75b43202c5d 100644
--- a/src/components/table/package.json
+++ b/src/components/table/package.json
@@ -255,7 +255,6 @@
},
{
"prop": "selectedVariant",
- "settings": true,
"description": "Bootstrap color theme variant to set selected rows to. Use any of the standard Bootstrap theme color variants, or the special table row variant 'active' (default). Set to an empty string to not use a variant"
},
{
@@ -1063,7 +1062,6 @@
},
{
"prop": "headVariant",
- "settings": true,
"description": "Header variant: 'light' or 'dark', or unset. May take precedence over head-row-variant"
},
{
@@ -1073,7 +1071,6 @@
},
{
"prop": "footVariant",
- "settings": true,
"description": "Footer variant: 'light' or 'dark', or unset. May take precedence over foot-row-variant"
},
{
diff --git a/src/components/table/table-filtering.spec.js b/src/components/table/table-filtering.spec.js
index aefc1fa52fc..b125fb9cb94 100644
--- a/src/components/table/table-filtering.spec.js
+++ b/src/components/table/table-filtering.spec.js
@@ -207,6 +207,34 @@ describe('table > filtering', () => {
wrapper.destroy()
})
+ it('should filter for formatted values for keys which are not present in row', async () => {
+ const wrapper = mount(BTable, {
+ propsData: {
+ items: [{ a: 'A', b: 'B' }],
+ fields: [
+ { key: 'a' },
+ {
+ key: 'b',
+ formatter: () => 'Foo',
+ filterByFormatted: true
+ },
+ {
+ key: 'c',
+ formatter: () => 'Bar',
+ filterByFormatted: true
+ }
+ ],
+ filter: 'Bar'
+ }
+ })
+ expect(wrapper).toBeDefined()
+ await waitNT(wrapper.vm)
+
+ expect(wrapper.findAll('tbody > tr').length).toBe(1)
+
+ wrapper.destroy()
+ })
+
it('should show empty filtered message when no matches and show-empty=true', async () => {
const wrapper = mount(BTable, {
propsData: {
diff --git a/src/components/table/table-sorting.spec.js b/src/components/table/table-sorting.spec.js
index 2b86ab38501..4f85e1c3bed 100644
--- a/src/components/table/table-sorting.spec.js
+++ b/src/components/table/table-sorting.spec.js
@@ -41,6 +41,25 @@ describe('table > sorting', () => {
wrapper.destroy()
})
+ it('should emit `field.sortKey` if specified and no local sorting', async () => {
+ const wrapper = mount(BTable, {
+ propsData: {
+ fields: [...testFields, { key: 'd', label: 'D', sortable: true, sortKey: 'non-local' }],
+ items: testItems,
+ noLocalSorting: true
+ }
+ })
+
+ expect(wrapper).toBeDefined()
+
+ await wrapper
+ .findAll('thead > tr > th')
+ .at(3)
+ .trigger('keydown.enter')
+ expect(wrapper.emitted('sort-changed').length).toBe(1)
+ expect(wrapper.emitted('sort-changed')[0][0].sortBy).toEqual('non-local')
+ })
+
it('should sort column descending when sortBy set and sortDesc changed, with proper attributes', async () => {
const wrapper = mount(BTable, {
propsData: {
diff --git a/src/components/table/table-sticky-column.spec.js b/src/components/table/table-sticky-column.spec.js
index dac9be5cba3..e6843b6db91 100644
--- a/src/components/table/table-sticky-column.spec.js
+++ b/src/components/table/table-sticky-column.spec.js
@@ -16,8 +16,8 @@ describe('table > sticky columns', () => {
propsData: {
responsive: true,
footClone: true,
- items: items,
- fields: fields
+ items,
+ fields
}
})
@@ -141,8 +141,8 @@ describe('table > sticky columns', () => {
responsive: false,
stickyHeader: true,
footClone: true,
- items: items,
- fields: fields
+ items,
+ fields
}
})
@@ -267,8 +267,8 @@ describe('table > sticky columns', () => {
responsive: false,
stickyHeader: false,
footClone: true,
- items: items,
- fields: fields
+ items,
+ fields
}
})
diff --git a/src/components/table/td.js b/src/components/table/td.js
index 0fb91c764dd..8ff1106a0a7 100644
--- a/src/components/table/td.js
+++ b/src/components/table/td.js
@@ -171,10 +171,10 @@ export const BTd = /*#__PURE__*/ Vue.extend({
}
return {
- colspan: colspan,
- rowspan: rowspan,
- role: role,
- scope: scope,
+ colspan,
+ rowspan,
+ role,
+ scope,
// Allow users to override role/scope plus add other attributes
...this.bvAttrs,
// Add in the stacked cell label data-attribute if in
diff --git a/src/components/tabs/tab.js b/src/components/tabs/tab.js
index 1a68f6aae33..c524c22ad52 100644
--- a/src/components/tabs/tab.js
+++ b/src/components/tabs/tab.js
@@ -30,12 +30,12 @@ export const BTab = /*#__PURE__*/ Vue.extend({
default: ''
},
titleItemClass: {
- // Sniffed by tabs.js and added to nav 'li.nav-item'
+ // Sniffed by `` and added to nav `li.nav-item`
type: [String, Array, Object]
// default: null
},
titleLinkClass: {
- // Sniffed by tabs.js and added to nav 'a.nav-link'
+ // Sniffed by `` and added to nav `a.nav-link`
type: [String, Array, Object]
// default: null
},
@@ -83,19 +83,19 @@ export const BTab = /*#__PURE__*/ Vue.extend({
computedLazy() {
return this.bvTabs.lazy || this.lazy
},
+ // For parent sniffing of child
_isTab() {
- // For parent sniffing of child
return true
}
},
watch: {
- localActive(newVal) {
- // Make 'active' prop work with `.sync` modifier
- this.$emit('update:active', newVal)
+ localActive(newValue) {
+ // Make `active` prop work with `.sync` modifier
+ this.$emit('update:active', newValue)
},
- active(newVal, oldVal) {
- if (newVal !== oldVal) {
- if (newVal) {
+ active(newValue, oldValue) {
+ if (newValue !== oldValue) {
+ if (newValue) {
// If activated post mount
this.activate()
} else {
@@ -108,11 +108,12 @@ export const BTab = /*#__PURE__*/ Vue.extend({
}
}
},
- disabled(newVal, oldVal) {
- if (newVal !== oldVal) {
- if (newVal && this.localActive && this.bvTabs.firstTab) {
+ disabled(newValue, oldValue) {
+ if (newValue !== oldValue) {
+ const { firstTab } = this.bvTabs
+ if (newValue && this.localActive && firstTab) {
this.localActive = false
- this.bvTabs.firstTab()
+ firstTab()
}
}
}
@@ -126,8 +127,9 @@ export const BTab = /*#__PURE__*/ Vue.extend({
updated() {
// Force the tab button content to update (since slots are not reactive)
// Only done if we have a title slot, as the title prop is reactive
- if (this.hasNormalizedSlot('title') && this.bvTabs.updateButton) {
- this.bvTabs.updateButton(this)
+ const { updateButton } = this.bvTabs
+ if (updateButton && this.hasNormalizedSlot('title')) {
+ updateButton(this)
}
},
destroyed() {
@@ -137,33 +139,35 @@ export const BTab = /*#__PURE__*/ Vue.extend({
methods: {
// Private methods
registerTab() {
- // Inform `b-tabs` of our presence
- this.bvTabs.registerTab && this.bvTabs.registerTab(this)
+ // Inform `` of our presence
+ const { registerTab } = this.bvTabs
+ if (registerTab) {
+ registerTab(this)
+ }
},
unregisterTab() {
- // Inform `b-tabs` of our departure
- this.bvTabs.unregisterTab && this.bvTabs.unregisterTab(this)
+ // Inform `` of our departure
+ const { unregisterTab } = this.bvTabs
+ if (unregisterTab) {
+ unregisterTab(this)
+ }
},
// Public methods
activate() {
- if (this.bvTabs.activateTab && !this.disabled) {
- return this.bvTabs.activateTab(this)
- } else {
- // Not inside a component or tab is disabled
- return false
- }
+ // Not inside a `` component or tab is disabled
+ const { activateTab } = this.bvTabs
+ return activateTab && !this.disabled ? activateTab(this) : false
},
deactivate() {
- if (this.bvTabs.deactivateTab && this.localActive) {
- return this.bvTabs.deactivateTab(this)
- } else {
- // Not inside a component or not active to begin with
- return false
- }
+ // Not inside a `` component or not active to begin with
+ const { deactivateTab } = this.bvTabs
+ return deactivateTab && this.localActive ? deactivateTab(this) : false
}
},
render(h) {
- const content = h(
+ const { localActive } = this
+
+ const $content = h(
this.tag,
{
ref: 'panel',
@@ -173,20 +177,20 @@ export const BTab = /*#__PURE__*/ Vue.extend({
{
name: 'show',
rawName: 'v-show',
- value: this.localActive,
+ value: localActive,
expression: 'localActive'
}
],
attrs: {
role: 'tabpanel',
id: this.safeId(),
- 'aria-hidden': this.localActive ? 'false' : 'true',
+ 'aria-hidden': localActive ? 'false' : 'true',
'aria-labelledby': this.controlledBy || null
}
},
// Render content lazily if requested
- [this.localActive || !this.computedLazy ? this.normalizeSlot('default') : h()]
+ [localActive || !this.computedLazy ? this.normalizeSlot('default') : h()]
)
- return h(BVTransition, { props: { mode: 'out-in', noFade: this.computedNoFade } }, [content])
+ return h(BVTransition, { props: { mode: 'out-in', noFade: this.computedNoFade } }, [$content])
}
})
diff --git a/src/components/tabs/tabs.js b/src/components/tabs/tabs.js
index 75008b57eab..0c9387d8092 100644
--- a/src/components/tabs/tabs.js
+++ b/src/components/tabs/tabs.js
@@ -7,6 +7,7 @@ import stableSort from '../../utils/stable-sort'
import { arrayIncludes, concat } from '../../utils/array'
import { BvEvent } from '../../utils/bv-event.class'
import { attemptFocus, requestAF, selectAll } from '../../utils/dom'
+import { stopEvent } from '../../utils/events'
import { isEvent } from '../../utils/inspect'
import { mathMax } from '../../utils/math'
import { toInteger } from '../../utils/number'
@@ -16,11 +17,11 @@ import normalizeSlotMixin from '../../mixins/normalize-slot'
import { BLink } from '../link/link'
import { BNav, props as BNavProps } from '../nav/nav'
-// -- Constants --
+// --- Constants ---
const navProps = omit(BNavProps, ['tabs', 'isNavBar', 'cardHeader'])
-// -- Utils --
+// --- Helper methods ---
// Filter function to filter out disabled tabs
const notDisabled = tab => !tab.disabled
@@ -60,38 +61,32 @@ const BTabButtonHelper = /*#__PURE__*/ Vue.extend({
attemptFocus(this.$refs.link)
},
handleEvt(evt) {
- const stop = () => {
- evt.preventDefault()
- evt.stopPropagation()
- }
if (this.tab.disabled) {
/* istanbul ignore next */
return
}
- const type = evt.type
- const key = evt.keyCode
- const shift = evt.shiftKey
+ const { type, keyCode, shiftKey } = evt
if (type === 'click') {
- stop()
+ stopEvent(evt)
this.$emit('click', evt)
- } else if (type === 'keydown' && key === KeyCodes.SPACE) {
+ } else if (type === 'keydown' && keyCode === KeyCodes.SPACE) {
// For ARIA tabs the SPACE key will also trigger a click/select
// Even with keyboard navigation disabled, SPACE should "click" the button
// See: https://github.com/bootstrap-vue/bootstrap-vue/issues/4323
- stop()
+ stopEvent(evt)
this.$emit('click', evt)
} else if (type === 'keydown' && !this.noKeyNav) {
// For keyboard navigation
- if (key === KeyCodes.UP || key === KeyCodes.LEFT || key === KeyCodes.HOME) {
- stop()
- if (shift || key === KeyCodes.HOME) {
+ if ([KeyCodes.UP, KeyCodes.LEFT, KeyCodes.HOME].indexOf(keyCode) !== -1) {
+ stopEvent(evt)
+ if (shiftKey || keyCode === KeyCodes.HOME) {
this.$emit('first', evt)
} else {
this.$emit('prev', evt)
}
- } else if (key === KeyCodes.DOWN || key === KeyCodes.RIGHT || key === KeyCodes.END) {
- stop()
- if (shift || key === KeyCodes.END) {
+ } else if ([KeyCodes.DOWN, KeyCodes.RIGHT, KeyCodes.END].indexOf(keyCode) !== -1) {
+ stopEvent(evt)
+ if (shiftKey || keyCode === KeyCodes.END) {
this.$emit('last', evt)
} else {
this.$emit('next', evt)
@@ -101,47 +96,58 @@ const BTabButtonHelper = /*#__PURE__*/ Vue.extend({
}
},
render(h) {
- const link = h(
+ const { id, tabIndex, setSize, posInSet, controls, handleEvt } = this
+ const {
+ title,
+ localActive,
+ disabled,
+ titleItemClass,
+ titleLinkClass,
+ titleLinkAttributes
+ } = this.tab
+
+ const $link = h(
BLink,
{
ref: 'link',
staticClass: 'nav-link',
class: [
{
- active: this.tab.localActive && !this.tab.disabled,
- disabled: this.tab.disabled
+ active: localActive && !disabled,
+ disabled
},
- this.tab.titleLinkClass,
+ titleLinkClass,
// Apply `activeNavItemClass` styles when the tab is active
- this.tab.localActive ? this.bvTabs.activeNavItemClass : null
+ localActive ? this.bvTabs.activeNavItemClass : null
],
- props: { disabled: this.tab.disabled },
+ props: { disabled },
attrs: {
- ...this.tab.titleLinkAttributes,
+ ...titleLinkAttributes,
role: 'tab',
- id: this.id,
+ id,
// Roving tab index when keynav enabled
- tabindex: this.tabIndex,
- 'aria-selected': this.tab.localActive && !this.tab.disabled ? 'true' : 'false',
- 'aria-setsize': this.setSize,
- 'aria-posinset': this.posInSet,
- 'aria-controls': this.controls
+ tabindex: tabIndex,
+ 'aria-selected': localActive && !disabled ? 'true' : 'false',
+ 'aria-setsize': setSize,
+ 'aria-posinset': posInSet,
+ 'aria-controls': controls
},
on: {
- click: this.handleEvt,
- keydown: this.handleEvt
+ click: handleEvt,
+ keydown: handleEvt
}
},
- [this.tab.normalizeSlot('title') || this.tab.title]
+ [this.tab.normalizeSlot('title') || title]
)
+
return h(
'li',
{
staticClass: 'nav-item',
- class: [this.tab.titleItemClass],
+ class: [titleItemClass],
attrs: { role: 'presentation' }
},
- [link]
+ [$link]
)
}
})
@@ -389,36 +395,35 @@ export const BTabs = /*#__PURE__*/ Vue.extend({
}
},
getTabs() {
- // We use registeredTabs as the source of truth for child tab components. And we
- // filter out any BTab components that are extended BTab with a root child BTab.
- // https://github.com/bootstrap-vue/bootstrap-vue/issues/3260
+ // We use `registeredTabs` as the source of truth for child tab components
+ // We also filter out any `` components that are extended
+ // `` with a root child ``
+ // See: https://github.com/bootstrap-vue/bootstrap-vue/issues/3260
const tabs = this.registeredTabs.filter(
tab => tab.$children.filter(t => t._isTab).length === 0
)
// DOM Order of Tabs
let order = []
if (this.isMounted && tabs.length > 0) {
- // We rely on the DOM when mounted to get the 'true' order of the b-tab children.
- // querySelectorAll(...) always returns elements in document order, regardless of
- // order specified in the selector.
+ // We rely on the DOM when mounted to get the 'true' order of the `` children
+ // `querySelectorAll()` always returns elements in document order, regardless of
+ // order specified in the selector
const selector = tabs.map(tab => `#${tab.safeId()}`).join(', ')
order = selectAll(selector, this.$el)
.map(el => el.id)
.filter(identity)
}
- // Stable sort keeps the original order if not found in the
- // `order` array, which will be an empty array before mount.
- return stableSort(tabs, (a, b) => {
- return order.indexOf(a.safeId()) - order.indexOf(b.safeId())
- })
+ // Stable sort keeps the original order if not found in the `order` array,
+ // which will be an empty array before mount
+ return stableSort(tabs, (a, b) => order.indexOf(a.safeId()) - order.indexOf(b.safeId()))
},
- // Update list of children
+ // Update list of `` children
updateTabs() {
// Probe tabs
const tabs = this.getTabs()
// Find *last* active non-disabled tab in current tabs
- // We trust tab state over currentTab, in case tabs were added/removed/re-ordered
+ // We trust tab state over `currentTab`, in case tabs were added/removed/re-ordered
let tabIndex = tabs.indexOf(
tabs
.slice()
@@ -426,7 +431,7 @@ export const BTabs = /*#__PURE__*/ Vue.extend({
.find(tab => tab.localActive && !tab.disabled)
)
- // Else try setting to currentTab
+ // Else try setting to `currentTab`
if (tabIndex < 0) {
const currentTab = this.currentTab
if (currentTab >= tabs.length) {
@@ -475,8 +480,8 @@ export const BTabs = /*#__PURE__*/ Vue.extend({
button.$forceUpdate()
}
},
- // Activate a tab given a instance
- // Also accessed by
+ // Activate a tab given a `` instance
+ // Also accessed by ``
activateTab(tab) {
let result = false
if (tab) {
@@ -572,7 +577,7 @@ export const BTabs = /*#__PURE__*/ Vue.extend({
}
},
render(h) {
- const tabs = this.tabs
+ const { tabs, noKeyNav, firstTab, previousTab, nextTab, lastTab } = this
// Currently active tab
const activeTab = tabs.find(tab => tab.localActive && !tab.disabled)
@@ -580,11 +585,11 @@ export const BTabs = /*#__PURE__*/ Vue.extend({
// Tab button to allow focusing when no active tab found (keynav only)
const fallbackTab = tabs.find(tab => !tab.disabled)
- // For each found create the tab buttons
+ // For each `` found create the tab buttons
const buttons = tabs.map((tab, index) => {
let tabIndex = null
// Ensure at least one tab button is focusable when keynav enabled (if possible)
- if (!this.noKeyNav) {
+ if (!noKeyNav) {
// Buttons are not in tab index unless active, or a fallback tab
tabIndex = -1
if (activeTab === tab || (!activeTab && fallbackTab === tab)) {
@@ -598,23 +603,23 @@ export const BTabs = /*#__PURE__*/ Vue.extend({
// Needed to make `this.$refs.buttons` an array
refInFor: true,
props: {
- tab: tab,
- tabs: tabs,
+ tab,
+ tabs,
id: tab.controlledBy || (tab.safeId ? tab.safeId(`_BV_tab_button_`) : null),
controls: tab.safeId ? tab.safeId() : null,
tabIndex,
setSize: tabs.length,
posInSet: index + 1,
- noKeyNav: this.noKeyNav
+ noKeyNav
},
on: {
click: evt => {
this.clickTab(tab, evt)
},
- first: this.firstTab,
- prev: this.previousTab,
- next: this.nextTab,
- last: this.lastTab
+ first: firstTab,
+ prev: previousTab,
+ next: nextTab,
+ last: lastTab
}
})
})
diff --git a/src/components/time/README.md b/src/components/time/README.md
index f0196949a32..b03772c99ce 100644
--- a/src/components/time/README.md
+++ b/src/components/time/README.md
@@ -240,7 +240,7 @@ Internationalization of the time interface is provided via
[`Intl.DateTimeFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat)
and
[`Intl.NumberFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat),
-except for the labels applied to elements of the time control (aria-labels, selected status, etc).
+except for the labels applied to elements of the time control (aria-labels, selected status, etc.).
You must provide your own translations for these labels. The available locales will be browser
dependent (not all browsers support all locales).
diff --git a/src/components/time/package.json b/src/components/time/package.json
index fba8385d690..4adb5a4782d 100644
--- a/src/components/time/package.json
+++ b/src/components/time/package.json
@@ -40,52 +40,42 @@
},
{
"prop": "labelNoTimeSelected",
- "settings": true,
"description": "String to show when no time is selected"
},
{
"prop": "labelSelected",
- "settings": true,
"description": "Hidden sr-only string when a time is selected"
},
{
"prop": "labelIncrement",
- "settings": true,
"description": "Value of the `aria-label` attribute on the spinbuttons `+` button"
},
{
"prop": "labelDecrement",
- "settings": true,
"description": "Value of the `aria-label` attribute on the spinbuttons `-` button"
},
{
"prop": "labelHours",
- "settings": true,
"description": "Value of the `aria-label` attribute on the `Hours` spinbutton"
},
{
"prop": "labelMinutes",
- "settings": true,
"description": "Value of the `aria-label` attribute on the `Minutes` spinbutton"
},
{
"prop": "labelSeconds",
- "settings": true,
"description": "Value of the `aria-label` attribute on the `Seconds` spinbutton"
},
{
"prop": "labelAmpm",
- "settings": true,
"description": "Value of the `aria-label` attribute on the `AM/PM` spinbutton"
},
{
"prop": "labelAm",
- "settings": true,
"description": "Text to display in the AM/PM spinbutton when 'AM' is selected"
},
{
"prop": "labelPm",
- "settings": true,
"description": "Text to display in the AM/PM spinbutton when 'PM' is selected"
}
],
diff --git a/src/components/time/time.js b/src/components/time/time.js
index 70f1d360e0b..592b7420cb3 100644
--- a/src/components/time/time.js
+++ b/src/components/time/time.js
@@ -8,6 +8,7 @@ import { concat } from '../../utils/array'
import { getComponentConfig } from '../../utils/config'
import { createDate, createDateFormatter } from '../../utils/date'
import { attemptBlur, attemptFocus, contains, getActiveElement, requestAF } from '../../utils/dom'
+import { stopEvent } from '../../utils/events'
import { isNull, isUndefinedOrNull } from '../../utils/inspect'
import { isLocaleRTL } from '../../utils/locale'
import { toInteger } from '../../utils/number'
@@ -204,8 +205,8 @@ export const BTime = /*#__PURE__*/ Vue.extend({
const hourCycle = resolved.hourCycle || (hour12 ? 'h12' : 'h23')
return {
locale: resolved.locale,
- hour12: hour12,
- hourCycle: hourCycle
+ hour12,
+ hourCycle
}
},
computedLocale() {
@@ -420,8 +421,7 @@ export const BTime = /*#__PURE__*/ Vue.extend({
onSpinLeftRight(evt = {}) {
const { type, keyCode } = evt
if (!this.disabled && type === 'keydown' && (keyCode === LEFT || keyCode === RIGHT)) {
- evt.preventDefault()
- evt.stopPropagation()
+ stopEvent(evt)
const spinners = this.$refs.spinners || []
let index = spinners.map(cmp => !!cmp.hasFocus).indexOf(true)
index = index + (keyCode === LEFT ? -1 : 1)
@@ -457,12 +457,12 @@ export const BTime = /*#__PURE__*/ Vue.extend({
const id = this.safeId(`_spinbutton_${key}_`) || null
spinIds.push(id)
return h(BFormSpinbutton, {
- key: key,
+ key,
ref: 'spinners',
refInFor: true,
class: classes,
props: {
- id: id,
+ id,
placeholder: '--',
vertical: true,
required: true,
diff --git a/src/components/toast/helpers/bv-toast.js b/src/components/toast/helpers/bv-toast.js
index 8c159ab9b6f..ee4798c1006 100644
--- a/src/components/toast/helpers/bv-toast.js
+++ b/src/components/toast/helpers/bv-toast.js
@@ -63,18 +63,17 @@ const plugin = Vue => {
}
},
mounted() {
- const self = this
// Self destruct handler
const handleDestroy = () => {
// Ensure the toast has been force hidden
- self.localShow = false
- self.doRender = false
- self.$nextTick(() => {
- self.$nextTick(() => {
+ this.localShow = false
+ this.doRender = false
+ this.$nextTick(() => {
+ this.$nextTick(() => {
// In a `requestAF()` to release control back to application
// and to allow the portal-target time to remove the content
requestAF(() => {
- self.$destroy()
+ this.$destroy()
})
})
})
@@ -86,7 +85,7 @@ const plugin = Vue => {
// Self destruct when toaster is destroyed
this.listenOnRoot('bv::toaster::destroyed', toaster => {
/* istanbul ignore next: hard to test */
- if (toaster === self.toaster) {
+ if (toaster === this.toaster) {
handleDestroy()
}
})
diff --git a/src/components/toast/package.json b/src/components/toast/package.json
index 36af426b99a..c589c2c8245 100644
--- a/src/components/toast/package.json
+++ b/src/components/toast/package.json
@@ -18,7 +18,6 @@
},
{
"prop": "toaster",
- "settings": true,
"description": "The name of the toaster target to render the toast in"
},
{
@@ -27,7 +26,6 @@
},
{
"prop": "variant",
- "settings": true,
"description": "Applies one of the Bootstrap theme color variants to the component"
},
{
@@ -44,7 +42,6 @@
},
{
"prop": "autoHideDelay",
- "settings": true,
"description": "The number of milliseconds before the toast auto dismisses itself"
},
{
@@ -61,17 +58,14 @@
},
{
"prop": "toastClass",
- "settings": true,
"description": "CSS class (or classes) to add to the toast wrapper element"
},
{
"prop": "headerClass",
- "settings": true,
"description": "CSS class (or classes) to add to the toast header element"
},
{
"prop": "bodyClass",
- "settings": true,
"description": "CSS class (or classes) to add to the toast body element"
}
],
@@ -166,17 +160,14 @@
},
{
"prop": "ariaLive",
- "settings": true,
"description": "When the rendered element is an aria-live region (for screen reader users), set to either 'polite' or 'assertive'"
},
{
"prop": "ariaAtomic",
- "settings": true,
"description": "When screen reader's should read out the entire contents (set to string 'true') or just the changes (set to string 'false'). Leave blank for most cases"
},
{
"prop": "role",
- "settings": true,
"description": "Sets the ARIA attribute 'role' to a specific value"
}
]
diff --git a/src/components/toast/toast.js b/src/components/toast/toast.js
index a028e71e870..f1d698701c8 100644
--- a/src/components/toast/toast.js
+++ b/src/components/toast/toast.js
@@ -422,7 +422,7 @@ export const BToast = /*#__PURE__*/ Vue.extend({
Portal,
{
props: {
- name: name,
+ name,
to: this.computedToaster,
order: this.order,
slim: true,
diff --git a/src/components/toast/toaster.js b/src/components/toast/toaster.js
index 3b478276c04..c0721c28b01 100644
--- a/src/components/toast/toaster.js
+++ b/src/components/toast/toaster.js
@@ -44,12 +44,13 @@ export const DefaultTransition = /*#__PURE__*/ Vue.extend({
},
methods: {
onAfterEnter(el) {
- // Handle bug where enter-to class is not removed.
- // Bug is related to portal-vue and transition-groups.
+ // Work around a Vue.js bug where `*-enter-to` class is not removed
+ // See: https://github.com/vuejs/vue/pull/7901
+ // The `*-move` class is also stuck on elements that moved,
+ // but there are no JavaScript hooks to handle after move
+ // See: https://github.com/vuejs/vue/pull/7906
requestAF(() => {
removeClass(el, `${this.name}-enter-to`)
- // The *-move class is also stuck on elements that moved,
- // but there are no javascript hooks to handle after move.
})
}
},
diff --git a/src/components/tooltip/README.md b/src/components/tooltip/README.md
index 697336bd358..7ac6ad76343 100644
--- a/src/components/tooltip/README.md
+++ b/src/components/tooltip/README.md
@@ -28,7 +28,7 @@ Things to know when using tooltip component:
- Tooltips require BootstrapVue's custom SCSS/CSS in order to function correctly, and for variants.
- Triggering tooltips on hidden elements will not work.
- Specify `container` as `null` (default, appends to ``) to avoid rendering problems in more
- complex components (like input groups, button groups, etc). You can use container to optionally
+ complex components (like input groups, button groups, etc.). You can use container to optionally
specify a different element to append the rendered tooltip to.
- Tooltips for `disabled` elements must be triggered on a wrapper element.
- When triggered from hyperlinks that span multiple lines, tooltips will be centered. Use
@@ -236,7 +236,7 @@ override the `pointer-events` on the disabled element.
### Noninteractive tooltips
-BootstrapVue's tooltips are user-interactive by default for accessability reasons. To restore
+BootstrapVue's tooltips are user-interactive by default for accessibility reasons. To restore
Bootstraps default behavior apply the `noninteractive` prop:
```html
diff --git a/src/components/tooltip/helpers/bv-popper.js b/src/components/tooltip/helpers/bv-popper.js
index 2cace4baa7b..16a9900a84b 100644
--- a/src/components/tooltip/helpers/bv-popper.js
+++ b/src/components/tooltip/helpers/bv-popper.js
@@ -7,7 +7,7 @@
import Vue from '../../../utils/vue'
import Popper from 'popper.js'
-import { getCS, select } from '../../../utils/dom'
+import { getCS, requestAF, select } from '../../../utils/dom'
import { toFloat } from '../../../utils/number'
import { HTMLElement, SVGElement } from '../../../utils/safe-types'
import { BVTransition } from '../../../utils/bv-transition'
@@ -139,12 +139,19 @@ export const BVPopper = /*#__PURE__*/ Vue.extend({
this.$on('show', el => {
this.popperCreate(el)
})
- // Self destruct once hidden
- this.$on('hidden', () => {
- this.$nextTick(this.$destroy)
- })
- // If parent is destroyed, ensure we are destroyed
- this.$parent.$once('hook:destroyed', this.$destroy)
+ // Self destruct handler
+ const handleDestroy = () => {
+ this.$nextTick(() => {
+ // In a `requestAF()` to release control back to application
+ requestAF(() => {
+ this.$destroy()
+ })
+ })
+ }
+ // Self destruct if parent destroyed
+ this.$parent.$once('hook:destroyed', handleDestroy)
+ // Self destruct after hidden
+ this.$once('hidden', handleDestroy)
},
beforeMount() {
// Ensure that the attachment position is correct before mounting
diff --git a/src/components/tooltip/helpers/bv-tooltip.js b/src/components/tooltip/helpers/bv-tooltip.js
index 656dbfca221..8d645fb6db1 100644
--- a/src/components/tooltip/helpers/bv-tooltip.js
+++ b/src/components/tooltip/helpers/bv-tooltip.js
@@ -21,6 +21,7 @@ import {
isElement,
isVisible,
removeAttr,
+ requestAF,
select,
setAttr
} from '../../../utils/dom'
@@ -56,6 +57,9 @@ const CONTAINER_SELECTOR = [MODAL_SELECTOR, SIDEBAR_SELECTOR].join(', ')
const DROPDOWN_CLASS = 'dropdown'
const DROPDOWN_OPEN_SELECTOR = '.dropdown-menu.show'
+// Data attribute to temporary store the `title` attribute's value
+const DATA_TITLE_ATTR = 'data-original-title'
+
// Data specific to popper and template
// We don't use props, as we need reactivity (we can't pass reactive props)
const templateData = {
@@ -200,8 +204,18 @@ export const BVTooltip = /*#__PURE__*/ Vue.extend({
// ensure that the template updates accordingly
this.handleTemplateUpdate()
},
- disabled(newVal) {
- newVal ? this.disable() : this.enable()
+ title(newValue, oldValue) {
+ // Make sure to hide the tooltip when the title is set empty
+ if (newValue !== oldValue && !newValue) {
+ this.hide()
+ }
+ },
+ disabled(newValue) {
+ if (newValue) {
+ this.disable()
+ } else {
+ this.enable()
+ }
}
},
created() {
@@ -215,7 +229,14 @@ export const BVTooltip = /*#__PURE__*/ Vue.extend({
// Destroy ourselves when the parent is destroyed
if (this.$parent) {
- this.$parent.$once('hook:beforeDestroy', this.$destroy)
+ this.$parent.$once('hook:beforeDestroy', () => {
+ this.$nextTick(() => {
+ // In a `requestAF()` to release control back to application
+ requestAF(() => {
+ this.$destroy()
+ })
+ })
+ })
}
this.$nextTick(() => {
@@ -227,7 +248,12 @@ export const BVTooltip = /*#__PURE__*/ Vue.extend({
this.listen()
} else {
/* istanbul ignore next */
- warn('Unable to find target element in document.', this.templateType)
+ warn(
+ isString(this.target)
+ ? `Unable to find target element by ID "#${this.target}" in document.`
+ : 'The provided target is no valid HTML element.',
+ this.templateType
+ )
}
})
},
@@ -272,10 +298,10 @@ export const BVTooltip = /*#__PURE__*/ Vue.extend({
}
}
})
+ // If the title has updated, we may need to handle the `title`
+ // attribute on the trigger target
+ // We only do this while the template is open
if (titleUpdated && this.localShow) {
- // If the title has updated, we may need to handle the title
- // attribute on the trigger target. We only do this while the
- // template is open
this.fixTitle()
}
},
@@ -492,13 +518,14 @@ export const BVTooltip = /*#__PURE__*/ Vue.extend({
},
// --- Utility methods ---
getTarget() {
- // Handle case where target may be a component ref
- let target = this.target ? this.target.$el || this.target : null
- // If an ID
- target = isString(target) ? getById(target.replace(/^#/, '')) : target
- // If a function
- target = isFunction(target) ? target() : target
- // If an element ref
+ let { target } = this
+ if (isString(target)) {
+ target = getById(target.replace(/^#/, ''))
+ } else if (isFunction(target)) {
+ target = target()
+ } else if (target) {
+ target = target.$el || target
+ }
return isElement(target) ? target : null
},
getPlacementTarget() {
@@ -594,22 +621,19 @@ export const BVTooltip = /*#__PURE__*/ Vue.extend({
}
},
fixTitle() {
- // If the target has a title attribute, null it out and
- // store on data-title
+ // If the target has a `title` attribute, remove it and store it on a data attribute
const target = this.getTarget()
- if (target && getAttr(target, 'title')) {
- // We only update title attribute if it has a value
- setAttr(target, 'data-original-title', getAttr(target, 'title') || '')
+ if (target && hasAttr(target, 'title')) {
+ setAttr(target, DATA_TITLE_ATTR, getAttr(target, 'title') || '')
setAttr(target, 'title', '')
}
},
restoreTitle() {
- // If target had a title, restore the title attribute
- // and remove the data-title attribute
+ // If the target had a title, restore it and remove the data attribute
const target = this.getTarget()
- if (target && hasAttr(target, 'data-original-title')) {
- setAttr(target, 'title', getAttr(target, 'data-original-title') || '')
- removeAttr(target, 'data-original-title')
+ if (target && hasAttr(target, DATA_TITLE_ATTR)) {
+ setAttr(target, 'title', getAttr(target, DATA_TITLE_ATTR) || '')
+ removeAttr(target, DATA_TITLE_ATTR)
}
},
// --- BvEvent helpers ---
diff --git a/src/components/tooltip/package.json b/src/components/tooltip/package.json
index 4b9ccca7bfc..39e6a214e2c 100644
--- a/src/components/tooltip/package.json
+++ b/src/components/tooltip/package.json
@@ -33,27 +33,22 @@
},
{
"prop": "variant",
- "settings": true,
"description": "Applies one of the Bootstrap theme color variants to the component"
},
{
"prop": "customClass",
- "settings": true,
"description": "CSS class (or classes) to apply to the tooltip's root element"
},
{
"prop": "delay",
- "settings": true,
"description": "Value for the show and hide delay. Applies to both show and hide when specified as a number or string. Use object form to set show and hide delays individually"
},
{
"prop": "boundary",
- "settings": true,
"description": "The boundary constraint of the tooltip: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement or component"
},
{
"prop": "boundaryPadding",
- "settings": true,
"description": "The tooltip will try and stay away from the edge of the boundary element by the number of pixels specificed"
},
{
diff --git a/src/components/tooltip/tooltip.spec.js b/src/components/tooltip/tooltip.spec.js
index 5f8c3e4995e..8818767987f 100644
--- a/src/components/tooltip/tooltip.spec.js
+++ b/src/components/tooltip/tooltip.spec.js
@@ -7,6 +7,7 @@ const MODAL_CLOSE_EVENT = 'bv::modal::hidden'
// Our test application
const App = {
props: [
+ 'target',
'triggers',
'show',
'noninteractive',
@@ -22,7 +23,7 @@ const App = {
],
render(h) {
const tipProps = {
- target: 'foo',
+ target: this.target || 'foo',
triggers: this.triggers,
show: this.show,
noninteractive: this.noninteractive || false,
@@ -47,7 +48,8 @@ const App = {
type: 'button',
disabled: this.btnDisabled || null,
title: this.titleAttr || null
- }
+ },
+ ref: 'target'
},
'text'
),
@@ -283,6 +285,68 @@ describe('b-tooltip', () => {
wrapper.destroy()
})
+ it('providing the trigger element by function works', async () => {
+ jest.useFakeTimers()
+ const container = createContainer()
+ const wrapper = mount(App, {
+ attachTo: container,
+ propsData: {
+ target: () => wrapper.vm.$refs.target,
+ triggers: 'click',
+ show: false
+ },
+ slots: {
+ default: 'title'
+ }
+ })
+
+ expect(wrapper.vm).toBeDefined()
+ await waitNT(wrapper.vm)
+ await waitRAF()
+ await waitNT(wrapper.vm)
+ await waitRAF()
+ jest.runOnlyPendingTimers()
+
+ expect(wrapper.element.tagName).toBe('ARTICLE')
+ expect(wrapper.attributes('id')).toBeDefined()
+ expect(wrapper.attributes('id')).toEqual('wrapper')
+
+ // The trigger button
+ const $button = wrapper.find('button')
+ expect($button.exists()).toBe(true)
+ expect($button.attributes('id')).toBeDefined()
+ expect($button.attributes('id')).toEqual('foo')
+ expect($button.attributes('aria-describedby')).not.toBeDefined()
+
+ // wrapper
+ const $tipHolder = wrapper.findComponent(BTooltip)
+ expect($tipHolder.exists()).toBe(true)
+
+ // Activate tooltip by trigger
+ await $button.trigger('click')
+ await waitRAF()
+ await waitRAF()
+ jest.runOnlyPendingTimers()
+ await waitNT(wrapper.vm)
+ await waitRAF()
+
+ expect($button.attributes('id')).toBeDefined()
+ expect($button.attributes('id')).toEqual('foo')
+ expect($button.attributes('aria-describedby')).toBeDefined()
+ // ID of the tooltip that will be in the body
+ const adb = $button.attributes('aria-describedby')
+
+ // Find the tooltip element in the document
+ const tip = document.getElementById(adb)
+ expect(tip).not.toBe(null)
+ expect(tip).toBeInstanceOf(HTMLElement)
+ expect(tip.tagName).toEqual('DIV')
+ expect(tip.classList.contains('tooltip')).toBe(true)
+ expect(tip.classList.contains('b-tooltip')).toBe(true)
+
+ wrapper.destroy()
+ })
+
it('activating trigger element (click) opens tooltip', async () => {
jest.useFakeTimers()
const wrapper = mount(App, {
@@ -1119,7 +1183,7 @@ describe('b-tooltip', () => {
// Tooltip element should not be in the document
expect(document.body.contains(tip)).toBe(false)
- expect(document.getElementById(`adb`)).toBe(null)
+ expect(document.getElementById('adb')).toBe(null)
// Try and show element via root event (using ID of trigger button)
// Note that this generates a console warning
@@ -1157,6 +1221,70 @@ describe('b-tooltip', () => {
wrapper.destroy()
})
+ it('closes when title is set to empty', async () => {
+ jest.useFakeTimers()
+ const wrapper = mount(App, {
+ attachTo: createContainer(),
+ propsData: {
+ show: true,
+ title: 'hello'
+ }
+ })
+
+ expect(wrapper.vm).toBeDefined()
+ await waitNT(wrapper.vm)
+ await waitRAF()
+ await waitNT(wrapper.vm)
+ await waitRAF()
+ await waitNT(wrapper.vm)
+ await waitRAF()
+ jest.runOnlyPendingTimers()
+ await waitNT(wrapper.vm)
+ await waitRAF()
+
+ expect(wrapper.element.tagName).toBe('ARTICLE')
+ expect(wrapper.attributes('id')).toBeDefined()
+ expect(wrapper.attributes('id')).toEqual('wrapper')
+
+ // The trigger button
+ const $button = wrapper.find('button')
+ expect($button.exists()).toBe(true)
+ expect($button.attributes('id')).toBeDefined()
+ expect($button.attributes('id')).toEqual('foo')
+ expect($button.attributes('title')).not.toBeDefined()
+ expect($button.attributes('data-original-title')).not.toBeDefined()
+ expect($button.attributes('aria-describedby')).toBeDefined()
+ // ID of the tooltip that will be in the body
+ const adb = $button.attributes('aria-describedby')
+
+ // wrapper
+ const $tipHolder = wrapper.findComponent(BTooltip)
+ expect($tipHolder.exists()).toBe(true)
+ expect($tipHolder.element.nodeType).toEqual(Node.COMMENT_NODE)
+
+ // Find the tooltip element in the document
+ const tip = document.getElementById(adb)
+ expect(tip).not.toBe(null)
+ expect(tip).toBeInstanceOf(HTMLElement)
+ const $tip = createWrapper(tip)
+ expect($tip.element.tagName).toBe('DIV')
+ expect($tip.classes()).toContain('tooltip')
+ expect($tip.classes()).toContain('b-tooltip')
+ // Should contain our title prop value
+ expect($tip.text()).toContain('hello')
+
+ // Change the title prop
+ await wrapper.setProps({ title: '' })
+ await waitRAF()
+ await waitRAF()
+
+ // Tooltip element should not be in the document
+ expect(document.body.contains(tip)).toBe(false)
+ expect(document.getElementById('adb')).toBe(null)
+
+ wrapper.destroy()
+ })
+
it('applies noninteractive class based on noninteractive prop', async () => {
jest.useFakeTimers()
const wrapper = mount(App, {
diff --git a/src/directives/popover/README.md b/src/directives/popover/README.md
index f9cdb339fb8..f1836ae06ae 100644
--- a/src/directives/popover/README.md
+++ b/src/directives/popover/README.md
@@ -24,7 +24,7 @@ Things to know when using the popover directive:
- Popovers require BootstrapVue's custom SCSS/CSS in order to function correctly, and for variants.
- If both title and content is not provided (or are an empty string), the popover will not show.
- Specify container: 'body' (default) to avoid rendering problems in more complex components (like
- input groups, button groups, etc).
+ input groups, button groups, etc.).
- Triggering popovers on hidden elements will not work.
- Popovers for `disabled` elements must be triggered on a wrapper element.
- When triggered from hyperlinks that span multiple lines, popovers will be centered. Use
diff --git a/src/directives/toggle/toggle.js b/src/directives/toggle/toggle.js
index 45a909d30d4..8b0e0bc2115 100644
--- a/src/directives/toggle/toggle.js
+++ b/src/directives/toggle/toggle.js
@@ -9,10 +9,13 @@ import {
isTag,
removeAttr,
removeClass,
- setAttr
+ removeStyle,
+ requestAF,
+ setAttr,
+ setStyle
} from '../../utils/dom'
import { isBrowser } from '../../utils/env'
-import { eventOn, eventOff } from '../../utils/events'
+import { EVENT_OPTIONS_PASSIVE, eventOn, eventOff } from '../../utils/events'
import { isString } from '../../utils/inspect'
import { keys } from '../../utils/object'
@@ -45,6 +48,9 @@ const ATTR_ARIA_EXPANDED = 'aria-expanded'
const ATTR_ROLE = 'role'
const ATTR_TABINDEX = 'tabindex'
+// Commonly used style properties
+const STYLE_OVERFLOW_ANCHOR = 'overflow-anchor'
+
// Emitted control event for collapse (emitted to collapse)
export const EVENT_TOGGLE = 'bv::toggle::collapse'
@@ -95,8 +101,8 @@ const getTargets = ({ modifiers, arg, value }, el) => {
const removeClickListener = el => {
const handler = el[BV_TOGGLE_CLICK_HANDLER]
if (handler) {
- eventOff(el, 'click', handler)
- eventOff(el, 'keydown', handler)
+ eventOff(el, 'click', handler, EVENT_OPTIONS_PASSIVE)
+ eventOff(el, 'keydown', handler, EVENT_OPTIONS_PASSIVE)
}
el[BV_TOGGLE_CLICK_HANDLER] = null
}
@@ -116,9 +122,9 @@ const addClickListener = (el, vnode) => {
}
}
el[BV_TOGGLE_CLICK_HANDLER] = handler
- eventOn(el, 'click', handler)
+ eventOn(el, 'click', handler, EVENT_OPTIONS_PASSIVE)
if (isNonStandardTag(el)) {
- eventOn(el, 'keydown', handler)
+ eventOn(el, 'keydown', handler, EVENT_OPTIONS_PASSIVE)
}
}
}
@@ -193,17 +199,25 @@ const handleUpdate = (el, binding, vnode) => {
// Parse list of target IDs
const targets = getTargets(binding, el)
- /* istanbul ignore else */
// Ensure the `aria-controls` hasn't been overwritten
// or removed when vnode updates
- if (targets.length) {
+ // Also ensure to set `overflow-anchor` to `none` to prevent
+ // the browser's scroll anchoring behavior
+ /* istanbul ignore else */
+ if (targets.length > 0) {
setAttr(el, ATTR_ARIA_CONTROLS, targets.join(' '))
+ setStyle(el, STYLE_OVERFLOW_ANCHOR, 'none')
} else {
removeAttr(el, ATTR_ARIA_CONTROLS)
+ removeStyle(el, STYLE_OVERFLOW_ANCHOR)
}
// Add/Update our click listener(s)
- addClickListener(el, vnode)
+ // Wrap in a `requestAF()` to allow any previous
+ // click handling to occur first
+ requestAF(() => {
+ addClickListener(el, vnode)
+ })
// If targets array has changed, update
if (!looseEqual(targets, el[BV_TOGGLE_TARGETS])) {
@@ -243,11 +257,12 @@ export const VBToggle = {
resetProp(el, BV_TOGGLE_CLICK_HANDLER)
resetProp(el, BV_TOGGLE_STATE)
resetProp(el, BV_TOGGLE_TARGETS)
- // Reset classes/attrs
+ // Reset classes/attrs/styles
removeClass(el, CLASS_BV_TOGGLE_COLLAPSED)
removeClass(el, CLASS_BV_TOGGLE_NOT_COLLAPSED)
removeAttr(el, ATTR_ARIA_EXPANDED)
removeAttr(el, ATTR_ARIA_CONTROLS)
removeAttr(el, ATTR_ROLE)
+ removeStyle(el, STYLE_OVERFLOW_ANCHOR)
}
}
diff --git a/src/directives/toggle/toggle.spec.js b/src/directives/toggle/toggle.spec.js
index cecf1360f85..3c01835161c 100644
--- a/src/directives/toggle/toggle.spec.js
+++ b/src/directives/toggle/toggle.spec.js
@@ -1,5 +1,5 @@
import { mount } from '@vue/test-utils'
-import { waitNT } from '../../../tests/utils'
+import { waitNT, waitRAF } from '../../../tests/utils'
import { VBToggle } from './toggle'
// Emitted control event for collapse (emitted to collapse)
@@ -29,6 +29,9 @@ describe('v-b-toggle directive', () => {
const wrapper = mount(App)
+ await waitRAF()
+ await waitNT(wrapper.vm)
+
expect(wrapper.vm).toBeDefined()
expect(wrapper.element.tagName).toBe('BUTTON')
expect(spy).not.toHaveBeenCalled()
@@ -72,6 +75,9 @@ describe('v-b-toggle directive', () => {
const wrapper = mount(App)
+ await waitRAF()
+ await waitNT(wrapper.vm)
+
expect(wrapper.vm).toBeDefined()
expect(wrapper.element.tagName).toBe('BUTTON')
expect(spy).not.toHaveBeenCalled()
@@ -113,6 +119,9 @@ describe('v-b-toggle directive', () => {
const wrapper = mount(App)
+ await waitRAF()
+ await waitNT(wrapper.vm)
+
expect(wrapper.vm).toBeDefined()
expect(wrapper.element.tagName).toBe('BUTTON')
expect(spy).not.toHaveBeenCalled()
@@ -154,6 +163,9 @@ describe('v-b-toggle directive', () => {
const wrapper = mount(App)
+ await waitRAF()
+ await waitNT(wrapper.vm)
+
expect(wrapper.vm).toBeDefined()
expect(wrapper.element.tagName).toBe('A')
expect(spy).not.toHaveBeenCalled()
@@ -207,6 +219,9 @@ describe('v-b-toggle directive', () => {
}
})
+ await waitRAF()
+ await waitNT(wrapper.vm)
+
expect(wrapper.vm).toBeDefined()
expect(wrapper.element.tagName).toBe('BUTTON')
expect(spy).not.toHaveBeenCalled()
@@ -279,6 +294,9 @@ describe('v-b-toggle directive', () => {
const wrapper = mount(App)
+ await waitRAF()
+ await waitNT(wrapper.vm)
+
expect(wrapper.vm).toBeDefined()
expect(wrapper.element.tagName).toBe('SPAN')
expect(spy).not.toHaveBeenCalled()
diff --git a/src/directives/tooltip/README.md b/src/directives/tooltip/README.md
index 0a5c054cc2e..2207597b587 100644
--- a/src/directives/tooltip/README.md
+++ b/src/directives/tooltip/README.md
@@ -22,7 +22,7 @@ Things to know when using the tooltip directive:
- Tooltips require BootstrapVue's custom SCSS/CSS in order to function correctly, and for variants.
- If a title is not provided (or is an empty string), the tooltip will not show.
- Specify container: 'body' (the default) to avoid rendering problems in more complex components
- (like input groups, button groups, etc).
+ (like input groups, button groups, etc.).
- Triggering tooltips on hidden elements will not work.
- Tooltips for `disabled` elements must be triggered on a wrapper element.
- When triggered from hyperlinks that span multiple lines, tooltips will be centered. Use
diff --git a/src/icons/README.md b/src/icons/README.md
index ed07c60a4fd..c961133424d 100644
--- a/src/icons/README.md
+++ b/src/icons/README.md
@@ -13,6 +13,7 @@ installed by default. You do not need `bootstrap-icons` as a dependency.
- Bootstrap Icons `v1.0.0-alpha3` icons were added in BootstrapVue release `v2.8.0`.
- Bootstrap Icons `v1.0.0-alpha4` icons were added in BootstrapVue release `v2.15.0`.
- Bootstrap Icons `v1.0.0-alpha5` icons were added in BootstrapVue release `v2.16.0`.
+- Bootstrap Icons `v1.0.0` icons were added in BootstrapVue release `v2.17.0`.
@@ -22,20 +23,23 @@ installed by default. You do not need `bootstrap-icons` as a dependency.
- Alpha 3 changes: In addition to over 200 new icons, some icons have
- changed names — document-*
icons renamed file-*
;
+ v1.0.0-alpha3
changes: In addition to over 200 new icons,
+ some icons have changed names — document-*
icons renamed file-*
;
alert-*
icons renamed exclamation-*
; columns-gutters
renamed columns-gap
and diamond
renamed gem
(because of
new diamond-*
shape icons).
- Alpha 4 changes: In addition to over 140 new icons, some icons have changed
- names — arrow-up-down
renamed arrow-down-up
and
- people-circle
renamed person-circle
.
+ v1.0.0-alpha4
changes: In addition to over 140 new icons,
+ some icons have changed names — arrow-up-down
renamed
+ arrow-down-up
and people-circle
renamed person-circle
.
- Alpha 5 changes: In addition to over 300 new icons, some icons have changed
- names — camera
renamed camera2
.
+ v1.0.0-alpha5
changes: In addition to over 300 new icons,
+ some icons have changed names — camera
renamed camera2
.
+
+
+ v1.0.0
changes: Over 90 new icons were added and over 400 redrawn.
diff --git a/src/icons/helpers/icon-base.js b/src/icons/helpers/icon-base.js
index f98421aef3f..b355be512a2 100644
--- a/src/icons/helpers/icon-base.js
+++ b/src/icons/helpers/icon-base.js
@@ -7,6 +7,10 @@ import { toFloat } from '../../utils/number'
// Common icon props (should be cloned/spread before using)
export const commonIconProps = {
+ title: {
+ type: String
+ // default: null
+ },
variant: {
type: String,
default: null
@@ -132,6 +136,8 @@ export const BVIconBase = /*#__PURE__*/ Vue.extend({
$inner = h('g', {}, [$inner])
}
+ const $title = props.title ? h('title', props.title) : null
+
return h(
'svg',
mergeData(
@@ -156,7 +162,7 @@ export const BVIconBase = /*#__PURE__*/ Vue.extend({
}
}
),
- [$inner]
+ [$title, $inner]
)
}
})
diff --git a/src/icons/helpers/make-icon.js b/src/icons/helpers/make-icon.js
index cecad3f3cff..a3ec085ffd3 100644
--- a/src/icons/helpers/make-icon.js
+++ b/src/icons/helpers/make-icon.js
@@ -16,6 +16,7 @@ export const makeIcon = (name, content) => {
const kebabName = kebabCase(name)
const iconName = `BIcon${pascalCase(name)}`
const iconNameClass = `bi-${kebabName}`
+ const iconTitle = kebabName.replace(/-/g, ' ')
const svgContent = trim(content || '')
// Return the icon component definition
return /*#__PURE__*/ Vue.extend({
@@ -31,11 +32,20 @@ export const makeIcon = (name, content) => {
render(h, { data, props }) {
return h(
BVIconBase,
- mergeData(data, {
- staticClass: iconNameClass,
- props: { ...props, content: svgContent },
- attrs: { 'aria-label': kebabName.replace(/-/g, ' ') }
- })
+ mergeData(
+ // Defaults
+ {
+ props: { title: iconTitle },
+ attrs: { 'aria-label': iconTitle }
+ },
+ // User data
+ data,
+ // Required data
+ {
+ staticClass: iconNameClass,
+ props: { ...props, content: svgContent }
+ }
+ )
)
}
})
diff --git a/src/icons/icons.d.ts b/src/icons/icons.d.ts
index 600decf8bbd..ec25f3c8cd2 100644
--- a/src/icons/icons.d.ts
+++ b/src/icons/icons.d.ts
@@ -1,7 +1,7 @@
// --- BEGIN AUTO-GENERATED FILE ---
//
-// @IconsVersion: 1.0.0-alpha5
-// @Generated: 2020-07-15T16:57:43.043Z
+// @IconsVersion: 1.0.0
+// @Generated: 2020-09-03T14:07:12.302Z
//
// This file is generated on each build. Do not edit this file!
@@ -200,6 +200,10 @@ export declare class BIconBadge8k extends BvComponent {}
export declare class BIconBadge8kFill extends BvComponent {}
+export declare class BIconBadgeAd extends BvComponent {}
+
+export declare class BIconBadgeAdFill extends BvComponent {}
+
export declare class BIconBadgeCc extends BvComponent {}
export declare class BIconBadgeCcFill extends BvComponent {}
@@ -220,12 +224,22 @@ export declare class BIconBag extends BvComponent {}
export declare class BIconBagCheck extends BvComponent {}
+export declare class BIconBagCheckFill extends BvComponent {}
+
export declare class BIconBagDash extends BvComponent {}
+export declare class BIconBagDashFill extends BvComponent {}
+
export declare class BIconBagFill extends BvComponent {}
export declare class BIconBagPlus extends BvComponent {}
+export declare class BIconBagPlusFill extends BvComponent {}
+
+export declare class BIconBagX extends BvComponent {}
+
+export declare class BIconBagXFill extends BvComponent {}
+
export declare class BIconBarChart extends BvComponent {}
export declare class BIconBarChartFill extends BvComponent {}
@@ -284,12 +298,30 @@ export declare class BIconBookmark extends BvComponent {}
export declare class BIconBookmarkCheck extends BvComponent {}
+export declare class BIconBookmarkCheckFill extends BvComponent {}
+
export declare class BIconBookmarkDash extends BvComponent {}
+export declare class BIconBookmarkDashFill extends BvComponent {}
+
export declare class BIconBookmarkFill extends BvComponent {}
+export declare class BIconBookmarkHeart extends BvComponent {}
+
+export declare class BIconBookmarkHeartFill extends BvComponent {}
+
export declare class BIconBookmarkPlus extends BvComponent {}
+export declare class BIconBookmarkPlusFill extends BvComponent {}
+
+export declare class BIconBookmarkStar extends BvComponent {}
+
+export declare class BIconBookmarkStarFill extends BvComponent {}
+
+export declare class BIconBookmarkX extends BvComponent {}
+
+export declare class BIconBookmarkXFill extends BvComponent {}
+
export declare class BIconBookmarks extends BvComponent {}
export declare class BIconBookmarksFill extends BvComponent {}
@@ -376,6 +408,8 @@ export declare class BIconBroadcastPin extends BvComponent {}
export declare class BIconBrush extends BvComponent {}
+export declare class BIconBrushFill extends BvComponent {}
+
export declare class BIconBucket extends BvComponent {}
export declare class BIconBucketFill extends BvComponent {}
@@ -434,6 +468,10 @@ export declare class BIconCalendar2Week extends BvComponent {}
export declare class BIconCalendar2WeekFill extends BvComponent {}
+export declare class BIconCalendar2X extends BvComponent {}
+
+export declare class BIconCalendar2XFill extends BvComponent {}
+
export declare class BIconCalendar3 extends BvComponent {}
export declare class BIconCalendar3Event extends BvComponent {}
@@ -496,6 +534,10 @@ export declare class BIconCalendarWeek extends BvComponent {}
export declare class BIconCalendarWeekFill extends BvComponent {}
+export declare class BIconCalendarX extends BvComponent {}
+
+export declare class BIconCalendarXFill extends BvComponent {}
+
export declare class BIconCamera extends BvComponent {}
export declare class BIconCamera2 extends BvComponent {}
@@ -570,12 +612,22 @@ export declare class BIconCart4 extends BvComponent {}
export declare class BIconCartCheck extends BvComponent {}
+export declare class BIconCartCheckFill extends BvComponent {}
+
export declare class BIconCartDash extends BvComponent {}
+export declare class BIconCartDashFill extends BvComponent {}
+
export declare class BIconCartFill extends BvComponent {}
export declare class BIconCartPlus extends BvComponent {}
+export declare class BIconCartPlusFill extends BvComponent {}
+
+export declare class BIconCartX extends BvComponent {}
+
+export declare class BIconCartXFill extends BvComponent {}
+
export declare class BIconCash extends BvComponent {}
export declare class BIconCashStack extends BvComponent {}
@@ -724,6 +776,8 @@ export declare class BIconClipboardMinus extends BvComponent {}
export declare class BIconClipboardPlus extends BvComponent {}
+export declare class BIconClipboardX extends BvComponent {}
+
export declare class BIconClock extends BvComponent {}
export declare class BIconClockFill extends BvComponent {}
@@ -788,6 +842,8 @@ export declare class BIconCommand extends BvComponent {}
export declare class BIconCompass extends BvComponent {}
+export declare class BIconCompassFill extends BvComponent {}
+
export declare class BIconCone extends BvComponent {}
export declare class BIconConeStriped extends BvComponent {}
@@ -814,6 +870,8 @@ export declare class BIconCrop extends BvComponent {}
export declare class BIconCup extends BvComponent {}
+export declare class BIconCupFill extends BvComponent {}
+
export declare class BIconCupStraw extends BvComponent {}
export declare class BIconCursor extends BvComponent {}
@@ -1006,6 +1064,8 @@ export declare class BIconFileEarmark extends BvComponent {}
export declare class BIconFileEarmarkArrowDown extends BvComponent {}
+export declare class BIconFileEarmarkArrowDownFill extends BvComponent {}
+
export declare class BIconFileEarmarkArrowUp extends BvComponent {}
export declare class BIconFileEarmarkArrowUpFill extends BvComponent {}
@@ -1030,8 +1090,28 @@ export declare class BIconFileEarmarkDiff extends BvComponent {}
export declare class BIconFileEarmarkDiffFill extends BvComponent {}
+export declare class BIconFileEarmarkEasel extends BvComponent {}
+
+export declare class BIconFileEarmarkEaselFill extends BvComponent {}
+
export declare class BIconFileEarmarkFill extends BvComponent {}
+export declare class BIconFileEarmarkFont extends BvComponent {}
+
+export declare class BIconFileEarmarkFontFill extends BvComponent {}
+
+export declare class BIconFileEarmarkImage extends BvComponent {}
+
+export declare class BIconFileEarmarkImageFill extends BvComponent {}
+
+export declare class BIconFileEarmarkLock extends BvComponent {}
+
+export declare class BIconFileEarmarkLock2 extends BvComponent {}
+
+export declare class BIconFileEarmarkLock2Fill extends BvComponent {}
+
+export declare class BIconFileEarmarkLockFill extends BvComponent {}
+
export declare class BIconFileEarmarkMedical extends BvComponent {}
export declare class BIconFileEarmarkMedicalFill extends BvComponent {}
@@ -1040,14 +1120,38 @@ export declare class BIconFileEarmarkMinus extends BvComponent {}
export declare class BIconFileEarmarkMinusFill extends BvComponent {}
+export declare class BIconFileEarmarkMusic extends BvComponent {}
+
+export declare class BIconFileEarmarkMusicFill extends BvComponent {}
+
+export declare class BIconFileEarmarkPerson extends BvComponent {}
+
+export declare class BIconFileEarmarkPersonFill extends BvComponent {}
+
+export declare class BIconFileEarmarkPlay extends BvComponent {}
+
+export declare class BIconFileEarmarkPlayFill extends BvComponent {}
+
export declare class BIconFileEarmarkPlus extends BvComponent {}
export declare class BIconFileEarmarkPlusFill extends BvComponent {}
+export declare class BIconFileEarmarkPost extends BvComponent {}
+
+export declare class BIconFileEarmarkPostFill extends BvComponent {}
+
+export declare class BIconFileEarmarkRichtext extends BvComponent {}
+
+export declare class BIconFileEarmarkRichtextFill extends BvComponent {}
+
export declare class BIconFileEarmarkRuled extends BvComponent {}
export declare class BIconFileEarmarkRuledFill extends BvComponent {}
+export declare class BIconFileEarmarkSlides extends BvComponent {}
+
+export declare class BIconFileEarmarkSlidesFill extends BvComponent {}
+
export declare class BIconFileEarmarkSpreadsheet extends BvComponent {}
export declare class BIconFileEarmarkSpreadsheetFill extends BvComponent {}
@@ -1056,12 +1160,36 @@ export declare class BIconFileEarmarkText extends BvComponent {}
export declare class BIconFileEarmarkTextFill extends BvComponent {}
+export declare class BIconFileEarmarkX extends BvComponent {}
+
+export declare class BIconFileEarmarkXFill extends BvComponent {}
+
export declare class BIconFileEarmarkZip extends BvComponent {}
export declare class BIconFileEarmarkZipFill extends BvComponent {}
+export declare class BIconFileEasel extends BvComponent {}
+
+export declare class BIconFileEaselFill extends BvComponent {}
+
export declare class BIconFileFill extends BvComponent {}
+export declare class BIconFileFont extends BvComponent {}
+
+export declare class BIconFileFontFill extends BvComponent {}
+
+export declare class BIconFileImage extends BvComponent {}
+
+export declare class BIconFileImageFill extends BvComponent {}
+
+export declare class BIconFileLock extends BvComponent {}
+
+export declare class BIconFileLock2 extends BvComponent {}
+
+export declare class BIconFileLock2Fill extends BvComponent {}
+
+export declare class BIconFileLockFill extends BvComponent {}
+
export declare class BIconFileMedical extends BvComponent {}
export declare class BIconFileMedicalFill extends BvComponent {}
@@ -1078,6 +1206,10 @@ export declare class BIconFilePerson extends BvComponent {}
export declare class BIconFilePersonFill extends BvComponent {}
+export declare class BIconFilePlay extends BvComponent {}
+
+export declare class BIconFilePlayFill extends BvComponent {}
+
export declare class BIconFilePlus extends BvComponent {}
export declare class BIconFilePlusFill extends BvComponent {}
@@ -1094,6 +1226,10 @@ export declare class BIconFileRuled extends BvComponent {}
export declare class BIconFileRuledFill extends BvComponent {}
+export declare class BIconFileSlides extends BvComponent {}
+
+export declare class BIconFileSlidesFill extends BvComponent {}
+
export declare class BIconFileSpreadsheet extends BvComponent {}
export declare class BIconFileSpreadsheetFill extends BvComponent {}
@@ -1102,6 +1238,10 @@ export declare class BIconFileText extends BvComponent {}
export declare class BIconFileTextFill extends BvComponent {}
+export declare class BIconFileX extends BvComponent {}
+
+export declare class BIconFileXFill extends BvComponent {}
+
export declare class BIconFileZip extends BvComponent {}
export declare class BIconFileZipFill extends BvComponent {}
@@ -1154,6 +1294,8 @@ export declare class BIconFolderSymlink extends BvComponent {}
export declare class BIconFolderSymlinkFill extends BvComponent {}
+export declare class BIconFolderX extends BvComponent {}
+
export declare class BIconFonts extends BvComponent {}
export declare class BIconForward extends BvComponent {}
@@ -1184,6 +1326,10 @@ export declare class BIconGeo extends BvComponent {}
export declare class BIconGeoAlt extends BvComponent {}
+export declare class BIconGeoAltFill extends BvComponent {}
+
+export declare class BIconGeoFill extends BvComponent {}
+
export declare class BIconGift extends BvComponent {}
export declare class BIconGiftFill extends BvComponent {}
@@ -1346,6 +1492,8 @@ export declare class BIconJournalRichtext extends BvComponent {}
export declare class BIconJournalText extends BvComponent {}
+export declare class BIconJournalX extends BvComponent {}
+
export declare class BIconJournals extends BvComponent {}
export declare class BIconJoystick extends BvComponent {}
@@ -1440,6 +1588,8 @@ export declare class BIconMailbox2 extends BvComponent {}
export declare class BIconMap extends BvComponent {}
+export declare class BIconMapFill extends BvComponent {}
+
export declare class BIconMarkdown extends BvComponent {}
export declare class BIconMarkdownFill extends BvComponent {}
@@ -1548,8 +1698,12 @@ export declare class BIconPeaceFill extends BvComponent {}
export declare class BIconPen extends BvComponent {}
+export declare class BIconPenFill extends BvComponent {}
+
export declare class BIconPencil extends BvComponent {}
+export declare class BIconPencilFill extends BvComponent {}
+
export declare class BIconPencilSquare extends BvComponent {}
export declare class BIconPentagon extends BvComponent {}
@@ -1592,6 +1746,10 @@ export declare class BIconPersonPlusFill extends BvComponent {}
export declare class BIconPersonSquare extends BvComponent {}
+export declare class BIconPersonX extends BvComponent {}
+
+export declare class BIconPersonXFill extends BvComponent {}
+
export declare class BIconPhone extends BvComponent {}
export declare class BIconPhoneFill extends BvComponent {}
@@ -1600,6 +1758,8 @@ export declare class BIconPhoneLandscape extends BvComponent {}
export declare class BIconPhoneLandscapeFill extends BvComponent {}
+export declare class BIconPhoneVibrate extends BvComponent {}
+
export declare class BIconPieChart extends BvComponent {}
export declare class BIconPieChartFill extends BvComponent {}
@@ -1614,6 +1774,8 @@ export declare class BIconPlayFill extends BvComponent {}
export declare class BIconPlug extends BvComponent {}
+export declare class BIconPlugFill extends BvComponent {}
+
export declare class BIconPlus extends BvComponent {}
export declare class BIconPlusCircle extends BvComponent {}
@@ -1678,6 +1840,8 @@ export declare class BIconRss extends BvComponent {}
export declare class BIconRssFill extends BvComponent {}
+export declare class BIconScissors extends BvComponent {}
+
export declare class BIconScrewdriver extends BvComponent {}
export declare class BIconSearch extends BvComponent {}
@@ -1706,6 +1870,8 @@ export declare class BIconShieldFillMinus extends BvComponent {}
export declare class BIconShieldFillPlus extends BvComponent {}
+export declare class BIconShieldFillX extends BvComponent {}
+
export declare class BIconShieldLock extends BvComponent {}
export declare class BIconShieldLockFill extends BvComponent {}
@@ -1720,6 +1886,8 @@ export declare class BIconShieldSlash extends BvComponent {}
export declare class BIconShieldSlashFill extends BvComponent {}
+export declare class BIconShieldX extends BvComponent {}
+
export declare class BIconShift extends BvComponent {}
export declare class BIconShiftFill extends BvComponent {}
@@ -1804,6 +1972,8 @@ export declare class BIconSoundwave extends BvComponent {}
export declare class BIconSpeaker extends BvComponent {}
+export declare class BIconSpeakerFill extends BvComponent {}
+
export declare class BIconSpellcheck extends BvComponent {}
export declare class BIconSquare extends BvComponent {}
@@ -1918,6 +2088,8 @@ export declare class BIconTextIndentRight extends BvComponent {}
export declare class BIconTextLeft extends BvComponent {}
+export declare class BIconTextParagraph extends BvComponent {}
+
export declare class BIconTextRight extends BvComponent {}
export declare class BIconTextarea extends BvComponent {}
@@ -1968,6 +2140,8 @@ export declare class BIconTriangleHalf extends BvComponent {}
export declare class BIconTrophy extends BvComponent {}
+export declare class BIconTrophyFill extends BvComponent {}
+
export declare class BIconTruck extends BvComponent {}
export declare class BIconTruckFlatbed extends BvComponent {}
@@ -1994,8 +2168,12 @@ export declare class BIconTypeUnderline extends BvComponent {}
export declare class BIconUiChecks extends BvComponent {}
+export declare class BIconUiChecksGrid extends BvComponent {}
+
export declare class BIconUiRadios extends BvComponent {}
+export declare class BIconUiRadiosGrid extends BvComponent {}
+
export declare class BIconUnion extends BvComponent {}
export declare class BIconUnlock extends BvComponent {}
@@ -2008,6 +2186,8 @@ export declare class BIconUpcScan extends BvComponent {}
export declare class BIconUpload extends BvComponent {}
+export declare class BIconVectorPen extends BvComponent {}
+
export declare class BIconViewList extends BvComponent {}
export declare class BIconViewStacked extends BvComponent {}
diff --git a/src/icons/icons.js b/src/icons/icons.js
index 61d069cd5ea..5fc5c39a6fd 100644
--- a/src/icons/icons.js
+++ b/src/icons/icons.js
@@ -1,12 +1,12 @@
// --- BEGIN AUTO-GENERATED FILE ---
//
-// @IconsVersion: 1.0.0-alpha5
-// @Generated: 2020-07-15T16:57:43.043Z
+// @IconsVersion: 1.0.0
+// @Generated: 2020-09-03T14:07:12.302Z
//
// This file is generated on each build. Do not edit this file!
/*!
- * BootstrapVue Icons, generated from Bootstrap Icons 1.0.0-alpha5
+ * BootstrapVue Icons, generated from Bootstrap Icons 1.0.0
*
* @link https://icons.getbootstrap.com/
* @license MIT
@@ -24,13 +24,13 @@ export const BIconBlank = /*#__PURE__*/ makeIcon('Blank', '')
// eslint-disable-next-line
export const BIconAlarm = /*#__PURE__*/ makeIcon(
'Alarm',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconAlarmFill = /*#__PURE__*/ makeIcon(
'AlarmFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -90,403 +90,403 @@ export const BIconAppIndicator = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconArchive = /*#__PURE__*/ makeIcon(
'Archive',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArchiveFill = /*#__PURE__*/ makeIcon(
'ArchiveFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrow90degDown = /*#__PURE__*/ makeIcon(
'Arrow90degDown',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrow90degLeft = /*#__PURE__*/ makeIcon(
'Arrow90degLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrow90degRight = /*#__PURE__*/ makeIcon(
'Arrow90degRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrow90degUp = /*#__PURE__*/ makeIcon(
'Arrow90degUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowBarDown = /*#__PURE__*/ makeIcon(
'ArrowBarDown',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowBarLeft = /*#__PURE__*/ makeIcon(
'ArrowBarLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowBarRight = /*#__PURE__*/ makeIcon(
'ArrowBarRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowBarUp = /*#__PURE__*/ makeIcon(
'ArrowBarUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowClockwise = /*#__PURE__*/ makeIcon(
'ArrowClockwise',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowCounterclockwise = /*#__PURE__*/ makeIcon(
'ArrowCounterclockwise',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDown = /*#__PURE__*/ makeIcon(
'ArrowDown',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownCircle = /*#__PURE__*/ makeIcon(
'ArrowDownCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownCircleFill = /*#__PURE__*/ makeIcon(
'ArrowDownCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownLeft = /*#__PURE__*/ makeIcon(
'ArrowDownLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownLeftCircle = /*#__PURE__*/ makeIcon(
'ArrowDownLeftCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownLeftCircleFill = /*#__PURE__*/ makeIcon(
'ArrowDownLeftCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownLeftSquare = /*#__PURE__*/ makeIcon(
'ArrowDownLeftSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownLeftSquareFill = /*#__PURE__*/ makeIcon(
'ArrowDownLeftSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownRight = /*#__PURE__*/ makeIcon(
'ArrowDownRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownRightCircle = /*#__PURE__*/ makeIcon(
'ArrowDownRightCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownRightCircleFill = /*#__PURE__*/ makeIcon(
'ArrowDownRightCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownRightSquare = /*#__PURE__*/ makeIcon(
'ArrowDownRightSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownRightSquareFill = /*#__PURE__*/ makeIcon(
'ArrowDownRightSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownShort = /*#__PURE__*/ makeIcon(
'ArrowDownShort',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownSquare = /*#__PURE__*/ makeIcon(
'ArrowDownSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownSquareFill = /*#__PURE__*/ makeIcon(
'ArrowDownSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowDownUp = /*#__PURE__*/ makeIcon(
'ArrowDownUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowLeft = /*#__PURE__*/ makeIcon(
'ArrowLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowLeftCircle = /*#__PURE__*/ makeIcon(
'ArrowLeftCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowLeftCircleFill = /*#__PURE__*/ makeIcon(
'ArrowLeftCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowLeftRight = /*#__PURE__*/ makeIcon(
'ArrowLeftRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowLeftShort = /*#__PURE__*/ makeIcon(
'ArrowLeftShort',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowLeftSquare = /*#__PURE__*/ makeIcon(
'ArrowLeftSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowLeftSquareFill = /*#__PURE__*/ makeIcon(
'ArrowLeftSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowRepeat = /*#__PURE__*/ makeIcon(
'ArrowRepeat',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowReturnLeft = /*#__PURE__*/ makeIcon(
'ArrowReturnLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowReturnRight = /*#__PURE__*/ makeIcon(
'ArrowReturnRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowRight = /*#__PURE__*/ makeIcon(
'ArrowRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowRightCircle = /*#__PURE__*/ makeIcon(
'ArrowRightCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowRightCircleFill = /*#__PURE__*/ makeIcon(
'ArrowRightCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowRightShort = /*#__PURE__*/ makeIcon(
'ArrowRightShort',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowRightSquare = /*#__PURE__*/ makeIcon(
'ArrowRightSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowRightSquareFill = /*#__PURE__*/ makeIcon(
'ArrowRightSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUp = /*#__PURE__*/ makeIcon(
'ArrowUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpCircle = /*#__PURE__*/ makeIcon(
'ArrowUpCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpCircleFill = /*#__PURE__*/ makeIcon(
'ArrowUpCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpLeft = /*#__PURE__*/ makeIcon(
'ArrowUpLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpLeftCircle = /*#__PURE__*/ makeIcon(
'ArrowUpLeftCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpLeftCircleFill = /*#__PURE__*/ makeIcon(
'ArrowUpLeftCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpLeftSquare = /*#__PURE__*/ makeIcon(
'ArrowUpLeftSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpLeftSquareFill = /*#__PURE__*/ makeIcon(
'ArrowUpLeftSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpRight = /*#__PURE__*/ makeIcon(
'ArrowUpRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpRightCircle = /*#__PURE__*/ makeIcon(
'ArrowUpRightCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpRightCircleFill = /*#__PURE__*/ makeIcon(
'ArrowUpRightCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpRightSquare = /*#__PURE__*/ makeIcon(
'ArrowUpRightSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpRightSquareFill = /*#__PURE__*/ makeIcon(
'ArrowUpRightSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpShort = /*#__PURE__*/ makeIcon(
'ArrowUpShort',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpSquare = /*#__PURE__*/ makeIcon(
'ArrowUpSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowUpSquareFill = /*#__PURE__*/ makeIcon(
'ArrowUpSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowsAngleContract = /*#__PURE__*/ makeIcon(
'ArrowsAngleContract',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowsAngleExpand = /*#__PURE__*/ makeIcon(
'ArrowsAngleExpand',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowsCollapse = /*#__PURE__*/ makeIcon(
'ArrowsCollapse',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowsExpand = /*#__PURE__*/ makeIcon(
'ArrowsExpand',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowsFullscreen = /*#__PURE__*/ makeIcon(
'ArrowsFullscreen',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconArrowsMove = /*#__PURE__*/ makeIcon(
'ArrowsMove',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -534,7 +534,7 @@ export const BIconBack = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBackspace = /*#__PURE__*/ makeIcon(
'Backspace',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -546,7 +546,7 @@ export const BIconBackspaceFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBackspaceReverse = /*#__PURE__*/ makeIcon(
'BackspaceReverse',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -579,6 +579,18 @@ export const BIconBadge8kFill = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconBadgeAd = /*#__PURE__*/ makeIcon(
+ 'BadgeAd',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBadgeAdFill = /*#__PURE__*/ makeIcon(
+ 'BadgeAdFill',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconBadgeCc = /*#__PURE__*/ makeIcon(
'BadgeCc',
@@ -630,31 +642,61 @@ export const BIconBadgeVoFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBag = /*#__PURE__*/ makeIcon(
'Bag',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBagCheck = /*#__PURE__*/ makeIcon(
'BagCheck',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBagCheckFill = /*#__PURE__*/ makeIcon(
+ 'BagCheckFill',
+ ' '
)
// eslint-disable-next-line
export const BIconBagDash = /*#__PURE__*/ makeIcon(
'BagDash',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBagDashFill = /*#__PURE__*/ makeIcon(
+ 'BagDashFill',
+ ' '
)
// eslint-disable-next-line
export const BIconBagFill = /*#__PURE__*/ makeIcon(
'BagFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBagPlus = /*#__PURE__*/ makeIcon(
'BagPlus',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBagPlusFill = /*#__PURE__*/ makeIcon(
+ 'BagPlusFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBagX = /*#__PURE__*/ makeIcon(
+ 'BagX',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBagXFill = /*#__PURE__*/ makeIcon(
+ 'BagXFill',
+ ' '
)
// eslint-disable-next-line
@@ -672,13 +714,13 @@ export const BIconBarChartFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBarChartLine = /*#__PURE__*/ makeIcon(
'BarChartLine',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBarChartLineFill = /*#__PURE__*/ makeIcon(
'BarChartLineFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -690,37 +732,37 @@ export const BIconBarChartSteps = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBasket = /*#__PURE__*/ makeIcon(
'Basket',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBasket2 = /*#__PURE__*/ makeIcon(
'Basket2',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBasket2Fill = /*#__PURE__*/ makeIcon(
'Basket2Fill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBasket3 = /*#__PURE__*/ makeIcon(
'Basket3',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBasket3Fill = /*#__PURE__*/ makeIcon(
'Basket3Fill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBasketFill = /*#__PURE__*/ makeIcon(
'BasketFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -768,13 +810,13 @@ export const BIconBezier = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBezier2 = /*#__PURE__*/ makeIcon(
'Bezier2',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBicycle = /*#__PURE__*/ makeIcon(
'Bicycle',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -804,61 +846,115 @@ export const BIconBlockquoteRight = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBook = /*#__PURE__*/ makeIcon(
'Book',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBookFill = /*#__PURE__*/ makeIcon(
'BookFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBookHalf = /*#__PURE__*/ makeIcon(
'BookHalf',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBookmark = /*#__PURE__*/ makeIcon(
'Bookmark',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBookmarkCheck = /*#__PURE__*/ makeIcon(
'BookmarkCheck',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkCheckFill = /*#__PURE__*/ makeIcon(
+ 'BookmarkCheckFill',
+ ' '
)
// eslint-disable-next-line
export const BIconBookmarkDash = /*#__PURE__*/ makeIcon(
'BookmarkDash',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkDashFill = /*#__PURE__*/ makeIcon(
+ 'BookmarkDashFill',
+ ' '
)
// eslint-disable-next-line
export const BIconBookmarkFill = /*#__PURE__*/ makeIcon(
'BookmarkFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkHeart = /*#__PURE__*/ makeIcon(
+ 'BookmarkHeart',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkHeartFill = /*#__PURE__*/ makeIcon(
+ 'BookmarkHeartFill',
+ ' '
)
// eslint-disable-next-line
export const BIconBookmarkPlus = /*#__PURE__*/ makeIcon(
'BookmarkPlus',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkPlusFill = /*#__PURE__*/ makeIcon(
+ 'BookmarkPlusFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkStar = /*#__PURE__*/ makeIcon(
+ 'BookmarkStar',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkStarFill = /*#__PURE__*/ makeIcon(
+ 'BookmarkStarFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkX = /*#__PURE__*/ makeIcon(
+ 'BookmarkX',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBookmarkXFill = /*#__PURE__*/ makeIcon(
+ 'BookmarkXFill',
+ ' '
)
// eslint-disable-next-line
export const BIconBookmarks = /*#__PURE__*/ makeIcon(
'Bookmarks',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBookmarksFill = /*#__PURE__*/ makeIcon(
'BookmarksFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -906,7 +1002,7 @@ export const BIconBoundingBox = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBoundingBoxCircles = /*#__PURE__*/ makeIcon(
'BoundingBoxCircles',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -918,97 +1014,97 @@ export const BIconBox = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBoxArrowDown = /*#__PURE__*/ makeIcon(
'BoxArrowDown',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowDownLeft = /*#__PURE__*/ makeIcon(
'BoxArrowDownLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowDownRight = /*#__PURE__*/ makeIcon(
'BoxArrowDownRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowInDown = /*#__PURE__*/ makeIcon(
'BoxArrowInDown',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowInDownLeft = /*#__PURE__*/ makeIcon(
'BoxArrowInDownLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowInDownRight = /*#__PURE__*/ makeIcon(
'BoxArrowInDownRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowInLeft = /*#__PURE__*/ makeIcon(
'BoxArrowInLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowInRight = /*#__PURE__*/ makeIcon(
'BoxArrowInRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowInUp = /*#__PURE__*/ makeIcon(
'BoxArrowInUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowInUpLeft = /*#__PURE__*/ makeIcon(
'BoxArrowInUpLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowInUpRight = /*#__PURE__*/ makeIcon(
'BoxArrowInUpRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowLeft = /*#__PURE__*/ makeIcon(
'BoxArrowLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowRight = /*#__PURE__*/ makeIcon(
'BoxArrowRight',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowUp = /*#__PURE__*/ makeIcon(
'BoxArrowUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowUpLeft = /*#__PURE__*/ makeIcon(
'BoxArrowUpLeft',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBoxArrowUpRight = /*#__PURE__*/ makeIcon(
'BoxArrowUpRight',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -1026,7 +1122,7 @@ export const BIconBraces = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBricks = /*#__PURE__*/ makeIcon(
'Bricks',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -1098,25 +1194,31 @@ export const BIconBroadcast = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconBroadcastPin = /*#__PURE__*/ makeIcon(
'BroadcastPin',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBrush = /*#__PURE__*/ makeIcon(
'Brush',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconBrushFill = /*#__PURE__*/ makeIcon(
+ 'BrushFill',
+ ' '
)
// eslint-disable-next-line
export const BIconBucket = /*#__PURE__*/ makeIcon(
'Bucket',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconBucketFill = /*#__PURE__*/ makeIcon(
'BucketFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -1146,139 +1248,151 @@ export const BIconBullseye = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCalculator = /*#__PURE__*/ makeIcon(
'Calculator',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalculatorFill = /*#__PURE__*/ makeIcon(
'CalculatorFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar = /*#__PURE__*/ makeIcon(
'Calendar',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2 = /*#__PURE__*/ makeIcon(
'Calendar2',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Check = /*#__PURE__*/ makeIcon(
'Calendar2Check',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2CheckFill = /*#__PURE__*/ makeIcon(
'Calendar2CheckFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Date = /*#__PURE__*/ makeIcon(
'Calendar2Date',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2DateFill = /*#__PURE__*/ makeIcon(
'Calendar2DateFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Day = /*#__PURE__*/ makeIcon(
'Calendar2Day',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2DayFill = /*#__PURE__*/ makeIcon(
'Calendar2DayFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Event = /*#__PURE__*/ makeIcon(
'Calendar2Event',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2EventFill = /*#__PURE__*/ makeIcon(
'Calendar2EventFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Fill = /*#__PURE__*/ makeIcon(
'Calendar2Fill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Minus = /*#__PURE__*/ makeIcon(
'Calendar2Minus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2MinusFill = /*#__PURE__*/ makeIcon(
'Calendar2MinusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Month = /*#__PURE__*/ makeIcon(
'Calendar2Month',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2MonthFill = /*#__PURE__*/ makeIcon(
'Calendar2MonthFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Plus = /*#__PURE__*/ makeIcon(
'Calendar2Plus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2PlusFill = /*#__PURE__*/ makeIcon(
'Calendar2PlusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Range = /*#__PURE__*/ makeIcon(
'Calendar2Range',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2RangeFill = /*#__PURE__*/ makeIcon(
'Calendar2RangeFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2Week = /*#__PURE__*/ makeIcon(
'Calendar2Week',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar2WeekFill = /*#__PURE__*/ makeIcon(
'Calendar2WeekFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCalendar2X = /*#__PURE__*/ makeIcon(
+ 'Calendar2X',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCalendar2XFill = /*#__PURE__*/ makeIcon(
+ 'Calendar2XFill',
+ ' '
)
// eslint-disable-next-line
@@ -1302,7 +1416,7 @@ export const BIconCalendar3EventFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCalendar3Fill = /*#__PURE__*/ makeIcon(
'Calendar3Fill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -1314,7 +1428,7 @@ export const BIconCalendar3Range = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCalendar3RangeFill = /*#__PURE__*/ makeIcon(
'Calendar3RangeFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -1332,139 +1446,151 @@ export const BIconCalendar3WeekFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCalendar4 = /*#__PURE__*/ makeIcon(
'Calendar4',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar4Event = /*#__PURE__*/ makeIcon(
'Calendar4Event',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar4Range = /*#__PURE__*/ makeIcon(
'Calendar4Range',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendar4Week = /*#__PURE__*/ makeIcon(
'Calendar4Week',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarCheck = /*#__PURE__*/ makeIcon(
'CalendarCheck',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarCheckFill = /*#__PURE__*/ makeIcon(
'CalendarCheckFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarDate = /*#__PURE__*/ makeIcon(
'CalendarDate',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarDateFill = /*#__PURE__*/ makeIcon(
'CalendarDateFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarDay = /*#__PURE__*/ makeIcon(
'CalendarDay',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarDayFill = /*#__PURE__*/ makeIcon(
'CalendarDayFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarEvent = /*#__PURE__*/ makeIcon(
'CalendarEvent',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarEventFill = /*#__PURE__*/ makeIcon(
'CalendarEventFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarFill = /*#__PURE__*/ makeIcon(
'CalendarFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarMinus = /*#__PURE__*/ makeIcon(
'CalendarMinus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarMinusFill = /*#__PURE__*/ makeIcon(
'CalendarMinusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarMonth = /*#__PURE__*/ makeIcon(
'CalendarMonth',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarMonthFill = /*#__PURE__*/ makeIcon(
'CalendarMonthFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarPlus = /*#__PURE__*/ makeIcon(
'CalendarPlus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarPlusFill = /*#__PURE__*/ makeIcon(
'CalendarPlusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarRange = /*#__PURE__*/ makeIcon(
'CalendarRange',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarRangeFill = /*#__PURE__*/ makeIcon(
'CalendarRangeFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarWeek = /*#__PURE__*/ makeIcon(
'CalendarWeek',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCalendarWeekFill = /*#__PURE__*/ makeIcon(
'CalendarWeekFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCalendarX = /*#__PURE__*/ makeIcon(
+ 'CalendarX',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCalendarXFill = /*#__PURE__*/ makeIcon(
+ 'CalendarXFill',
+ ' '
)
// eslint-disable-next-line
@@ -1488,37 +1614,37 @@ export const BIconCameraFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCameraReels = /*#__PURE__*/ makeIcon(
'CameraReels',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCameraReelsFill = /*#__PURE__*/ makeIcon(
'CameraReelsFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCameraVideo = /*#__PURE__*/ makeIcon(
'CameraVideo',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCameraVideoFill = /*#__PURE__*/ makeIcon(
'CameraVideoFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCameraVideoOff = /*#__PURE__*/ makeIcon(
'CameraVideoOff',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCameraVideoOffFill = /*#__PURE__*/ makeIcon(
'CameraVideoOffFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -1548,7 +1674,7 @@ export const BIconCardHeading = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCardImage = /*#__PURE__*/ makeIcon(
'CardImage',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -1686,13 +1812,25 @@ export const BIconCart4 = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCartCheck = /*#__PURE__*/ makeIcon(
'CartCheck',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCartCheckFill = /*#__PURE__*/ makeIcon(
+ 'CartCheckFill',
+ ' '
)
// eslint-disable-next-line
export const BIconCartDash = /*#__PURE__*/ makeIcon(
'CartDash',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCartDashFill = /*#__PURE__*/ makeIcon(
+ 'CartDashFill',
+ ' '
)
// eslint-disable-next-line
@@ -1704,7 +1842,25 @@ export const BIconCartFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCartPlus = /*#__PURE__*/ makeIcon(
'CartPlus',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCartPlusFill = /*#__PURE__*/ makeIcon(
+ 'CartPlusFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCartX = /*#__PURE__*/ makeIcon(
+ 'CartX',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCartXFill = /*#__PURE__*/ makeIcon(
+ 'CartXFill',
+ ' '
)
// eslint-disable-next-line
@@ -2151,6 +2307,12 @@ export const BIconClipboardPlus = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconClipboardX = /*#__PURE__*/ makeIcon(
+ 'ClipboardX',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconClock = /*#__PURE__*/ makeIcon(
'Clock',
@@ -2334,25 +2496,31 @@ export const BIconColumnsGap = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCommand = /*#__PURE__*/ makeIcon(
'Command',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCompass = /*#__PURE__*/ makeIcon(
'Compass',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCompassFill = /*#__PURE__*/ makeIcon(
+ 'CompassFill',
+ ' '
)
// eslint-disable-next-line
export const BIconCone = /*#__PURE__*/ makeIcon(
'Cone',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconConeStriped = /*#__PURE__*/ makeIcon(
'ConeStriped',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -2412,19 +2580,25 @@ export const BIconCreditCardFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconCrop = /*#__PURE__*/ makeIcon(
'Crop',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconCup = /*#__PURE__*/ makeIcon(
'Cup',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconCupFill = /*#__PURE__*/ makeIcon(
+ 'CupFill',
+ ' '
)
// eslint-disable-next-line
export const BIconCupStraw = /*#__PURE__*/ makeIcon(
'CupStraw',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -2448,55 +2622,55 @@ export const BIconCursorText = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconDash = /*#__PURE__*/ makeIcon(
'Dash',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconDashCircle = /*#__PURE__*/ makeIcon(
'DashCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconDashCircleFill = /*#__PURE__*/ makeIcon(
'DashCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconDashSquare = /*#__PURE__*/ makeIcon(
'DashSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconDashSquareFill = /*#__PURE__*/ makeIcon(
'DashSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconDiagram2 = /*#__PURE__*/ makeIcon(
'Diagram2',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconDiagram2Fill = /*#__PURE__*/ makeIcon(
'Diagram2Fill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconDiagram3 = /*#__PURE__*/ makeIcon(
'Diagram3',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconDiagram3Fill = /*#__PURE__*/ makeIcon(
'Diagram3Fill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -2616,7 +2790,7 @@ export const BIconDistributeVertical = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconDoorClosed = /*#__PURE__*/ makeIcon(
'DoorClosed',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -2646,7 +2820,7 @@ export const BIconDot = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconDownload = /*#__PURE__*/ makeIcon(
'Download',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -2892,421 +3066,667 @@ export const BIconEyeSlashFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconEyeglasses = /*#__PURE__*/ makeIcon(
'Eyeglasses',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFile = /*#__PURE__*/ makeIcon(
'File',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileArrowDown = /*#__PURE__*/ makeIcon(
'FileArrowDown',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileArrowDownFill = /*#__PURE__*/ makeIcon(
'FileArrowDownFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileArrowUp = /*#__PURE__*/ makeIcon(
'FileArrowUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileArrowUpFill = /*#__PURE__*/ makeIcon(
'FileArrowUpFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileBinary = /*#__PURE__*/ makeIcon(
'FileBinary',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileBinaryFill = /*#__PURE__*/ makeIcon(
'FileBinaryFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileBreak = /*#__PURE__*/ makeIcon(
'FileBreak',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileBreakFill = /*#__PURE__*/ makeIcon(
'FileBreakFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileCheck = /*#__PURE__*/ makeIcon(
'FileCheck',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileCheckFill = /*#__PURE__*/ makeIcon(
'FileCheckFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileCode = /*#__PURE__*/ makeIcon(
'FileCode',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileCodeFill = /*#__PURE__*/ makeIcon(
'FileCodeFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileDiff = /*#__PURE__*/ makeIcon(
'FileDiff',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileDiffFill = /*#__PURE__*/ makeIcon(
'FileDiffFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmark = /*#__PURE__*/ makeIcon(
'FileEarmark',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkArrowDown = /*#__PURE__*/ makeIcon(
'FileEarmarkArrowDown',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkArrowDownFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkArrowDownFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkArrowUp = /*#__PURE__*/ makeIcon(
'FileEarmarkArrowUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkArrowUpFill = /*#__PURE__*/ makeIcon(
'FileEarmarkArrowUpFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkBinary = /*#__PURE__*/ makeIcon(
'FileEarmarkBinary',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkBinaryFill = /*#__PURE__*/ makeIcon(
'FileEarmarkBinaryFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkBreak = /*#__PURE__*/ makeIcon(
'FileEarmarkBreak',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkBreakFill = /*#__PURE__*/ makeIcon(
'FileEarmarkBreakFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkCheck = /*#__PURE__*/ makeIcon(
'FileEarmarkCheck',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkCheckFill = /*#__PURE__*/ makeIcon(
'FileEarmarkCheckFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkCode = /*#__PURE__*/ makeIcon(
'FileEarmarkCode',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkCodeFill = /*#__PURE__*/ makeIcon(
'FileEarmarkCodeFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkDiff = /*#__PURE__*/ makeIcon(
'FileEarmarkDiff',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkDiffFill = /*#__PURE__*/ makeIcon(
'FileEarmarkDiffFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkEasel = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkEasel',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkEaselFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkEaselFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkFill = /*#__PURE__*/ makeIcon(
'FileEarmarkFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkFont = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkFont',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkFontFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkFontFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkImage = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkImage',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkImageFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkImageFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkLock = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkLock',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkLock2 = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkLock2',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkLock2Fill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkLock2Fill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkLockFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkLockFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkMedical = /*#__PURE__*/ makeIcon(
'FileEarmarkMedical',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkMedicalFill = /*#__PURE__*/ makeIcon(
'FileEarmarkMedicalFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkMinus = /*#__PURE__*/ makeIcon(
'FileEarmarkMinus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkMinusFill = /*#__PURE__*/ makeIcon(
'FileEarmarkMinusFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkMusic = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkMusic',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkMusicFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkMusicFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkPerson = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkPerson',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkPersonFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkPersonFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkPlay = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkPlay',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkPlayFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkPlayFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkPlus = /*#__PURE__*/ makeIcon(
'FileEarmarkPlus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkPlusFill = /*#__PURE__*/ makeIcon(
'FileEarmarkPlusFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkPost = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkPost',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkPostFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkPostFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkRichtext = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkRichtext',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkRichtextFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkRichtextFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkRuled = /*#__PURE__*/ makeIcon(
'FileEarmarkRuled',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkRuledFill = /*#__PURE__*/ makeIcon(
'FileEarmarkRuledFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkSlides = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkSlides',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkSlidesFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkSlidesFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkSpreadsheet = /*#__PURE__*/ makeIcon(
'FileEarmarkSpreadsheet',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkSpreadsheetFill = /*#__PURE__*/ makeIcon(
'FileEarmarkSpreadsheetFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkText = /*#__PURE__*/ makeIcon(
'FileEarmarkText',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkTextFill = /*#__PURE__*/ makeIcon(
'FileEarmarkTextFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkX = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkX',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEarmarkXFill = /*#__PURE__*/ makeIcon(
+ 'FileEarmarkXFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkZip = /*#__PURE__*/ makeIcon(
'FileEarmarkZip',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileEarmarkZipFill = /*#__PURE__*/ makeIcon(
'FileEarmarkZipFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEasel = /*#__PURE__*/ makeIcon(
+ 'FileEasel',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileEaselFill = /*#__PURE__*/ makeIcon(
+ 'FileEaselFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileFill = /*#__PURE__*/ makeIcon(
'FileFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileFont = /*#__PURE__*/ makeIcon(
+ 'FileFont',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileFontFill = /*#__PURE__*/ makeIcon(
+ 'FileFontFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileImage = /*#__PURE__*/ makeIcon(
+ 'FileImage',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileImageFill = /*#__PURE__*/ makeIcon(
+ 'FileImageFill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileLock = /*#__PURE__*/ makeIcon(
+ 'FileLock',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileLock2 = /*#__PURE__*/ makeIcon(
+ 'FileLock2',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileLock2Fill = /*#__PURE__*/ makeIcon(
+ 'FileLock2Fill',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileLockFill = /*#__PURE__*/ makeIcon(
+ 'FileLockFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileMedical = /*#__PURE__*/ makeIcon(
'FileMedical',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileMedicalFill = /*#__PURE__*/ makeIcon(
'FileMedicalFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileMinus = /*#__PURE__*/ makeIcon(
'FileMinus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileMinusFill = /*#__PURE__*/ makeIcon(
'FileMinusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileMusic = /*#__PURE__*/ makeIcon(
'FileMusic',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileMusicFill = /*#__PURE__*/ makeIcon(
'FileMusicFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFilePerson = /*#__PURE__*/ makeIcon(
'FilePerson',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFilePersonFill = /*#__PURE__*/ makeIcon(
'FilePersonFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFilePlay = /*#__PURE__*/ makeIcon(
+ 'FilePlay',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFilePlayFill = /*#__PURE__*/ makeIcon(
+ 'FilePlayFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFilePlus = /*#__PURE__*/ makeIcon(
'FilePlus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFilePlusFill = /*#__PURE__*/ makeIcon(
'FilePlusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFilePost = /*#__PURE__*/ makeIcon(
'FilePost',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFilePostFill = /*#__PURE__*/ makeIcon(
'FilePostFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileRichtext = /*#__PURE__*/ makeIcon(
'FileRichtext',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileRichtextFill = /*#__PURE__*/ makeIcon(
'FileRichtextFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileRuled = /*#__PURE__*/ makeIcon(
'FileRuled',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileRuledFill = /*#__PURE__*/ makeIcon(
'FileRuledFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileSlides = /*#__PURE__*/ makeIcon(
+ 'FileSlides',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileSlidesFill = /*#__PURE__*/ makeIcon(
+ 'FileSlidesFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileSpreadsheet = /*#__PURE__*/ makeIcon(
'FileSpreadsheet',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileSpreadsheetFill = /*#__PURE__*/ makeIcon(
'FileSpreadsheetFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileText = /*#__PURE__*/ makeIcon(
'FileText',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileTextFill = /*#__PURE__*/ makeIcon(
'FileTextFill',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileX = /*#__PURE__*/ makeIcon(
+ 'FileX',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconFileXFill = /*#__PURE__*/ makeIcon(
+ 'FileXFill',
+ ' '
)
// eslint-disable-next-line
export const BIconFileZip = /*#__PURE__*/ makeIcon(
'FileZip',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFileZipFill = /*#__PURE__*/ makeIcon(
'FileZipFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFiles = /*#__PURE__*/ makeIcon(
'Files',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFilesAlt = /*#__PURE__*/ makeIcon(
'FilesAlt',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3360,13 +3780,13 @@ export const BIconFilterSquareFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconFlag = /*#__PURE__*/ makeIcon(
'Flag',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconFlagFill = /*#__PURE__*/ makeIcon(
'FlagFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3426,7 +3846,7 @@ export const BIconFolderMinus = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconFolderPlus = /*#__PURE__*/ makeIcon(
'FolderPlus',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3441,6 +3861,12 @@ export const BIconFolderSymlinkFill = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconFolderX = /*#__PURE__*/ makeIcon(
+ 'FolderX',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconFonts = /*#__PURE__*/ makeIcon(
'Fonts',
@@ -3522,15 +3948,27 @@ export const BIconGem = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconGeo = /*#__PURE__*/ makeIcon(
'Geo',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconGeoAlt = /*#__PURE__*/ makeIcon(
'GeoAlt',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconGeoAltFill = /*#__PURE__*/ makeIcon(
+ 'GeoAltFill',
' '
)
+// eslint-disable-next-line
+export const BIconGeoFill = /*#__PURE__*/ makeIcon(
+ 'GeoFill',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconGift = /*#__PURE__*/ makeIcon(
'Gift',
@@ -3546,25 +3984,25 @@ export const BIconGiftFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconGlobe = /*#__PURE__*/ makeIcon(
'Globe',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconGlobe2 = /*#__PURE__*/ makeIcon(
'Globe2',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconGraphDown = /*#__PURE__*/ makeIcon(
'GraphDown',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconGraphUp = /*#__PURE__*/ makeIcon(
'GraphUp',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3672,13 +4110,13 @@ export const BIconHandThumbsUp = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconHandbag = /*#__PURE__*/ makeIcon(
'Handbag',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconHandbagFill = /*#__PURE__*/ makeIcon(
'HandbagFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3858,7 +4296,7 @@ export const BIconHr = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconImage = /*#__PURE__*/ makeIcon(
'Image',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3876,31 +4314,31 @@ export const BIconImageFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconImages = /*#__PURE__*/ makeIcon(
'Images',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconInbox = /*#__PURE__*/ makeIcon(
'Inbox',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconInboxFill = /*#__PURE__*/ makeIcon(
'InboxFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconInboxes = /*#__PURE__*/ makeIcon(
'Inboxes',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconInboxesFill = /*#__PURE__*/ makeIcon(
'InboxesFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3924,7 +4362,7 @@ export const BIconInfoCircleFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconInfoSquare = /*#__PURE__*/ makeIcon(
'InfoSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3942,7 +4380,7 @@ export const BIconInputCursor = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconInputCursorText = /*#__PURE__*/ makeIcon(
'InputCursorText',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -3954,67 +4392,73 @@ export const BIconIntersect = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconJournal = /*#__PURE__*/ makeIcon(
'Journal',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalAlbum = /*#__PURE__*/ makeIcon(
'JournalAlbum',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalArrowDown = /*#__PURE__*/ makeIcon(
'JournalArrowDown',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalArrowUp = /*#__PURE__*/ makeIcon(
'JournalArrowUp',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalCheck = /*#__PURE__*/ makeIcon(
'JournalCheck',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalCode = /*#__PURE__*/ makeIcon(
'JournalCode',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalMedical = /*#__PURE__*/ makeIcon(
'JournalMedical',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalMinus = /*#__PURE__*/ makeIcon(
'JournalMinus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalPlus = /*#__PURE__*/ makeIcon(
'JournalPlus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalRichtext = /*#__PURE__*/ makeIcon(
'JournalRichtext',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconJournalText = /*#__PURE__*/ makeIcon(
'JournalText',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconJournalX = /*#__PURE__*/ makeIcon(
+ 'JournalX',
+ ' '
)
// eslint-disable-next-line
@@ -4122,7 +4566,7 @@ export const BIconLayers = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconLayersFill = /*#__PURE__*/ makeIcon(
'LayersFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4200,7 +4644,7 @@ export const BIconLayoutWtf = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconLifePreserver = /*#__PURE__*/ makeIcon(
'LifePreserver',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4224,7 +4668,7 @@ export const BIconLink = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconLink45deg = /*#__PURE__*/ makeIcon(
'Link45deg',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4296,7 +4740,13 @@ export const BIconMailbox2 = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconMap = /*#__PURE__*/ makeIcon(
'Map',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconMapFill = /*#__PURE__*/ makeIcon(
+ 'MapFill',
+ ' '
)
// eslint-disable-next-line
@@ -4392,7 +4842,7 @@ export const BIconMinecart = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconMinecartLoaded = /*#__PURE__*/ makeIcon(
'MinecartLoaded',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4452,13 +4902,13 @@ export const BIconMusicPlayerFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconNewspaper = /*#__PURE__*/ makeIcon(
'Newspaper',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconNodeMinus = /*#__PURE__*/ makeIcon(
'NodeMinus',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4470,7 +4920,7 @@ export const BIconNodeMinusFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconNodePlus = /*#__PURE__*/ makeIcon(
'NodePlus',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4620,13 +5070,25 @@ export const BIconPeaceFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconPen = /*#__PURE__*/ makeIcon(
'Pen',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconPenFill = /*#__PURE__*/ makeIcon(
+ 'PenFill',
+ ' '
)
// eslint-disable-next-line
export const BIconPencil = /*#__PURE__*/ makeIcon(
'Pencil',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconPencilFill = /*#__PURE__*/ makeIcon(
+ 'PencilFill',
+ ' '
)
// eslint-disable-next-line
@@ -4656,7 +5118,7 @@ export const BIconPentagonHalf = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconPeople = /*#__PURE__*/ makeIcon(
'People',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4674,13 +5136,13 @@ export const BIconPercent = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconPerson = /*#__PURE__*/ makeIcon(
'Person',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconPersonBadge = /*#__PURE__*/ makeIcon(
'PersonBadge',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4698,7 +5160,7 @@ export const BIconPersonBoundingBox = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconPersonCheck = /*#__PURE__*/ makeIcon(
'PersonCheck',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4716,7 +5178,7 @@ export const BIconPersonCircle = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconPersonDash = /*#__PURE__*/ makeIcon(
'PersonDash',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4740,13 +5202,13 @@ export const BIconPersonLinesFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconPersonPlus = /*#__PURE__*/ makeIcon(
'PersonPlus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconPersonPlusFill = /*#__PURE__*/ makeIcon(
'PersonPlusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4755,6 +5217,18 @@ export const BIconPersonSquare = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconPersonX = /*#__PURE__*/ makeIcon(
+ 'PersonX',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconPersonXFill = /*#__PURE__*/ makeIcon(
+ 'PersonXFill',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconPhone = /*#__PURE__*/ makeIcon(
'Phone',
@@ -4779,6 +5253,12 @@ export const BIconPhoneLandscapeFill = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconPhoneVibrate = /*#__PURE__*/ makeIcon(
+ 'PhoneVibrate',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconPieChart = /*#__PURE__*/ makeIcon(
'PieChart',
@@ -4818,37 +5298,43 @@ export const BIconPlayFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconPlug = /*#__PURE__*/ makeIcon(
'Plug',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconPlugFill = /*#__PURE__*/ makeIcon(
+ 'PlugFill',
+ ' '
)
// eslint-disable-next-line
export const BIconPlus = /*#__PURE__*/ makeIcon(
'Plus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconPlusCircle = /*#__PURE__*/ makeIcon(
'PlusCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconPlusCircleFill = /*#__PURE__*/ makeIcon(
'PlusCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconPlusSquare = /*#__PURE__*/ makeIcon(
'PlusSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconPlusSquareFill = /*#__PURE__*/ makeIcon(
'PlusSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -4884,55 +5370,55 @@ export const BIconPuzzleFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconQuestion = /*#__PURE__*/ makeIcon(
'Question',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconQuestionCircle = /*#__PURE__*/ makeIcon(
'QuestionCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconQuestionCircleFill = /*#__PURE__*/ makeIcon(
'QuestionCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconQuestionDiamond = /*#__PURE__*/ makeIcon(
'QuestionDiamond',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconQuestionDiamondFill = /*#__PURE__*/ makeIcon(
'QuestionDiamondFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconQuestionOctagon = /*#__PURE__*/ makeIcon(
'QuestionOctagon',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconQuestionOctagonFill = /*#__PURE__*/ makeIcon(
'QuestionOctagonFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconQuestionSquare = /*#__PURE__*/ makeIcon(
'QuestionSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconQuestionSquareFill = /*#__PURE__*/ makeIcon(
'QuestionSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5013,6 +5499,12 @@ export const BIconRssFill = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconScissors = /*#__PURE__*/ makeIcon(
+ 'Scissors',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconScrewdriver = /*#__PURE__*/ makeIcon(
'Screwdriver',
@@ -5034,19 +5526,19 @@ export const BIconSegmentedNav = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconServer = /*#__PURE__*/ makeIcon(
'Server',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconShare = /*#__PURE__*/ makeIcon(
'Share',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconShareFill = /*#__PURE__*/ makeIcon(
'ShareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5097,16 +5589,22 @@ export const BIconShieldFillPlus = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconShieldFillX = /*#__PURE__*/ makeIcon(
+ 'ShieldFillX',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconShieldLock = /*#__PURE__*/ makeIcon(
'ShieldLock',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconShieldLockFill = /*#__PURE__*/ makeIcon(
'ShieldLockFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5118,7 +5616,7 @@ export const BIconShieldMinus = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconShieldPlus = /*#__PURE__*/ makeIcon(
'ShieldPlus',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5139,6 +5637,12 @@ export const BIconShieldSlashFill = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconShieldX = /*#__PURE__*/ makeIcon(
+ 'ShieldX',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconShift = /*#__PURE__*/ makeIcon(
'Shift',
@@ -5154,19 +5658,19 @@ export const BIconShiftFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconShop = /*#__PURE__*/ makeIcon(
'Shop',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconShopWindow = /*#__PURE__*/ makeIcon(
'ShopWindow',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconShuffle = /*#__PURE__*/ makeIcon(
'Shuffle',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5268,37 +5772,37 @@ export const BIconSkipStartFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconSlash = /*#__PURE__*/ makeIcon(
'Slash',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconSlashCircle = /*#__PURE__*/ makeIcon(
'SlashCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconSlashCircleFill = /*#__PURE__*/ makeIcon(
'SlashCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconSlashSquare = /*#__PURE__*/ makeIcon(
'SlashSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconSlashSquareFill = /*#__PURE__*/ makeIcon(
'SlashSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconSliders = /*#__PURE__*/ makeIcon(
'Sliders',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5388,6 +5892,12 @@ export const BIconSoundwave = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconSpeaker = /*#__PURE__*/ makeIcon(
'Speaker',
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconSpeakerFill = /*#__PURE__*/ makeIcon(
+ 'SpeakerFill',
' '
)
@@ -5484,13 +5994,13 @@ export const BIconStoplightsFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconStopwatch = /*#__PURE__*/ makeIcon(
'Stopwatch',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconStopwatchFill = /*#__PURE__*/ makeIcon(
'StopwatchFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5556,7 +6066,7 @@ export const BIconSun = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconSunglasses = /*#__PURE__*/ makeIcon(
'Sunglasses',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5616,7 +6126,7 @@ export const BIconTagsFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconTelephone = /*#__PURE__*/ makeIcon(
'Telephone',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5628,73 +6138,73 @@ export const BIconTelephoneFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconTelephoneForward = /*#__PURE__*/ makeIcon(
'TelephoneForward',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneForwardFill = /*#__PURE__*/ makeIcon(
'TelephoneForwardFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneInbound = /*#__PURE__*/ makeIcon(
'TelephoneInbound',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneInboundFill = /*#__PURE__*/ makeIcon(
'TelephoneInboundFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneMinus = /*#__PURE__*/ makeIcon(
'TelephoneMinus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneMinusFill = /*#__PURE__*/ makeIcon(
'TelephoneMinusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneOutbound = /*#__PURE__*/ makeIcon(
'TelephoneOutbound',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneOutboundFill = /*#__PURE__*/ makeIcon(
'TelephoneOutboundFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephonePlus = /*#__PURE__*/ makeIcon(
'TelephonePlus',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephonePlusFill = /*#__PURE__*/ makeIcon(
'TelephonePlusFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneX = /*#__PURE__*/ makeIcon(
'TelephoneX',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTelephoneXFill = /*#__PURE__*/ makeIcon(
'TelephoneXFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5733,6 +6243,12 @@ export const BIconTextLeft = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconTextParagraph = /*#__PURE__*/ makeIcon(
+ 'TextParagraph',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconTextRight = /*#__PURE__*/ makeIcon(
'TextRight',
@@ -5742,19 +6258,19 @@ export const BIconTextRight = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconTextarea = /*#__PURE__*/ makeIcon(
'Textarea',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTextareaResize = /*#__PURE__*/ makeIcon(
'TextareaResize',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTextareaT = /*#__PURE__*/ makeIcon(
'TextareaT',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5766,7 +6282,7 @@ export const BIconThermometer = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconThermometerHalf = /*#__PURE__*/ makeIcon(
'ThermometerHalf',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5850,13 +6366,13 @@ export const BIconTrashFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconTree = /*#__PURE__*/ makeIcon(
'Tree',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTreeFill = /*#__PURE__*/ makeIcon(
'TreeFill',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5880,19 +6396,25 @@ export const BIconTriangleHalf = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconTrophy = /*#__PURE__*/ makeIcon(
'Trophy',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconTrophyFill = /*#__PURE__*/ makeIcon(
+ 'TrophyFill',
+ ' '
)
// eslint-disable-next-line
export const BIconTruck = /*#__PURE__*/ makeIcon(
'Truck',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconTruckFlatbed = /*#__PURE__*/ makeIcon(
'TruckFlatbed',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -5961,12 +6483,24 @@ export const BIconUiChecks = /*#__PURE__*/ makeIcon(
' '
)
+// eslint-disable-next-line
+export const BIconUiChecksGrid = /*#__PURE__*/ makeIcon(
+ 'UiChecksGrid',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconUiRadios = /*#__PURE__*/ makeIcon(
'UiRadios',
' '
)
+// eslint-disable-next-line
+export const BIconUiRadiosGrid = /*#__PURE__*/ makeIcon(
+ 'UiRadiosGrid',
+ ' '
+)
+
// eslint-disable-next-line
export const BIconUnion = /*#__PURE__*/ makeIcon(
'Union',
@@ -6000,7 +6534,13 @@ export const BIconUpcScan = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconUpload = /*#__PURE__*/ makeIcon(
'Upload',
- ' '
+ ' '
+)
+
+// eslint-disable-next-line
+export const BIconVectorPen = /*#__PURE__*/ makeIcon(
+ 'VectorPen',
+ ' '
)
// eslint-disable-next-line
@@ -6018,7 +6558,7 @@ export const BIconViewStacked = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconVoicemail = /*#__PURE__*/ makeIcon(
'Voicemail',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -6078,13 +6618,13 @@ export const BIconVr = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconWallet = /*#__PURE__*/ makeIcon(
'Wallet',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconWallet2 = /*#__PURE__*/ makeIcon(
'Wallet2',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -6138,25 +6678,25 @@ export const BIconWrench = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconX = /*#__PURE__*/ makeIcon(
'X',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconXCircle = /*#__PURE__*/ makeIcon(
'XCircle',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconXCircleFill = /*#__PURE__*/ makeIcon(
'XCircleFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconXDiamond = /*#__PURE__*/ makeIcon(
'XDiamond',
- ' '
+ ' '
)
// eslint-disable-next-line
@@ -6168,25 +6708,25 @@ export const BIconXDiamondFill = /*#__PURE__*/ makeIcon(
// eslint-disable-next-line
export const BIconXOctagon = /*#__PURE__*/ makeIcon(
'XOctagon',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconXOctagonFill = /*#__PURE__*/ makeIcon(
'XOctagonFill',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconXSquare = /*#__PURE__*/ makeIcon(
'XSquare',
- ' '
+ ' '
)
// eslint-disable-next-line
export const BIconXSquareFill = /*#__PURE__*/ makeIcon(
'XSquareFill',
- ' '
+ ' '
)
// eslint-disable-next-line
diff --git a/src/icons/icons.spec.js b/src/icons/icons.spec.js
index 3992f1ca2b9..f7de877fa5f 100644
--- a/src/icons/icons.spec.js
+++ b/src/icons/icons.spec.js
@@ -502,4 +502,46 @@ describe('icons', () => {
wrapper.destroy()
})
+
+ it('b-icon title prop works', async () => {
+ const wrapper = mount(BIcon, {
+ localVue,
+ propsData: {
+ icon: 'circle-fill',
+ title: 'Circle'
+ }
+ })
+
+ expect(wrapper.exists()).toBe(true)
+ expect(wrapper.element.tagName).toBe('svg')
+ expect(wrapper.classes()).toContain('b-icon')
+ expect(wrapper.classes()).toContain('bi')
+ expect(wrapper.classes()).toContain('bi-circle-fill')
+
+ const $title = wrapper.find('title')
+ expect($title.exists()).toBe(true)
+ expect($title.text()).toBe('Circle')
+
+ wrapper.destroy()
+ })
+
+ it('b-icon should not render when title is undefined', async () => {
+ const wrapper = mount(BIcon, {
+ localVue,
+ propsData: {
+ icon: 'circle-fill'
+ }
+ })
+
+ expect(wrapper.exists()).toBe(true)
+ expect(wrapper.element.tagName).toBe('svg')
+ expect(wrapper.classes()).toContain('b-icon')
+ expect(wrapper.classes()).toContain('bi')
+ expect(wrapper.classes()).toContain('bi-circle-fill')
+
+ const $title = wrapper.find('title')
+ expect($title.exists()).toBe(false)
+
+ wrapper.destroy()
+ })
})
diff --git a/src/icons/iconstack.spec.js b/src/icons/iconstack.spec.js
index 943f59fea38..bcd58fd0d30 100644
--- a/src/icons/iconstack.spec.js
+++ b/src/icons/iconstack.spec.js
@@ -118,4 +118,44 @@ describe('icons > b-iconstack', () => {
wrapper.destroy()
})
+
+ it('b-iconstack title prop works', async () => {
+ const wrapper = mount(BIconstack, {
+ propsData: {
+ icon: 'circle-fill',
+ title: 'Circle'
+ }
+ })
+
+ expect(wrapper.exists()).toBe(true)
+ expect(wrapper.element.tagName).toBe('svg')
+ expect(wrapper.classes()).toContain('b-icon')
+ expect(wrapper.classes()).toContain('b-iconstack')
+ expect(wrapper.classes()).toContain('bi')
+
+ const $title = wrapper.find('title')
+ expect($title.exists()).toBe(true)
+ expect($title.text()).toBe('Circle')
+
+ wrapper.destroy()
+ })
+
+ it('b-iconstack should not render when title is undefined', async () => {
+ const wrapper = mount(BIconstack, {
+ propsData: {
+ icon: 'circle-fill'
+ }
+ })
+
+ expect(wrapper.exists()).toBe(true)
+ expect(wrapper.element.tagName).toBe('svg')
+ expect(wrapper.classes()).toContain('b-icon')
+ expect(wrapper.classes()).toContain('b-iconstack')
+ expect(wrapper.classes()).toContain('bi')
+
+ const $title = wrapper.find('title')
+ expect($title.exists()).toBe(false)
+
+ wrapper.destroy()
+ })
})
diff --git a/src/icons/package.json b/src/icons/package.json
index ee519e44374..bddd93f8fd3 100644
--- a/src/icons/package.json
+++ b/src/icons/package.json
@@ -4,7 +4,7 @@
"meta": {
"title": "Bootstrap Icons",
"version": "2.2.0",
- "bootstrap-icons-version": "1.0.0-alpha5",
+ "bootstrap-icons-version": "1.0.0",
"slug": "",
"description": "Bootstrap Icons are designed to work with Bootstrap components, from form controls to navigation. Bootstrap Icons are SVGs, so they scale quickly and easily and can be styled with CSS.",
"REMARK": "Note all bootstrap-icons are added to this file during the build phase. Avoid editing this file directly.",
@@ -17,6 +17,11 @@
"prop": "icon",
"description": "Name of icon to render. The corresponding icon component must be installed"
},
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -65,6 +70,11 @@
"component": "BIconstack",
"version": "2.3.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -108,6 +118,11 @@
"component": "BIconBlank",
"version": "2.2.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -154,8 +169,13 @@
},
{
"component": "BIconAlarm",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -202,8 +222,13 @@
},
{
"component": "BIconAlarmFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -250,8 +275,13 @@
},
{
"component": "BIconAlignBottom",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -298,8 +328,13 @@
},
{
"component": "BIconAlignCenter",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -346,8 +381,13 @@
},
{
"component": "BIconAlignEnd",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -394,8 +434,13 @@
},
{
"component": "BIconAlignMiddle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -442,8 +487,13 @@
},
{
"component": "BIconAlignStart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -490,8 +540,13 @@
},
{
"component": "BIconAlignTop",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -538,8 +593,13 @@
},
{
"component": "BIconAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -586,8 +646,13 @@
},
{
"component": "BIconApp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -634,8 +699,13 @@
},
{
"component": "BIconAppIndicator",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -682,8 +752,13 @@
},
{
"component": "BIconArchive",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -730,8 +805,13 @@
},
{
"component": "BIconArchiveFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -778,8 +858,13 @@
},
{
"component": "BIconArrow90degDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -826,8 +911,13 @@
},
{
"component": "BIconArrow90degLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -874,8 +964,13 @@
},
{
"component": "BIconArrow90degRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -922,8 +1017,13 @@
},
{
"component": "BIconArrow90degUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -970,8 +1070,13 @@
},
{
"component": "BIconArrowBarDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1018,8 +1123,13 @@
},
{
"component": "BIconArrowBarLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1066,8 +1176,13 @@
},
{
"component": "BIconArrowBarRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1114,8 +1229,13 @@
},
{
"component": "BIconArrowBarUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1162,8 +1282,13 @@
},
{
"component": "BIconArrowClockwise",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1210,8 +1335,13 @@
},
{
"component": "BIconArrowCounterclockwise",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1258,8 +1388,13 @@
},
{
"component": "BIconArrowDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1306,8 +1441,13 @@
},
{
"component": "BIconArrowDownCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1354,8 +1494,13 @@
},
{
"component": "BIconArrowDownCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1402,8 +1547,13 @@
},
{
"component": "BIconArrowDownLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1450,8 +1600,13 @@
},
{
"component": "BIconArrowDownLeftCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1498,8 +1653,13 @@
},
{
"component": "BIconArrowDownLeftCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1546,8 +1706,13 @@
},
{
"component": "BIconArrowDownLeftSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1594,8 +1759,13 @@
},
{
"component": "BIconArrowDownLeftSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1642,8 +1812,13 @@
},
{
"component": "BIconArrowDownRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1690,8 +1865,13 @@
},
{
"component": "BIconArrowDownRightCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1738,8 +1918,13 @@
},
{
"component": "BIconArrowDownRightCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1786,8 +1971,13 @@
},
{
"component": "BIconArrowDownRightSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1834,8 +2024,13 @@
},
{
"component": "BIconArrowDownRightSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1882,8 +2077,13 @@
},
{
"component": "BIconArrowDownShort",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1930,8 +2130,13 @@
},
{
"component": "BIconArrowDownSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -1978,8 +2183,13 @@
},
{
"component": "BIconArrowDownSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2026,8 +2236,13 @@
},
{
"component": "BIconArrowDownUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2074,8 +2289,13 @@
},
{
"component": "BIconArrowLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2122,8 +2342,13 @@
},
{
"component": "BIconArrowLeftCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2170,8 +2395,13 @@
},
{
"component": "BIconArrowLeftCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2218,8 +2448,13 @@
},
{
"component": "BIconArrowLeftRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2266,8 +2501,13 @@
},
{
"component": "BIconArrowLeftShort",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2314,8 +2554,13 @@
},
{
"component": "BIconArrowLeftSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2362,8 +2607,13 @@
},
{
"component": "BIconArrowLeftSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2410,8 +2660,13 @@
},
{
"component": "BIconArrowRepeat",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2458,8 +2713,13 @@
},
{
"component": "BIconArrowReturnLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2506,8 +2766,13 @@
},
{
"component": "BIconArrowReturnRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2554,8 +2819,13 @@
},
{
"component": "BIconArrowRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2602,8 +2872,13 @@
},
{
"component": "BIconArrowRightCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2650,8 +2925,13 @@
},
{
"component": "BIconArrowRightCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2698,8 +2978,13 @@
},
{
"component": "BIconArrowRightShort",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2746,8 +3031,13 @@
},
{
"component": "BIconArrowRightSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2794,8 +3084,13 @@
},
{
"component": "BIconArrowRightSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2842,8 +3137,13 @@
},
{
"component": "BIconArrowUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2890,8 +3190,13 @@
},
{
"component": "BIconArrowUpCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2938,8 +3243,13 @@
},
{
"component": "BIconArrowUpCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -2986,8 +3296,13 @@
},
{
"component": "BIconArrowUpLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3034,8 +3349,13 @@
},
{
"component": "BIconArrowUpLeftCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3082,8 +3402,13 @@
},
{
"component": "BIconArrowUpLeftCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3130,8 +3455,13 @@
},
{
"component": "BIconArrowUpLeftSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3178,8 +3508,13 @@
},
{
"component": "BIconArrowUpLeftSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3226,8 +3561,13 @@
},
{
"component": "BIconArrowUpRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3274,8 +3614,13 @@
},
{
"component": "BIconArrowUpRightCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3322,8 +3667,13 @@
},
{
"component": "BIconArrowUpRightCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3370,8 +3720,13 @@
},
{
"component": "BIconArrowUpRightSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3418,8 +3773,13 @@
},
{
"component": "BIconArrowUpRightSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3466,8 +3826,13 @@
},
{
"component": "BIconArrowUpShort",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3514,8 +3879,13 @@
},
{
"component": "BIconArrowUpSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3562,8 +3932,13 @@
},
{
"component": "BIconArrowUpSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3610,8 +3985,13 @@
},
{
"component": "BIconArrowsAngleContract",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3658,8 +4038,13 @@
},
{
"component": "BIconArrowsAngleExpand",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3706,8 +4091,13 @@
},
{
"component": "BIconArrowsCollapse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3754,8 +4144,13 @@
},
{
"component": "BIconArrowsExpand",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3802,8 +4197,13 @@
},
{
"component": "BIconArrowsFullscreen",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3850,8 +4250,13 @@
},
{
"component": "BIconArrowsMove",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3898,8 +4303,13 @@
},
{
"component": "BIconAspectRatio",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3946,8 +4356,13 @@
},
{
"component": "BIconAspectRatioFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -3994,8 +4409,13 @@
},
{
"component": "BIconAsterisk",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4042,8 +4462,13 @@
},
{
"component": "BIconAt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4090,8 +4515,13 @@
},
{
"component": "BIconAward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4138,8 +4568,13 @@
},
{
"component": "BIconAwardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4186,8 +4621,13 @@
},
{
"component": "BIconBack",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4234,8 +4674,13 @@
},
{
"component": "BIconBackspace",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4282,8 +4727,13 @@
},
{
"component": "BIconBackspaceFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4330,8 +4780,13 @@
},
{
"component": "BIconBackspaceReverse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4378,8 +4833,13 @@
},
{
"component": "BIconBackspaceReverseFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4426,8 +4886,13 @@
},
{
"component": "BIconBadge4k",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4474,8 +4939,13 @@
},
{
"component": "BIconBadge4kFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4522,8 +4992,13 @@
},
{
"component": "BIconBadge8k",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4570,56 +5045,13 @@
},
{
"component": "BIconBadge8kFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconBadgeCc",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4665,9 +5097,14 @@
]
},
{
- "component": "BIconBadgeCcFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeAd",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4713,9 +5150,14 @@
]
},
{
- "component": "BIconBadgeHd",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeAdFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4761,9 +5203,14 @@
]
},
{
- "component": "BIconBadgeHdFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeCc",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4809,9 +5256,14 @@
]
},
{
- "component": "BIconBadgeTm",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeCcFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4857,9 +5309,14 @@
]
},
{
- "component": "BIconBadgeTmFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeHd",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4905,9 +5362,14 @@
]
},
{
- "component": "BIconBadgeVo",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeHdFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -4953,57 +5415,14 @@
]
},
{
- "component": "BIconBadgeVoFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeTm",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconBag",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5049,9 +5468,14 @@
]
},
{
- "component": "BIconBagCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeTmFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5097,9 +5521,14 @@
]
},
{
- "component": "BIconBagDash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeVo",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5145,9 +5574,14 @@
]
},
{
- "component": "BIconBagFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBadgeVoFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5193,9 +5627,14 @@
]
},
{
- "component": "BIconBagPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBag",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5241,9 +5680,14 @@
]
},
{
- "component": "BIconBarChart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5289,9 +5733,14 @@
]
},
{
- "component": "BIconBarChartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5337,9 +5786,14 @@
]
},
{
- "component": "BIconBarChartLine",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagDash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5385,9 +5839,14 @@
]
},
{
- "component": "BIconBarChartLineFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagDashFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5433,9 +5892,14 @@
]
},
{
- "component": "BIconBarChartSteps",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5481,9 +5945,14 @@
]
},
{
- "component": "BIconBasket",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5529,9 +5998,14 @@
]
},
{
- "component": "BIconBasket2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagPlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5577,9 +6051,14 @@
]
},
{
- "component": "BIconBasket2Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5625,9 +6104,14 @@
]
},
{
- "component": "BIconBasket3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBagXFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5673,9 +6157,14 @@
]
},
{
- "component": "BIconBasket3Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBarChart",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5721,9 +6210,14 @@
]
},
{
- "component": "BIconBasketFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBarChartFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5769,9 +6263,14 @@
]
},
{
- "component": "BIconBattery",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBarChartLine",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5817,9 +6316,14 @@
]
},
{
- "component": "BIconBatteryCharging",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBarChartLineFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5865,9 +6369,14 @@
]
},
{
- "component": "BIconBatteryFull",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBarChartSteps",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5913,9 +6422,14 @@
]
},
{
- "component": "BIconBatteryHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBasket",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -5961,9 +6475,14 @@
]
},
{
- "component": "BIconBell",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBasket2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6009,9 +6528,14 @@
]
},
{
- "component": "BIconBellFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBasket2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6057,9 +6581,14 @@
]
},
{
- "component": "BIconBezier",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBasket3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6105,9 +6634,14 @@
]
},
{
- "component": "BIconBezier2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBasket3Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6153,9 +6687,14 @@
]
},
{
- "component": "BIconBicycle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBasketFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6201,9 +6740,14 @@
]
},
{
- "component": "BIconBinoculars",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBattery",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6249,9 +6793,14 @@
]
},
{
- "component": "BIconBinocularsFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBatteryCharging",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6297,9 +6846,14 @@
]
},
{
- "component": "BIconBlockquoteLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBatteryFull",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6345,9 +6899,14 @@
]
},
{
- "component": "BIconBlockquoteRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBatteryHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6393,9 +6952,14 @@
]
},
{
- "component": "BIconBook",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBell",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6441,9 +7005,14 @@
]
},
{
- "component": "BIconBookFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBellFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6489,9 +7058,14 @@
]
},
{
- "component": "BIconBookHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBezier",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6537,9 +7111,14 @@
]
},
{
- "component": "BIconBookmark",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBezier2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6585,9 +7164,14 @@
]
},
{
- "component": "BIconBookmarkCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBicycle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6633,9 +7217,14 @@
]
},
{
- "component": "BIconBookmarkDash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBinoculars",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6681,9 +7270,14 @@
]
},
{
- "component": "BIconBookmarkFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBinocularsFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6729,9 +7323,14 @@
]
},
{
- "component": "BIconBookmarkPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBlockquoteLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6777,9 +7376,14 @@
]
},
{
- "component": "BIconBookmarks",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBlockquoteRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6825,9 +7429,14 @@
]
},
{
- "component": "BIconBookmarksFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBook",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6873,9 +7482,14 @@
]
},
{
- "component": "BIconBookshelf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6921,9 +7535,14 @@
]
},
{
- "component": "BIconBootstrap",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -6969,9 +7588,14 @@
]
},
{
- "component": "BIconBootstrapFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmark",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7017,9 +7641,14 @@
]
},
{
- "component": "BIconBootstrapReboot",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7065,9 +7694,14 @@
]
},
{
- "component": "BIconBorderStyle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7113,9 +7747,14 @@
]
},
{
- "component": "BIconBorderWidth",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkDash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7161,9 +7800,14 @@
]
},
{
- "component": "BIconBoundingBox",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkDashFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7209,9 +7853,14 @@
]
},
{
- "component": "BIconBoundingBoxCircles",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7257,9 +7906,14 @@
]
},
{
- "component": "BIconBox",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkHeart",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7305,9 +7959,14 @@
]
},
{
- "component": "BIconBoxArrowDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkHeartFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7353,9 +8012,14 @@
]
},
{
- "component": "BIconBoxArrowDownLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7401,9 +8065,14 @@
]
},
{
- "component": "BIconBoxArrowDownRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkPlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7449,9 +8118,14 @@
]
},
{
- "component": "BIconBoxArrowInDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkStar",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7497,9 +8171,14 @@
]
},
{
- "component": "BIconBoxArrowInDownLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkStarFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7545,9 +8224,14 @@
]
},
{
- "component": "BIconBoxArrowInDownRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7593,9 +8277,14 @@
]
},
{
- "component": "BIconBoxArrowInLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarkXFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7641,9 +8330,14 @@
]
},
{
- "component": "BIconBoxArrowInRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarks",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7689,9 +8383,14 @@
]
},
{
- "component": "BIconBoxArrowInUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookmarksFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7737,57 +8436,14 @@
]
},
{
- "component": "BIconBoxArrowInUpLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBookshelf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconBoxArrowInUpRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7833,57 +8489,14 @@
]
},
{
- "component": "BIconBoxArrowLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBootstrap",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconBoxArrowRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7929,9 +8542,14 @@
]
},
{
- "component": "BIconBoxArrowUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBootstrapFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -7977,9 +8595,14 @@
]
},
{
- "component": "BIconBoxArrowUpLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBootstrapReboot",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8025,9 +8648,14 @@
]
},
{
- "component": "BIconBoxArrowUpRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBorderStyle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8073,9 +8701,14 @@
]
},
{
- "component": "BIconBoxSeam",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBorderWidth",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8121,9 +8754,14 @@
]
},
{
- "component": "BIconBraces",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoundingBox",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8169,9 +8807,14 @@
]
},
{
- "component": "BIconBricks",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoundingBoxCircles",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8217,9 +8860,14 @@
]
},
{
- "component": "BIconBriefcase",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBox",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8265,9 +8913,14 @@
]
},
{
- "component": "BIconBriefcaseFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8313,9 +8966,14 @@
]
},
{
- "component": "BIconBrightnessAltHigh",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowDownLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8361,9 +9019,14 @@
]
},
{
- "component": "BIconBrightnessAltHighFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowDownRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8409,9 +9072,14 @@
]
},
{
- "component": "BIconBrightnessAltLow",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowInDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8457,9 +9125,14 @@
]
},
{
- "component": "BIconBrightnessAltLowFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowInDownLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8505,9 +9178,14 @@
]
},
{
- "component": "BIconBrightnessHigh",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowInDownRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8553,9 +9231,14 @@
]
},
{
- "component": "BIconBrightnessHighFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowInLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8601,9 +9284,14 @@
]
},
{
- "component": "BIconBrightnessLow",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowInRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8649,9 +9337,14 @@
]
},
{
- "component": "BIconBrightnessLowFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowInUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8697,9 +9390,14 @@
]
},
{
- "component": "BIconBroadcast",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowInUpLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8745,9 +9443,14 @@
]
},
{
- "component": "BIconBroadcastPin",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowInUpRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8793,9 +9496,14 @@
]
},
{
- "component": "BIconBrush",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8841,9 +9549,14 @@
]
},
{
- "component": "BIconBucket",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8889,9 +9602,14 @@
]
},
{
- "component": "BIconBucketFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8937,9 +9655,14 @@
]
},
{
- "component": "BIconBug",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowUpLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -8985,9 +9708,14 @@
]
},
{
- "component": "BIconBugFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxArrowUpRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9033,9 +9761,14 @@
]
},
{
- "component": "BIconBuilding",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBoxSeam",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9081,9 +9814,14 @@
]
},
{
- "component": "BIconBullseye",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBraces",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9129,9 +9867,14 @@
]
},
{
- "component": "BIconCalculator",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBricks",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9177,9 +9920,14 @@
]
},
{
- "component": "BIconCalculatorFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBriefcase",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9225,9 +9973,14 @@
]
},
{
- "component": "BIconCalendar",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBriefcaseFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9273,9 +10026,14 @@
]
},
{
- "component": "BIconCalendar2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrightnessAltHigh",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9321,9 +10079,14 @@
]
},
{
- "component": "BIconCalendar2Check",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrightnessAltHighFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9369,9 +10132,14 @@
]
},
{
- "component": "BIconCalendar2CheckFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrightnessAltLow",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9417,9 +10185,14 @@
]
},
{
- "component": "BIconCalendar2Date",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrightnessAltLowFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9465,9 +10238,14 @@
]
},
{
- "component": "BIconCalendar2DateFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrightnessHigh",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9513,9 +10291,14 @@
]
},
{
- "component": "BIconCalendar2Day",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrightnessHighFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9561,9 +10344,14 @@
]
},
{
- "component": "BIconCalendar2DayFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrightnessLow",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9609,9 +10397,14 @@
]
},
{
- "component": "BIconCalendar2Event",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrightnessLowFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9657,9 +10450,14 @@
]
},
{
- "component": "BIconCalendar2EventFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBroadcast",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9705,9 +10503,14 @@
]
},
{
- "component": "BIconCalendar2Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBroadcastPin",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9753,9 +10556,14 @@
]
},
{
- "component": "BIconCalendar2Minus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrush",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9801,9 +10609,14 @@
]
},
{
- "component": "BIconCalendar2MinusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBrushFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9849,9 +10662,14 @@
]
},
{
- "component": "BIconCalendar2Month",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBucket",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9897,57 +10715,14 @@
]
},
{
- "component": "BIconCalendar2MonthFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBucketFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconCalendar2Plus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -9993,9 +10768,14 @@
]
},
{
- "component": "BIconCalendar2PlusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBug",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10041,9 +10821,14 @@
]
},
{
- "component": "BIconCalendar2Range",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBugFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10089,9 +10874,14 @@
]
},
{
- "component": "BIconCalendar2RangeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBuilding",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10137,9 +10927,14 @@
]
},
{
- "component": "BIconCalendar2Week",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconBullseye",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10185,9 +10980,14 @@
]
},
{
- "component": "BIconCalendar2WeekFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalculator",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10233,9 +11033,14 @@
]
},
{
- "component": "BIconCalendar3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalculatorFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10281,9 +11086,14 @@
]
},
{
- "component": "BIconCalendar3Event",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10329,9 +11139,14 @@
]
},
{
- "component": "BIconCalendar3EventFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10377,9 +11192,14 @@
]
},
{
- "component": "BIconCalendar3Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Check",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10425,9 +11245,14 @@
]
},
{
- "component": "BIconCalendar3Range",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2CheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10473,9 +11298,14 @@
]
},
{
- "component": "BIconCalendar3RangeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Date",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10521,9 +11351,14 @@
]
},
{
- "component": "BIconCalendar3Week",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2DateFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10569,9 +11404,14 @@
]
},
{
- "component": "BIconCalendar3WeekFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Day",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10617,9 +11457,14 @@
]
},
{
- "component": "BIconCalendar4",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2DayFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10665,9 +11510,14 @@
]
},
{
- "component": "BIconCalendar4Event",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Event",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10713,9 +11563,14 @@
]
},
{
- "component": "BIconCalendar4Range",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2EventFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10761,9 +11616,14 @@
]
},
{
- "component": "BIconCalendar4Week",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10809,9 +11669,14 @@
]
},
{
- "component": "BIconCalendarCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Minus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10857,9 +11722,14 @@
]
},
{
- "component": "BIconCalendarCheckFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2MinusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10905,9 +11775,14 @@
]
},
{
- "component": "BIconCalendarDate",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Month",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -10953,9 +11828,14 @@
]
},
{
- "component": "BIconCalendarDateFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2MonthFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11001,9 +11881,14 @@
]
},
{
- "component": "BIconCalendarDay",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Plus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11049,9 +11934,14 @@
]
},
{
- "component": "BIconCalendarDayFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2PlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11097,9 +11987,14 @@
]
},
{
- "component": "BIconCalendarEvent",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Range",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11145,9 +12040,14 @@
]
},
{
- "component": "BIconCalendarEventFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2RangeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11193,9 +12093,14 @@
]
},
{
- "component": "BIconCalendarFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2Week",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11241,9 +12146,14 @@
]
},
{
- "component": "BIconCalendarMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2WeekFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11289,9 +12199,14 @@
]
},
{
- "component": "BIconCalendarMinusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2X",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11337,9 +12252,14 @@
]
},
{
- "component": "BIconCalendarMonth",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar2XFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11385,9 +12305,14 @@
]
},
{
- "component": "BIconCalendarMonthFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11433,9 +12358,14 @@
]
},
{
- "component": "BIconCalendarPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar3Event",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11481,9 +12411,14 @@
]
},
{
- "component": "BIconCalendarPlusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar3EventFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11529,9 +12464,14 @@
]
},
{
- "component": "BIconCalendarRange",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar3Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11577,9 +12517,14 @@
]
},
{
- "component": "BIconCalendarRangeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar3Range",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11625,9 +12570,14 @@
]
},
{
- "component": "BIconCalendarWeek",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar3RangeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11673,9 +12623,14 @@
]
},
{
- "component": "BIconCalendarWeekFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar3Week",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11721,9 +12676,14 @@
]
},
{
- "component": "BIconCamera",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar3WeekFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11769,9 +12729,14 @@
]
},
{
- "component": "BIconCamera2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar4",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11817,9 +12782,14 @@
]
},
{
- "component": "BIconCameraFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar4Event",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11865,9 +12835,14 @@
]
},
{
- "component": "BIconCameraReels",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar4Range",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11913,9 +12888,14 @@
]
},
{
- "component": "BIconCameraReelsFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendar4Week",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -11961,9 +12941,14 @@
]
},
{
- "component": "BIconCameraVideo",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12009,9 +12994,14 @@
]
},
{
- "component": "BIconCameraVideoFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12057,9 +13047,14 @@
]
},
{
- "component": "BIconCameraVideoOff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarDate",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12105,9 +13100,14 @@
]
},
{
- "component": "BIconCameraVideoOffFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarDateFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12153,9 +13153,14 @@
]
},
{
- "component": "BIconCapslock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarDay",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12201,9 +13206,14 @@
]
},
{
- "component": "BIconCapslockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarDayFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12249,9 +13259,14 @@
]
},
{
- "component": "BIconCardChecklist",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarEvent",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12297,9 +13312,14 @@
]
},
{
- "component": "BIconCardHeading",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarEventFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12345,9 +13365,14 @@
]
},
{
- "component": "BIconCardImage",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12393,9 +13418,14 @@
]
},
{
- "component": "BIconCardList",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12441,9 +13471,14 @@
]
},
{
- "component": "BIconCardText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarMinusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12489,9 +13524,14 @@
]
},
{
- "component": "BIconCaretDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarMonth",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12537,9 +13577,14 @@
]
},
{
- "component": "BIconCaretDownFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarMonthFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12585,9 +13630,14 @@
]
},
{
- "component": "BIconCaretDownSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12633,9 +13683,14 @@
]
},
{
- "component": "BIconCaretDownSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarPlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12681,9 +13736,14 @@
]
},
{
- "component": "BIconCaretLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarRange",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12729,9 +13789,14 @@
]
},
{
- "component": "BIconCaretLeftFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarRangeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12777,9 +13842,14 @@
]
},
{
- "component": "BIconCaretLeftSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarWeek",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12825,9 +13895,14 @@
]
},
{
- "component": "BIconCaretLeftSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarWeekFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12873,9 +13948,14 @@
]
},
{
- "component": "BIconCaretRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12921,9 +14001,14 @@
]
},
{
- "component": "BIconCaretRightFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCalendarXFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -12969,9 +14054,14 @@
]
},
{
- "component": "BIconCaretRightSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCamera",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13017,9 +14107,14 @@
]
},
{
- "component": "BIconCaretRightSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCamera2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13065,9 +14160,14 @@
]
},
{
- "component": "BIconCaretUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCameraFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13113,9 +14213,14 @@
]
},
{
- "component": "BIconCaretUpFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCameraReels",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13161,9 +14266,14 @@
]
},
{
- "component": "BIconCaretUpSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCameraReelsFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13209,9 +14319,14 @@
]
},
{
- "component": "BIconCaretUpSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCameraVideo",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13257,9 +14372,14 @@
]
},
{
- "component": "BIconCart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCameraVideoFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13305,9 +14425,14 @@
]
},
{
- "component": "BIconCart2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCameraVideoOff",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13353,9 +14478,14 @@
]
},
{
- "component": "BIconCart3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCameraVideoOffFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13401,9 +14531,14 @@
]
},
{
- "component": "BIconCart4",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCapslock",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13449,9 +14584,14 @@
]
},
{
- "component": "BIconCartCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCapslockFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13497,9 +14637,14 @@
]
},
{
- "component": "BIconCartDash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCardChecklist",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13545,9 +14690,14 @@
]
},
{
- "component": "BIconCartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCardHeading",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13593,9 +14743,14 @@
]
},
{
- "component": "BIconCartPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCardImage",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13641,9 +14796,14 @@
]
},
{
- "component": "BIconCash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCardList",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13689,9 +14849,14 @@
]
},
{
- "component": "BIconCashStack",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCardText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13737,9 +14902,14 @@
]
},
{
- "component": "BIconCast",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13785,9 +14955,14 @@
]
},
{
- "component": "BIconChat",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretDownFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13833,9 +15008,14 @@
]
},
{
- "component": "BIconChatDots",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretDownSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13881,9 +15061,14 @@
]
},
{
- "component": "BIconChatDotsFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretDownSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13929,9 +15114,14 @@
]
},
{
- "component": "BIconChatFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -13977,9 +15167,14 @@
]
},
{
- "component": "BIconChatLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretLeftFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14025,9 +15220,14 @@
]
},
{
- "component": "BIconChatLeftDots",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretLeftSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14073,9 +15273,14 @@
]
},
{
- "component": "BIconChatLeftDotsFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretLeftSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14121,9 +15326,14 @@
]
},
{
- "component": "BIconChatLeftFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14169,9 +15379,14 @@
]
},
{
- "component": "BIconChatLeftQuote",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretRightFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14217,9 +15432,14 @@
]
},
{
- "component": "BIconChatLeftQuoteFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretRightSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14265,9 +15485,14 @@
]
},
{
- "component": "BIconChatLeftText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretRightSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14313,9 +15538,14 @@
]
},
{
- "component": "BIconChatLeftTextFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14361,9 +15591,14 @@
]
},
{
- "component": "BIconChatQuote",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretUpFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14409,9 +15644,14 @@
]
},
{
- "component": "BIconChatQuoteFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretUpSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14457,9 +15697,14 @@
]
},
{
- "component": "BIconChatRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCaretUpSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14505,9 +15750,14 @@
]
},
{
- "component": "BIconChatRightDots",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCart",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14553,9 +15803,14 @@
]
},
{
- "component": "BIconChatRightDotsFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCart2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14601,9 +15856,14 @@
]
},
{
- "component": "BIconChatRightFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCart3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14649,9 +15909,14 @@
]
},
{
- "component": "BIconChatRightQuote",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCart4",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14697,9 +15962,14 @@
]
},
{
- "component": "BIconChatRightQuoteFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14745,9 +16015,14 @@
]
},
{
- "component": "BIconChatRightText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14793,9 +16068,14 @@
]
},
{
- "component": "BIconChatRightTextFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartDash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14841,9 +16121,14 @@
]
},
{
- "component": "BIconChatSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartDashFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14889,9 +16174,14 @@
]
},
{
- "component": "BIconChatSquareDots",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14937,9 +16227,14 @@
]
},
{
- "component": "BIconChatSquareDotsFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -14985,9 +16280,14 @@
]
},
{
- "component": "BIconChatSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartPlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15033,9 +16333,14 @@
]
},
{
- "component": "BIconChatSquareQuote",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15081,9 +16386,14 @@
]
},
{
- "component": "BIconChatSquareQuoteFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCartXFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15129,9 +16439,14 @@
]
},
{
- "component": "BIconChatSquareText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15177,9 +16492,14 @@
]
},
{
- "component": "BIconChatSquareTextFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCashStack",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15225,9 +16545,14 @@
]
},
{
- "component": "BIconChatText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCast",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15273,9 +16598,14 @@
]
},
{
- "component": "BIconChatTextFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChat",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15321,9 +16651,14 @@
]
},
{
- "component": "BIconCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatDots",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15369,9 +16704,14 @@
]
},
{
- "component": "BIconCheck2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatDotsFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15417,9 +16757,14 @@
]
},
{
- "component": "BIconCheck2All",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15465,9 +16810,14 @@
]
},
{
- "component": "BIconCheck2Circle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15513,9 +16863,14 @@
]
},
{
- "component": "BIconCheck2Square",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatLeftDots",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15561,9 +16916,14 @@
]
},
{
- "component": "BIconCheckAll",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatLeftDotsFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15609,9 +16969,14 @@
]
},
{
- "component": "BIconCheckCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatLeftFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15657,9 +17022,14 @@
]
},
{
- "component": "BIconCheckCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatLeftQuote",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15705,9 +17075,14 @@
]
},
{
- "component": "BIconCheckSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatLeftQuoteFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15753,9 +17128,14 @@
]
},
{
- "component": "BIconCheckSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatLeftText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15801,9 +17181,14 @@
]
},
{
- "component": "BIconChevronBarContract",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatLeftTextFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15849,9 +17234,14 @@
]
},
{
- "component": "BIconChevronBarDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatQuote",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15897,9 +17287,14 @@
]
},
{
- "component": "BIconChevronBarExpand",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatQuoteFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15945,9 +17340,14 @@
]
},
{
- "component": "BIconChevronBarLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -15993,9 +17393,14 @@
]
},
{
- "component": "BIconChevronBarRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatRightDots",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16041,9 +17446,14 @@
]
},
{
- "component": "BIconChevronBarUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatRightDotsFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16089,9 +17499,14 @@
]
},
{
- "component": "BIconChevronCompactDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatRightFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16137,9 +17552,14 @@
]
},
{
- "component": "BIconChevronCompactLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatRightQuote",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16185,9 +17605,14 @@
]
},
{
- "component": "BIconChevronCompactRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatRightQuoteFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16233,9 +17658,14 @@
]
},
{
- "component": "BIconChevronCompactUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatRightText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16281,9 +17711,14 @@
]
},
{
- "component": "BIconChevronContract",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatRightTextFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16329,9 +17764,14 @@
]
},
{
- "component": "BIconChevronDoubleDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16377,9 +17817,14 @@
]
},
{
- "component": "BIconChevronDoubleLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatSquareDots",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16425,9 +17870,14 @@
]
},
{
- "component": "BIconChevronDoubleRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatSquareDotsFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16473,9 +17923,14 @@
]
},
{
- "component": "BIconChevronDoubleUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16521,9 +17976,14 @@
]
},
{
- "component": "BIconChevronDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatSquareQuote",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16569,9 +18029,14 @@
]
},
{
- "component": "BIconChevronExpand",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatSquareQuoteFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16617,9 +18082,14 @@
]
},
{
- "component": "BIconChevronLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatSquareText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16665,9 +18135,14 @@
]
},
{
- "component": "BIconChevronRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatSquareTextFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16713,9 +18188,14 @@
]
},
{
- "component": "BIconChevronUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16761,9 +18241,14 @@
]
},
{
- "component": "BIconCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChatTextFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16809,9 +18294,14 @@
]
},
{
- "component": "BIconCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16857,9 +18347,14 @@
]
},
{
- "component": "BIconCircleHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheck2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16905,9 +18400,14 @@
]
},
{
- "component": "BIconCircleSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheck2All",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -16953,9 +18453,14 @@
]
},
{
- "component": "BIconClipboard",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheck2Circle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17001,9 +18506,14 @@
]
},
{
- "component": "BIconClipboardCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheck2Square",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17049,9 +18559,14 @@
]
},
{
- "component": "BIconClipboardData",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheckAll",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17097,9 +18612,14 @@
]
},
{
- "component": "BIconClipboardMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheckCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17145,9 +18665,14 @@
]
},
{
- "component": "BIconClipboardPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheckCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17193,9 +18718,14 @@
]
},
{
- "component": "BIconClock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheckSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17241,9 +18771,14 @@
]
},
{
- "component": "BIconClockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCheckSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17289,9 +18824,14 @@
]
},
{
- "component": "BIconClockHistory",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronBarContract",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17337,9 +18877,14 @@
]
},
{
- "component": "BIconCloud",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronBarDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17385,9 +18930,14 @@
]
},
{
- "component": "BIconCloudArrowDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronBarExpand",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17433,9 +18983,14 @@
]
},
{
- "component": "BIconCloudArrowDownFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronBarLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17481,9 +19036,14 @@
]
},
{
- "component": "BIconCloudArrowUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronBarRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17529,9 +19089,14 @@
]
},
{
- "component": "BIconCloudArrowUpFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronBarUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17577,9 +19142,14 @@
]
},
{
- "component": "BIconCloudCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronCompactDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17625,9 +19195,14 @@
]
},
{
- "component": "BIconCloudCheckFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronCompactLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17673,9 +19248,14 @@
]
},
{
- "component": "BIconCloudDownload",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronCompactRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17721,9 +19301,14 @@
]
},
{
- "component": "BIconCloudDownloadFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronCompactUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17769,9 +19354,14 @@
]
},
{
- "component": "BIconCloudFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronContract",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17817,9 +19407,14 @@
]
},
{
- "component": "BIconCloudMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronDoubleDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17865,9 +19460,14 @@
]
},
{
- "component": "BIconCloudMinusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronDoubleLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17913,9 +19513,14 @@
]
},
{
- "component": "BIconCloudPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronDoubleRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -17961,9 +19566,14 @@
]
},
{
- "component": "BIconCloudPlusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronDoubleUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18009,9 +19619,14 @@
]
},
{
- "component": "BIconCloudSlash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18057,9 +19672,14 @@
]
},
{
- "component": "BIconCloudSlashFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronExpand",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18105,9 +19725,14 @@
]
},
{
- "component": "BIconCloudUpload",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18153,9 +19778,67 @@
]
},
{
- "component": "BIconCloudUploadFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconChevronRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconChevronUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18201,9 +19884,14 @@
]
},
{
- "component": "BIconCode",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18249,9 +19937,14 @@
]
},
{
- "component": "BIconCodeSlash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18297,9 +19990,14 @@
]
},
{
- "component": "BIconCodeSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCircleHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18345,9 +20043,14 @@
]
},
{
- "component": "BIconCollection",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCircleSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18393,9 +20096,14 @@
]
},
{
- "component": "BIconCollectionFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClipboard",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18441,9 +20149,14 @@
]
},
{
- "component": "BIconCollectionPlay",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClipboardCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18489,9 +20202,14 @@
]
},
{
- "component": "BIconCollectionPlayFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClipboardData",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18537,9 +20255,14 @@
]
},
{
- "component": "BIconColumns",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClipboardMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18585,9 +20308,14 @@
]
},
{
- "component": "BIconColumnsGap",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClipboardPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18633,9 +20361,14 @@
]
},
{
- "component": "BIconCommand",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClipboardX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18681,9 +20414,14 @@
]
},
{
- "component": "BIconCompass",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClock",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18729,9 +20467,14 @@
]
},
{
- "component": "BIconCone",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClockFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18777,9 +20520,14 @@
]
},
{
- "component": "BIconConeStriped",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconClockHistory",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18825,9 +20573,14 @@
]
},
{
- "component": "BIconController",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloud",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18873,9 +20626,14 @@
]
},
{
- "component": "BIconCpu",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18921,9 +20679,14 @@
]
},
{
- "component": "BIconCpuFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudArrowDownFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -18969,9 +20732,14 @@
]
},
{
- "component": "BIconCreditCard",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19017,9 +20785,14 @@
]
},
{
- "component": "BIconCreditCard2Back",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudArrowUpFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19065,9 +20838,14 @@
]
},
{
- "component": "BIconCreditCard2BackFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19113,9 +20891,14 @@
]
},
{
- "component": "BIconCreditCard2Front",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19161,9 +20944,14 @@
]
},
{
- "component": "BIconCreditCard2FrontFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudDownload",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19209,9 +20997,14 @@
]
},
{
- "component": "BIconCreditCardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudDownloadFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19257,9 +21050,14 @@
]
},
{
- "component": "BIconCrop",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19305,9 +21103,14 @@
]
},
{
- "component": "BIconCup",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19353,9 +21156,14 @@
]
},
{
- "component": "BIconCupStraw",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudMinusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19401,9 +21209,14 @@
]
},
{
- "component": "BIconCursor",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19449,9 +21262,14 @@
]
},
{
- "component": "BIconCursorFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudPlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19497,9 +21315,14 @@
]
},
{
- "component": "BIconCursorText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudSlash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19545,9 +21368,14 @@
]
},
{
- "component": "BIconDash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudSlashFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19593,9 +21421,14 @@
]
},
{
- "component": "BIconDashCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudUpload",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19641,9 +21474,14 @@
]
},
{
- "component": "BIconDashCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCloudUploadFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19689,9 +21527,14 @@
]
},
{
- "component": "BIconDashSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCode",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19737,9 +21580,14 @@
]
},
{
- "component": "BIconDashSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCodeSlash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19785,9 +21633,14 @@
]
},
{
- "component": "BIconDiagram2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCodeSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19833,9 +21686,14 @@
]
},
{
- "component": "BIconDiagram2Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCollection",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19881,9 +21739,14 @@
]
},
{
- "component": "BIconDiagram3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCollectionFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19929,9 +21792,14 @@
]
},
{
- "component": "BIconDiagram3Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCollectionPlay",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -19977,9 +21845,14 @@
]
},
{
- "component": "BIconDiamond",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCollectionPlayFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20025,9 +21898,14 @@
]
},
{
- "component": "BIconDiamondFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconColumns",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20073,9 +21951,14 @@
]
},
{
- "component": "BIconDiamondHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconColumnsGap",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20121,9 +22004,14 @@
]
},
{
- "component": "BIconDice1",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCommand",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20169,9 +22057,14 @@
]
},
{
- "component": "BIconDice1Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCompass",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20217,9 +22110,14 @@
]
},
{
- "component": "BIconDice2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCompassFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20265,9 +22163,14 @@
]
},
{
- "component": "BIconDice2Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCone",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20313,9 +22216,14 @@
]
},
{
- "component": "BIconDice3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconConeStriped",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20361,9 +22269,14 @@
]
},
{
- "component": "BIconDice3Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconController",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20409,9 +22322,14 @@
]
},
{
- "component": "BIconDice4",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCpu",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20457,9 +22375,14 @@
]
},
{
- "component": "BIconDice4Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCpuFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20505,9 +22428,14 @@
]
},
{
- "component": "BIconDice5",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCreditCard",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20553,9 +22481,14 @@
]
},
{
- "component": "BIconDice5Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCreditCard2Back",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20601,9 +22534,14 @@
]
},
{
- "component": "BIconDice6",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCreditCard2BackFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20649,9 +22587,14 @@
]
},
{
- "component": "BIconDice6Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCreditCard2Front",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20697,9 +22640,14 @@
]
},
{
- "component": "BIconDisplay",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCreditCard2FrontFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20745,9 +22693,14 @@
]
},
{
- "component": "BIconDisplayFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCreditCardFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20793,9 +22746,14 @@
]
},
{
- "component": "BIconDistributeHorizontal",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCrop",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20841,9 +22799,14 @@
]
},
{
- "component": "BIconDistributeVertical",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCup",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20889,9 +22852,14 @@
]
},
{
- "component": "BIconDoorClosed",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCupFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20937,9 +22905,14 @@
]
},
{
- "component": "BIconDoorClosedFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCupStraw",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -20985,9 +22958,14 @@
]
},
{
- "component": "BIconDoorOpen",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCursor",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21033,9 +23011,14 @@
]
},
{
- "component": "BIconDoorOpenFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCursorFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21081,9 +23064,14 @@
]
},
{
- "component": "BIconDot",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconCursorText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21129,9 +23117,14 @@
]
},
{
- "component": "BIconDownload",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21177,9 +23170,14 @@
]
},
{
- "component": "BIconDroplet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDashCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21225,9 +23223,14 @@
]
},
{
- "component": "BIconDropletFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDashCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21273,9 +23276,14 @@
]
},
{
- "component": "BIconDropletHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDashSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21321,9 +23329,14 @@
]
},
{
- "component": "BIconEarbuds",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDashSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21369,9 +23382,14 @@
]
},
{
- "component": "BIconEasel",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDiagram2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21417,9 +23435,14 @@
]
},
{
- "component": "BIconEaselFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDiagram2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21465,9 +23488,14 @@
]
},
{
- "component": "BIconEgg",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDiagram3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21513,9 +23541,14 @@
]
},
{
- "component": "BIconEggFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDiagram3Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21561,9 +23594,14 @@
]
},
{
- "component": "BIconEggFried",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDiamond",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21609,9 +23647,14 @@
]
},
{
- "component": "BIconEject",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDiamondFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21657,9 +23700,14 @@
]
},
{
- "component": "BIconEjectFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDiamondHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21705,9 +23753,14 @@
]
},
{
- "component": "BIconEmojiAngry",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice1",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21753,9 +23806,14 @@
]
},
{
- "component": "BIconEmojiDizzy",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice1Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21801,9 +23859,14 @@
]
},
{
- "component": "BIconEmojiExpressionless",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21849,9 +23912,14 @@
]
},
{
- "component": "BIconEmojiFrown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21897,9 +23965,14 @@
]
},
{
- "component": "BIconEmojiLaughing",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21945,9 +24018,14 @@
]
},
{
- "component": "BIconEmojiNeutral",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice3Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -21993,9 +24071,14 @@
]
},
{
- "component": "BIconEmojiSmile",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice4",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22041,9 +24124,14 @@
]
},
{
- "component": "BIconEmojiSmileUpsideDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice4Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22089,9 +24177,14 @@
]
},
{
- "component": "BIconEmojiSunglasses",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22137,9 +24230,14 @@
]
},
{
- "component": "BIconEnvelope",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice5Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22185,9 +24283,14 @@
]
},
{
- "component": "BIconEnvelopeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice6",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22233,9 +24336,14 @@
]
},
{
- "component": "BIconEnvelopeOpen",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDice6Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22281,9 +24389,14 @@
]
},
{
- "component": "BIconEnvelopeOpenFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDisplay",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22329,9 +24442,14 @@
]
},
{
- "component": "BIconExclamation",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDisplayFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22377,9 +24495,14 @@
]
},
{
- "component": "BIconExclamationCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDistributeHorizontal",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22425,9 +24548,14 @@
]
},
{
- "component": "BIconExclamationCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDistributeVertical",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22473,9 +24601,14 @@
]
},
{
- "component": "BIconExclamationDiamond",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDoorClosed",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22521,9 +24654,14 @@
]
},
{
- "component": "BIconExclamationDiamondFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDoorClosedFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22569,9 +24707,14 @@
]
},
{
- "component": "BIconExclamationOctagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDoorOpen",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22617,9 +24760,14 @@
]
},
{
- "component": "BIconExclamationOctagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDoorOpenFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22665,9 +24813,14 @@
]
},
{
- "component": "BIconExclamationSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDot",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22713,9 +24866,14 @@
]
},
{
- "component": "BIconExclamationSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDownload",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22761,9 +24919,14 @@
]
},
{
- "component": "BIconExclamationTriangle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDroplet",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22809,9 +24972,14 @@
]
},
{
- "component": "BIconExclamationTriangleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDropletFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22857,9 +25025,14 @@
]
},
{
- "component": "BIconExclude",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconDropletHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22905,9 +25078,14 @@
]
},
{
- "component": "BIconEye",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEarbuds",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -22953,9 +25131,14 @@
]
},
{
- "component": "BIconEyeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEasel",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23001,9 +25184,14 @@
]
},
{
- "component": "BIconEyeSlash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEaselFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23049,9 +25237,14 @@
]
},
{
- "component": "BIconEyeSlashFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEgg",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23097,9 +25290,14 @@
]
},
{
- "component": "BIconEyeglasses",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEggFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23145,9 +25343,14 @@
]
},
{
- "component": "BIconFile",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEggFried",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23193,9 +25396,14 @@
]
},
{
- "component": "BIconFileArrowDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEject",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23241,9 +25449,14 @@
]
},
{
- "component": "BIconFileArrowDownFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEjectFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23289,9 +25502,14 @@
]
},
{
- "component": "BIconFileArrowUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiAngry",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23337,9 +25555,14 @@
]
},
{
- "component": "BIconFileArrowUpFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiDizzy",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23385,9 +25608,14 @@
]
},
{
- "component": "BIconFileBinary",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiExpressionless",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23433,9 +25661,14 @@
]
},
{
- "component": "BIconFileBinaryFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiFrown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23481,9 +25714,14 @@
]
},
{
- "component": "BIconFileBreak",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiLaughing",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23529,9 +25767,14 @@
]
},
{
- "component": "BIconFileBreakFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiNeutral",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23577,9 +25820,14 @@
]
},
{
- "component": "BIconFileCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiSmile",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23625,9 +25873,14 @@
]
},
{
- "component": "BIconFileCheckFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiSmileUpsideDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23673,9 +25926,14 @@
]
},
{
- "component": "BIconFileCode",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEmojiSunglasses",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23721,9 +25979,14 @@
]
},
{
- "component": "BIconFileCodeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEnvelope",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23769,9 +26032,67 @@
]
},
{
- "component": "BIconFileDiff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEnvelopeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconEnvelopeOpen",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23817,57 +26138,14 @@
]
},
{
- "component": "BIconFileDiffFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEnvelopeOpenFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconFileEarmark",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -23913,57 +26191,14 @@
]
},
{
- "component": "BIconFileEarmarkArrowDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamation",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconFileEarmarkArrowUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24009,9 +26244,14 @@
]
},
{
- "component": "BIconFileEarmarkArrowUpFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24057,9 +26297,14 @@
]
},
{
- "component": "BIconFileEarmarkBinary",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24105,9 +26350,14 @@
]
},
{
- "component": "BIconFileEarmarkBinaryFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationDiamond",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24153,9 +26403,14 @@
]
},
{
- "component": "BIconFileEarmarkBreak",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationDiamondFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24201,9 +26456,14 @@
]
},
{
- "component": "BIconFileEarmarkBreakFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationOctagon",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24249,9 +26509,14 @@
]
},
{
- "component": "BIconFileEarmarkCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationOctagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24297,9 +26562,14 @@
]
},
{
- "component": "BIconFileEarmarkCheckFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24345,9 +26615,14 @@
]
},
{
- "component": "BIconFileEarmarkCode",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24393,9 +26668,14 @@
]
},
{
- "component": "BIconFileEarmarkCodeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationTriangle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24441,9 +26721,14 @@
]
},
{
- "component": "BIconFileEarmarkDiff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclamationTriangleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24489,9 +26774,14 @@
]
},
{
- "component": "BIconFileEarmarkDiffFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconExclude",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24537,9 +26827,14 @@
]
},
{
- "component": "BIconFileEarmarkFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEye",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24585,9 +26880,14 @@
]
},
{
- "component": "BIconFileEarmarkMedical",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEyeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24633,9 +26933,14 @@
]
},
{
- "component": "BIconFileEarmarkMedicalFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEyeSlash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24681,9 +26986,14 @@
]
},
{
- "component": "BIconFileEarmarkMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEyeSlashFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24729,9 +27039,14 @@
]
},
{
- "component": "BIconFileEarmarkMinusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconEyeglasses",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24777,9 +27092,14 @@
]
},
{
- "component": "BIconFileEarmarkPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFile",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24825,9 +27145,14 @@
]
},
{
- "component": "BIconFileEarmarkPlusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24873,9 +27198,14 @@
]
},
{
- "component": "BIconFileEarmarkRuled",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileArrowDownFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24921,9 +27251,14 @@
]
},
{
- "component": "BIconFileEarmarkRuledFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -24969,9 +27304,14 @@
]
},
{
- "component": "BIconFileEarmarkSpreadsheet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileArrowUpFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25017,9 +27357,14 @@
]
},
{
- "component": "BIconFileEarmarkSpreadsheetFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileBinary",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25065,9 +27410,14 @@
]
},
{
- "component": "BIconFileEarmarkText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileBinaryFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25113,9 +27463,14 @@
]
},
{
- "component": "BIconFileEarmarkTextFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileBreak",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25161,9 +27516,14 @@
]
},
{
- "component": "BIconFileEarmarkZip",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileBreakFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25209,9 +27569,14 @@
]
},
{
- "component": "BIconFileEarmarkZipFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25257,9 +27622,14 @@
]
},
{
- "component": "BIconFileFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25305,9 +27675,14 @@
]
},
{
- "component": "BIconFileMedical",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileCode",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25353,9 +27728,14 @@
]
},
{
- "component": "BIconFileMedicalFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileCodeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25401,9 +27781,14 @@
]
},
{
- "component": "BIconFileMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileDiff",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25449,9 +27834,14 @@
]
},
{
- "component": "BIconFileMinusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileDiffFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25497,9 +27887,14 @@
]
},
{
- "component": "BIconFileMusic",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmark",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25545,9 +27940,14 @@
]
},
{
- "component": "BIconFileMusicFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25593,9 +27993,14 @@
]
},
{
- "component": "BIconFilePerson",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkArrowDownFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25641,9 +28046,14 @@
]
},
{
- "component": "BIconFilePersonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25689,9 +28099,14 @@
]
},
{
- "component": "BIconFilePlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkArrowUpFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25737,9 +28152,14 @@
]
},
{
- "component": "BIconFilePlusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkBinary",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25785,9 +28205,14 @@
]
},
{
- "component": "BIconFilePost",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkBinaryFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25833,9 +28258,14 @@
]
},
{
- "component": "BIconFilePostFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkBreak",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25881,9 +28311,14 @@
]
},
{
- "component": "BIconFileRichtext",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkBreakFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25929,9 +28364,14 @@
]
},
{
- "component": "BIconFileRichtextFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -25977,57 +28417,14 @@
]
},
{
- "component": "BIconFileRuled",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconFileRuledFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26073,9 +28470,14 @@
]
},
{
- "component": "BIconFileSpreadsheet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkCode",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26121,9 +28523,14 @@
]
},
{
- "component": "BIconFileSpreadsheetFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkCodeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26169,9 +28576,14 @@
]
},
{
- "component": "BIconFileText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkDiff",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26217,9 +28629,14 @@
]
},
{
- "component": "BIconFileTextFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkDiffFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26265,9 +28682,14 @@
]
},
{
- "component": "BIconFileZip",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkEasel",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26313,9 +28735,14 @@
]
},
{
- "component": "BIconFileZipFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkEaselFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26361,9 +28788,14 @@
]
},
{
- "component": "BIconFiles",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26409,9 +28841,14 @@
]
},
{
- "component": "BIconFilesAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkFont",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26457,9 +28894,14 @@
]
},
{
- "component": "BIconFilm",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkFontFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26505,9 +28947,14 @@
]
},
{
- "component": "BIconFilter",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkImage",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26553,9 +29000,14 @@
]
},
{
- "component": "BIconFilterCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkImageFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26601,9 +29053,14 @@
]
},
{
- "component": "BIconFilterCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkLock",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26649,9 +29106,14 @@
]
},
{
- "component": "BIconFilterLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkLock2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26697,9 +29159,14 @@
]
},
{
- "component": "BIconFilterRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkLock2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26745,9 +29212,14 @@
]
},
{
- "component": "BIconFilterSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkLockFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26793,9 +29265,14 @@
]
},
{
- "component": "BIconFilterSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkMedical",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26841,9 +29318,14 @@
]
},
{
- "component": "BIconFlag",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkMedicalFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26889,9 +29371,14 @@
]
},
{
- "component": "BIconFlagFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26937,9 +29424,14 @@
]
},
{
- "component": "BIconFlower1",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkMinusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -26985,9 +29477,14 @@
]
},
{
- "component": "BIconFlower2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkMusic",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27033,9 +29530,14 @@
]
},
{
- "component": "BIconFlower3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkMusicFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27081,9 +29583,14 @@
]
},
{
- "component": "BIconFolder",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkPerson",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27129,9 +29636,14 @@
]
},
{
- "component": "BIconFolder2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkPersonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27177,9 +29689,14 @@
]
},
{
- "component": "BIconFolder2Open",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkPlay",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27225,9 +29742,14 @@
]
},
{
- "component": "BIconFolderCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkPlayFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27273,9 +29795,14 @@
]
},
{
- "component": "BIconFolderFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27321,9 +29848,14 @@
]
},
{
- "component": "BIconFolderMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkPlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27369,9 +29901,14 @@
]
},
{
- "component": "BIconFolderPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkPost",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27417,9 +29954,14 @@
]
},
{
- "component": "BIconFolderSymlink",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkPostFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27465,9 +30007,14 @@
]
},
{
- "component": "BIconFolderSymlinkFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkRichtext",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27513,9 +30060,14 @@
]
},
{
- "component": "BIconFonts",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkRichtextFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27561,9 +30113,14 @@
]
},
{
- "component": "BIconForward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkRuled",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27609,9 +30166,14 @@
]
},
{
- "component": "BIconForwardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkRuledFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27657,9 +30219,14 @@
]
},
{
- "component": "BIconFront",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkSlides",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27705,9 +30272,14 @@
]
},
{
- "component": "BIconFullscreen",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkSlidesFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27753,9 +30325,14 @@
]
},
{
- "component": "BIconFullscreenExit",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkSpreadsheet",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27801,9 +30378,14 @@
]
},
{
- "component": "BIconFunnel",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkSpreadsheetFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27849,9 +30431,14 @@
]
},
{
- "component": "BIconFunnelFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27897,9 +30484,14 @@
]
},
{
- "component": "BIconGear",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkTextFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27945,9 +30537,14 @@
]
},
{
- "component": "BIconGearFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -27993,9 +30590,14 @@
]
},
{
- "component": "BIconGearWide",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkXFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28041,9 +30643,14 @@
]
},
{
- "component": "BIconGearWideConnected",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkZip",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28089,9 +30696,14 @@
]
},
{
- "component": "BIconGem",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEarmarkZipFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28137,9 +30749,14 @@
]
},
{
- "component": "BIconGeo",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEasel",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28185,9 +30802,14 @@
]
},
{
- "component": "BIconGeoAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileEaselFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28233,9 +30855,14 @@
]
},
{
- "component": "BIconGift",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28281,9 +30908,14 @@
]
},
{
- "component": "BIconGiftFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileFont",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28329,9 +30961,14 @@
]
},
{
- "component": "BIconGlobe",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileFontFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28377,9 +31014,14 @@
]
},
{
- "component": "BIconGlobe2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileImage",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28425,9 +31067,14 @@
]
},
{
- "component": "BIconGraphDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileImageFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28473,9 +31120,14 @@
]
},
{
- "component": "BIconGraphUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileLock",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28521,9 +31173,14 @@
]
},
{
- "component": "BIconGrid",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileLock2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28569,9 +31226,14 @@
]
},
{
- "component": "BIconGrid1x2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileLock2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28617,9 +31279,14 @@
]
},
{
- "component": "BIconGrid1x2Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileLockFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28665,9 +31332,14 @@
]
},
{
- "component": "BIconGrid3x2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileMedical",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28713,9 +31385,14 @@
]
},
{
- "component": "BIconGrid3x2Gap",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileMedicalFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28761,9 +31438,14 @@
]
},
{
- "component": "BIconGrid3x2GapFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28809,9 +31491,14 @@
]
},
{
- "component": "BIconGrid3x3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileMinusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28857,9 +31544,14 @@
]
},
{
- "component": "BIconGrid3x3Gap",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileMusic",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28905,9 +31597,14 @@
]
},
{
- "component": "BIconGrid3x3GapFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileMusicFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -28953,9 +31650,14 @@
]
},
{
- "component": "BIconGridFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilePerson",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29001,9 +31703,14 @@
]
},
{
- "component": "BIconGripHorizontal",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilePersonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29049,9 +31756,14 @@
]
},
{
- "component": "BIconGripVertical",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilePlay",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29097,9 +31809,14 @@
]
},
{
- "component": "BIconHammer",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilePlayFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29145,9 +31862,14 @@
]
},
{
- "component": "BIconHandIndex",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilePlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29193,9 +31915,14 @@
]
},
{
- "component": "BIconHandIndexThumb",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilePlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29241,9 +31968,14 @@
]
},
{
- "component": "BIconHandThumbsDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilePost",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29289,9 +32021,14 @@
]
},
{
- "component": "BIconHandThumbsUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilePostFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29337,9 +32074,14 @@
]
},
{
- "component": "BIconHandbag",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileRichtext",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29385,9 +32127,14 @@
]
},
{
- "component": "BIconHandbagFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileRichtextFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29433,9 +32180,14 @@
]
},
{
- "component": "BIconHash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileRuled",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29481,9 +32233,14 @@
]
},
{
- "component": "BIconHdd",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileRuledFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29529,9 +32286,14 @@
]
},
{
- "component": "BIconHddFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileSlides",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29577,9 +32339,14 @@
]
},
{
- "component": "BIconHddNetwork",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileSlidesFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29625,9 +32392,14 @@
]
},
{
- "component": "BIconHddNetworkFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileSpreadsheet",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29673,9 +32445,14 @@
]
},
{
- "component": "BIconHddRack",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileSpreadsheetFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29721,9 +32498,14 @@
]
},
{
- "component": "BIconHddRackFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29769,9 +32551,14 @@
]
},
{
- "component": "BIconHddStack",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileTextFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29817,9 +32604,14 @@
]
},
{
- "component": "BIconHddStackFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29865,9 +32657,14 @@
]
},
{
- "component": "BIconHeadphones",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileXFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29913,9 +32710,14 @@
]
},
{
- "component": "BIconHeadset",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileZip",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -29961,9 +32763,14 @@
]
},
{
- "component": "BIconHeart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFileZipFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30009,9 +32816,14 @@
]
},
{
- "component": "BIconHeartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFiles",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30057,9 +32869,14 @@
]
},
{
- "component": "BIconHeartHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilesAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30105,9 +32922,14 @@
]
},
{
- "component": "BIconHeptagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilm",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30153,9 +32975,14 @@
]
},
{
- "component": "BIconHeptagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilter",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30201,9 +33028,14 @@
]
},
{
- "component": "BIconHeptagonHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilterCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30249,9 +33081,14 @@
]
},
{
- "component": "BIconHexagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilterCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30297,9 +33134,14 @@
]
},
{
- "component": "BIconHexagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilterLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30345,9 +33187,173 @@
]
},
{
- "component": "BIconHexagonHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFilterRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilterSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFilterSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconFlag",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30393,9 +33399,14 @@
]
},
{
- "component": "BIconHourglass",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFlagFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30441,9 +33452,14 @@
]
},
{
- "component": "BIconHourglassBottom",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFlower1",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30489,9 +33505,14 @@
]
},
{
- "component": "BIconHourglassSplit",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFlower2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30537,9 +33558,14 @@
]
},
{
- "component": "BIconHourglassTop",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFlower3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30585,9 +33611,14 @@
]
},
{
- "component": "BIconHouse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolder",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30633,9 +33664,14 @@
]
},
{
- "component": "BIconHouseDoor",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolder2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30681,9 +33717,14 @@
]
},
{
- "component": "BIconHouseDoorFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolder2Open",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30729,9 +33770,14 @@
]
},
{
- "component": "BIconHouseFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolderCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30777,9 +33823,14 @@
]
},
{
- "component": "BIconHr",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolderFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30825,9 +33876,14 @@
]
},
{
- "component": "BIconImage",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolderMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30873,9 +33929,14 @@
]
},
{
- "component": "BIconImageAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolderPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30921,9 +33982,14 @@
]
},
{
- "component": "BIconImageFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolderSymlink",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -30969,9 +34035,14 @@
]
},
{
- "component": "BIconImages",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolderSymlinkFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31017,9 +34088,14 @@
]
},
{
- "component": "BIconInbox",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFolderX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31065,9 +34141,14 @@
]
},
{
- "component": "BIconInboxFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFonts",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31113,9 +34194,14 @@
]
},
{
- "component": "BIconInboxes",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconForward",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31161,9 +34247,14 @@
]
},
{
- "component": "BIconInboxesFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconForwardFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31209,9 +34300,14 @@
]
},
{
- "component": "BIconInfo",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFront",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31257,9 +34353,14 @@
]
},
{
- "component": "BIconInfoCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFullscreen",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31305,9 +34406,14 @@
]
},
{
- "component": "BIconInfoCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFullscreenExit",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31353,9 +34459,14 @@
]
},
{
- "component": "BIconInfoSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFunnel",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31401,9 +34512,14 @@
]
},
{
- "component": "BIconInfoSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconFunnelFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31449,9 +34565,14 @@
]
},
{
- "component": "BIconInputCursor",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGear",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31497,9 +34618,14 @@
]
},
{
- "component": "BIconInputCursorText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGearFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31545,9 +34671,14 @@
]
},
{
- "component": "BIconIntersect",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGearWide",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31593,9 +34724,14 @@
]
},
{
- "component": "BIconJournal",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGearWideConnected",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31641,9 +34777,14 @@
]
},
{
- "component": "BIconJournalAlbum",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGem",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31689,9 +34830,14 @@
]
},
{
- "component": "BIconJournalArrowDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGeo",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31737,9 +34883,14 @@
]
},
{
- "component": "BIconJournalArrowUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGeoAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31785,9 +34936,14 @@
]
},
{
- "component": "BIconJournalCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGeoAltFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31833,9 +34989,14 @@
]
},
{
- "component": "BIconJournalCode",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGeoFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31881,9 +35042,14 @@
]
},
{
- "component": "BIconJournalMedical",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGift",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31929,9 +35095,14 @@
]
},
{
- "component": "BIconJournalMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGiftFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -31977,9 +35148,14 @@
]
},
{
- "component": "BIconJournalPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGlobe",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32025,9 +35201,14 @@
]
},
{
- "component": "BIconJournalRichtext",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGlobe2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32073,9 +35254,14 @@
]
},
{
- "component": "BIconJournalText",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGraphDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32121,9 +35307,14 @@
]
},
{
- "component": "BIconJournals",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGraphUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32169,9 +35360,14 @@
]
},
{
- "component": "BIconJoystick",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32217,9 +35413,14 @@
]
},
{
- "component": "BIconJustify",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid1x2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32265,9 +35466,14 @@
]
},
{
- "component": "BIconJustifyLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid1x2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32313,9 +35519,14 @@
]
},
{
- "component": "BIconJustifyRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid3x2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32361,9 +35572,14 @@
]
},
{
- "component": "BIconKanban",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid3x2Gap",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32409,9 +35625,14 @@
]
},
{
- "component": "BIconKanbanFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid3x2GapFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32457,9 +35678,14 @@
]
},
{
- "component": "BIconKey",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid3x3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32505,9 +35731,14 @@
]
},
{
- "component": "BIconKeyFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid3x3Gap",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32553,9 +35784,14 @@
]
},
{
- "component": "BIconKeyboard",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGrid3x3GapFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32601,9 +35837,14 @@
]
},
{
- "component": "BIconKeyboardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGridFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32649,9 +35890,14 @@
]
},
{
- "component": "BIconLadder",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGripHorizontal",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32697,9 +35943,14 @@
]
},
{
- "component": "BIconLamp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconGripVertical",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32745,9 +35996,14 @@
]
},
{
- "component": "BIconLampFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHammer",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32793,9 +36049,14 @@
]
},
{
- "component": "BIconLaptop",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHandIndex",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32841,9 +36102,14 @@
]
},
{
- "component": "BIconLaptopFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHandIndexThumb",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32889,9 +36155,14 @@
]
},
{
- "component": "BIconLayers",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHandThumbsDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32937,9 +36208,14 @@
]
},
{
- "component": "BIconLayersFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHandThumbsUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -32985,9 +36261,14 @@
]
},
{
- "component": "BIconLayersHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHandbag",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33033,9 +36314,14 @@
]
},
{
- "component": "BIconLayoutSidebar",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHandbagFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33081,9 +36367,14 @@
]
},
{
- "component": "BIconLayoutSidebarInset",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33129,9 +36420,14 @@
]
},
{
- "component": "BIconLayoutSidebarInsetReverse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHdd",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33177,9 +36473,14 @@
]
},
{
- "component": "BIconLayoutSidebarReverse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHddFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33225,9 +36526,14 @@
]
},
{
- "component": "BIconLayoutSplit",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHddNetwork",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33273,9 +36579,14 @@
]
},
{
- "component": "BIconLayoutTextSidebar",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHddNetworkFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33321,9 +36632,14 @@
]
},
{
- "component": "BIconLayoutTextSidebarReverse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHddRack",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33369,9 +36685,14 @@
]
},
{
- "component": "BIconLayoutTextWindow",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHddRackFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33417,9 +36738,14 @@
]
},
{
- "component": "BIconLayoutTextWindowReverse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHddStack",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33465,9 +36791,14 @@
]
},
{
- "component": "BIconLayoutThreeColumns",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHddStackFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33513,57 +36844,14 @@
]
},
{
- "component": "BIconLayoutWtf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHeadphones",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconLifePreserver",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33609,57 +36897,14 @@
]
},
{
- "component": "BIconLightning",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHeadset",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconLightningFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33705,57 +36950,14 @@
]
},
{
- "component": "BIconLink",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHeart",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconLink45deg",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33801,9 +37003,14 @@
]
},
{
- "component": "BIconList",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHeartFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33849,9 +37056,14 @@
]
},
{
- "component": "BIconListCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHeartHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33897,9 +37109,14 @@
]
},
{
- "component": "BIconListNested",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHeptagon",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33945,9 +37162,14 @@
]
},
{
- "component": "BIconListOl",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHeptagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -33993,9 +37215,14 @@
]
},
{
- "component": "BIconListStars",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHeptagonHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34041,9 +37268,14 @@
]
},
{
- "component": "BIconListTask",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHexagon",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34089,9 +37321,14 @@
]
},
{
- "component": "BIconListUl",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHexagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34137,9 +37374,14 @@
]
},
{
- "component": "BIconLock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHexagonHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34185,9 +37427,14 @@
]
},
{
- "component": "BIconLockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHourglass",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34233,9 +37480,14 @@
]
},
{
- "component": "BIconMailbox",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHourglassBottom",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34281,9 +37533,14 @@
]
},
{
- "component": "BIconMailbox2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHourglassSplit",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34329,9 +37586,14 @@
]
},
{
- "component": "BIconMap",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHourglassTop",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34377,9 +37639,14 @@
]
},
{
- "component": "BIconMarkdown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHouse",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34425,9 +37692,14 @@
]
},
{
- "component": "BIconMarkdownFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHouseDoor",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34473,9 +37745,14 @@
]
},
{
- "component": "BIconMenuApp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHouseDoorFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34521,9 +37798,14 @@
]
},
{
- "component": "BIconMenuAppFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHouseFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34569,9 +37851,14 @@
]
},
{
- "component": "BIconMenuButton",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconHr",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34617,9 +37904,14 @@
]
},
{
- "component": "BIconMenuButtonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconImage",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34665,9 +37957,14 @@
]
},
{
- "component": "BIconMenuButtonWide",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconImageAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34713,9 +38010,14 @@
]
},
{
- "component": "BIconMenuButtonWideFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconImageFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34761,9 +38063,14 @@
]
},
{
- "component": "BIconMenuDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconImages",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34809,9 +38116,14 @@
]
},
{
- "component": "BIconMenuUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInbox",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34857,9 +38169,14 @@
]
},
{
- "component": "BIconMic",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInboxFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34905,9 +38222,14 @@
]
},
{
- "component": "BIconMicFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInboxes",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -34953,9 +38275,14 @@
]
},
{
- "component": "BIconMicMute",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInboxesFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35001,9 +38328,14 @@
]
},
{
- "component": "BIconMicMuteFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInfo",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35049,9 +38381,14 @@
]
},
{
- "component": "BIconMinecart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInfoCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35097,9 +38434,14 @@
]
},
{
- "component": "BIconMinecartLoaded",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInfoCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35145,9 +38487,14 @@
]
},
{
- "component": "BIconMoon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInfoSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35193,57 +38540,14 @@
]
},
{
- "component": "BIconMouse",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInfoSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconMouse2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35289,57 +38593,14 @@
]
},
{
- "component": "BIconMouse3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInputCursor",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconMusicNote",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35385,9 +38646,14 @@
]
},
{
- "component": "BIconMusicNoteBeamed",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconInputCursorText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35433,9 +38699,14 @@
]
},
{
- "component": "BIconMusicNoteList",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconIntersect",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35481,9 +38752,14 @@
]
},
{
- "component": "BIconMusicPlayer",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournal",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35529,9 +38805,14 @@
]
},
{
- "component": "BIconMusicPlayerFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalAlbum",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35577,9 +38858,14 @@
]
},
{
- "component": "BIconNewspaper",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalArrowDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35625,9 +38911,14 @@
]
},
{
- "component": "BIconNodeMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalArrowUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35673,9 +38964,14 @@
]
},
{
- "component": "BIconNodeMinusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35721,9 +39017,14 @@
]
},
{
- "component": "BIconNodePlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalCode",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35769,9 +39070,14 @@
]
},
{
- "component": "BIconNodePlusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalMedical",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35817,9 +39123,14 @@
]
},
{
- "component": "BIconNut",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35865,9 +39176,14 @@
]
},
{
- "component": "BIconNutFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35913,9 +39229,14 @@
]
},
{
- "component": "BIconOctagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalRichtext",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -35961,9 +39282,14 @@
]
},
{
- "component": "BIconOctagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalText",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36009,9 +39335,14 @@
]
},
{
- "component": "BIconOctagonHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournalX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36057,9 +39388,14 @@
]
},
{
- "component": "BIconOption",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJournals",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36105,9 +39441,14 @@
]
},
{
- "component": "BIconOutlet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJoystick",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36153,9 +39494,14 @@
]
},
{
- "component": "BIconPaperclip",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJustify",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36201,9 +39547,14 @@
]
},
{
- "component": "BIconParagraph",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJustifyLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36249,9 +39600,14 @@
]
},
{
- "component": "BIconPatchCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconJustifyRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36297,9 +39653,14 @@
]
},
{
- "component": "BIconPatchCheckFll",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconKanban",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36345,9 +39706,14 @@
]
},
{
- "component": "BIconPatchExclamation",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconKanbanFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36393,9 +39759,14 @@
]
},
{
- "component": "BIconPatchExclamationFll",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconKey",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36441,9 +39812,14 @@
]
},
{
- "component": "BIconPatchMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconKeyFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36489,9 +39865,14 @@
]
},
{
- "component": "BIconPatchMinusFll",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconKeyboard",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36537,9 +39918,14 @@
]
},
{
- "component": "BIconPatchPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconKeyboardFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36585,9 +39971,14 @@
]
},
{
- "component": "BIconPatchPlusFll",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLadder",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36633,9 +40024,14 @@
]
},
{
- "component": "BIconPatchQuestion",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLamp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36681,9 +40077,14 @@
]
},
{
- "component": "BIconPatchQuestionFll",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLampFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36729,9 +40130,14 @@
]
},
{
- "component": "BIconPause",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLaptop",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36777,9 +40183,14 @@
]
},
{
- "component": "BIconPauseFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLaptopFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36825,9 +40236,14 @@
]
},
{
- "component": "BIconPeace",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayers",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36873,9 +40289,14 @@
]
},
{
- "component": "BIconPeaceFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayersFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36921,9 +40342,14 @@
]
},
{
- "component": "BIconPen",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayersHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -36969,9 +40395,14 @@
]
},
{
- "component": "BIconPencil",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutSidebar",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37017,9 +40448,14 @@
]
},
{
- "component": "BIconPencilSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutSidebarInset",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37065,9 +40501,14 @@
]
},
{
- "component": "BIconPentagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutSidebarInsetReverse",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37113,9 +40554,14 @@
]
},
{
- "component": "BIconPentagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutSidebarReverse",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37161,9 +40607,14 @@
]
},
{
- "component": "BIconPentagonHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutSplit",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37209,9 +40660,14 @@
]
},
{
- "component": "BIconPeople",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutTextSidebar",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37257,9 +40713,14 @@
]
},
{
- "component": "BIconPeopleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutTextSidebarReverse",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37305,9 +40766,14 @@
]
},
{
- "component": "BIconPercent",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutTextWindow",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37353,57 +40819,14 @@
]
},
{
- "component": "BIconPerson",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutTextWindowReverse",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconPersonBadge",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37449,57 +40872,14 @@
]
},
{
- "component": "BIconPersonBadgeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutThreeColumns",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconPersonBoundingBox",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37545,9 +40925,14 @@
]
},
{
- "component": "BIconPersonCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLayoutWtf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37593,9 +40978,14 @@
]
},
{
- "component": "BIconPersonCheckFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLifePreserver",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37641,9 +41031,14 @@
]
},
{
- "component": "BIconPersonCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLightning",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37689,9 +41084,14 @@
]
},
{
- "component": "BIconPersonDash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLightningFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37737,9 +41137,14 @@
]
},
{
- "component": "BIconPersonDashFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLink",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37785,9 +41190,14 @@
]
},
{
- "component": "BIconPersonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLink45deg",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37833,9 +41243,14 @@
]
},
{
- "component": "BIconPersonLinesFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconList",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37881,9 +41296,14 @@
]
},
{
- "component": "BIconPersonPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconListCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37929,9 +41349,14 @@
]
},
{
- "component": "BIconPersonPlusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconListNested",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -37977,9 +41402,14 @@
]
},
{
- "component": "BIconPersonSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconListOl",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38025,9 +41455,14 @@
]
},
{
- "component": "BIconPhone",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconListStars",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38073,9 +41508,14 @@
]
},
{
- "component": "BIconPhoneFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconListTask",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38121,9 +41561,14 @@
]
},
{
- "component": "BIconPhoneLandscape",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconListUl",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38169,9 +41614,14 @@
]
},
{
- "component": "BIconPhoneLandscapeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLock",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38217,9 +41667,14 @@
]
},
{
- "component": "BIconPieChart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconLockFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38265,9 +41720,14 @@
]
},
{
- "component": "BIconPieChartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMailbox",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38313,9 +41773,14 @@
]
},
{
- "component": "BIconPip",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMailbox2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38361,9 +41826,14 @@
]
},
{
- "component": "BIconPipFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMap",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38409,9 +41879,14 @@
]
},
{
- "component": "BIconPlay",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMapFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38457,9 +41932,14 @@
]
},
{
- "component": "BIconPlayFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMarkdown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38505,9 +41985,14 @@
]
},
{
- "component": "BIconPlug",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMarkdownFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38553,9 +42038,14 @@
]
},
{
- "component": "BIconPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMenuApp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38601,9 +42091,14 @@
]
},
{
- "component": "BIconPlusCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMenuAppFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38649,9 +42144,14 @@
]
},
{
- "component": "BIconPlusCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMenuButton",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38697,9 +42197,14 @@
]
},
{
- "component": "BIconPlusSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMenuButtonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38745,9 +42250,14 @@
]
},
{
- "component": "BIconPlusSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMenuButtonWide",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38793,9 +42303,14 @@
]
},
{
- "component": "BIconPower",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMenuButtonWideFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38841,9 +42356,14 @@
]
},
{
- "component": "BIconPrinter",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMenuDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38889,9 +42409,14 @@
]
},
{
- "component": "BIconPrinterFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMenuUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38937,9 +42462,14 @@
]
},
{
- "component": "BIconPuzzle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMic",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -38985,9 +42515,14 @@
]
},
{
- "component": "BIconPuzzleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMicFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39033,9 +42568,14 @@
]
},
{
- "component": "BIconQuestion",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMicMute",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39081,9 +42621,14 @@
]
},
{
- "component": "BIconQuestionCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMicMuteFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39129,9 +42674,14 @@
]
},
{
- "component": "BIconQuestionCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMinecart",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39177,9 +42727,14 @@
]
},
{
- "component": "BIconQuestionDiamond",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMinecartLoaded",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39225,9 +42780,14 @@
]
},
{
- "component": "BIconQuestionDiamondFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMoon",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39273,9 +42833,14 @@
]
},
{
- "component": "BIconQuestionOctagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMouse",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39321,9 +42886,14 @@
]
},
{
- "component": "BIconQuestionOctagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMouse2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39369,9 +42939,14 @@
]
},
{
- "component": "BIconQuestionSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMouse3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39417,9 +42992,14 @@
]
},
{
- "component": "BIconQuestionSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMusicNote",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39465,9 +43045,14 @@
]
},
{
- "component": "BIconReceipt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMusicNoteBeamed",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39513,57 +43098,14 @@
]
},
{
- "component": "BIconReceiptCutoff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMusicNoteList",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconReception0",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39609,9 +43151,14 @@
]
},
{
- "component": "BIconReception1",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMusicPlayer",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39657,9 +43204,14 @@
]
},
{
- "component": "BIconReception2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconMusicPlayerFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39705,9 +43257,14 @@
]
},
{
- "component": "BIconReception3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconNewspaper",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39753,9 +43310,14 @@
]
},
{
- "component": "BIconReception4",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconNodeMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39801,9 +43363,14 @@
]
},
{
- "component": "BIconReply",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconNodeMinusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39849,9 +43416,14 @@
]
},
{
- "component": "BIconReplyAll",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconNodePlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39897,9 +43469,14 @@
]
},
{
- "component": "BIconReplyAllFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconNodePlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39945,9 +43522,14 @@
]
},
{
- "component": "BIconReplyFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconNut",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -39993,9 +43575,14 @@
]
},
{
- "component": "BIconRss",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconNutFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40041,9 +43628,14 @@
]
},
{
- "component": "BIconRssFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconOctagon",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40089,9 +43681,14 @@
]
},
{
- "component": "BIconScrewdriver",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconOctagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40137,9 +43734,14 @@
]
},
{
- "component": "BIconSearch",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconOctagonHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40185,9 +43787,14 @@
]
},
{
- "component": "BIconSegmentedNav",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconOption",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40233,9 +43840,14 @@
]
},
{
- "component": "BIconServer",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconOutlet",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40281,9 +43893,14 @@
]
},
{
- "component": "BIconShare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPaperclip",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40329,9 +43946,14 @@
]
},
{
- "component": "BIconShareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconParagraph",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40377,9 +43999,14 @@
]
},
{
- "component": "BIconShield",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40425,9 +44052,14 @@
]
},
{
- "component": "BIconShieldCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchCheckFll",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40473,9 +44105,14 @@
]
},
{
- "component": "BIconShieldExclamation",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchExclamation",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40521,9 +44158,14 @@
]
},
{
- "component": "BIconShieldFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchExclamationFll",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40569,9 +44211,14 @@
]
},
{
- "component": "BIconShieldFillCheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40617,9 +44264,14 @@
]
},
{
- "component": "BIconShieldFillExclamation",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchMinusFll",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40665,9 +44317,14 @@
]
},
{
- "component": "BIconShieldFillMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40713,9 +44370,14 @@
]
},
{
- "component": "BIconShieldFillPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchPlusFll",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40761,9 +44423,14 @@
]
},
{
- "component": "BIconShieldLock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchQuestion",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40809,9 +44476,14 @@
]
},
{
- "component": "BIconShieldLockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPatchQuestionFll",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40857,9 +44529,14 @@
]
},
{
- "component": "BIconShieldMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPause",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40905,9 +44582,14 @@
]
},
{
- "component": "BIconShieldPlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPauseFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -40953,9 +44635,14 @@
]
},
{
- "component": "BIconShieldShaded",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPeace",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41001,9 +44688,14 @@
]
},
{
- "component": "BIconShieldSlash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPeaceFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41049,9 +44741,14 @@
]
},
{
- "component": "BIconShieldSlashFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPen",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41097,9 +44794,14 @@
]
},
{
- "component": "BIconShift",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPenFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41145,9 +44847,14 @@
]
},
{
- "component": "BIconShiftFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPencil",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41193,9 +44900,14 @@
]
},
{
- "component": "BIconShop",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPencilFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41241,9 +44953,14 @@
]
},
{
- "component": "BIconShopWindow",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPencilSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41289,9 +45006,14 @@
]
},
{
- "component": "BIconShuffle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPentagon",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41337,9 +45059,14 @@
]
},
{
- "component": "BIconSignpost",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPentagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41385,9 +45112,14 @@
]
},
{
- "component": "BIconSignpost2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPentagonHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41433,9 +45165,14 @@
]
},
{
- "component": "BIconSignpost2Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPeople",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41481,9 +45218,14 @@
]
},
{
- "component": "BIconSignpostFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPeopleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41529,9 +45271,14 @@
]
},
{
- "component": "BIconSignpostSplit",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPercent",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41577,9 +45324,14 @@
]
},
{
- "component": "BIconSignpostSplitFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPerson",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41625,9 +45377,14 @@
]
},
{
- "component": "BIconSim",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonBadge",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41673,9 +45430,14 @@
]
},
{
- "component": "BIconSimFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonBadgeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41721,9 +45483,14 @@
]
},
{
- "component": "BIconSkipBackward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonBoundingBox",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41769,9 +45536,14 @@
]
},
{
- "component": "BIconSkipBackwardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41817,9 +45589,14 @@
]
},
{
- "component": "BIconSkipEnd",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonCheckFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41865,9 +45642,14 @@
]
},
{
- "component": "BIconSkipEndFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41913,9 +45695,14 @@
]
},
{
- "component": "BIconSkipForward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonDash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -41961,9 +45748,14 @@
]
},
{
- "component": "BIconSkipForwardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonDashFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42009,9 +45801,14 @@
]
},
{
- "component": "BIconSkipStart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42057,9 +45854,14 @@
]
},
{
- "component": "BIconSkipStartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonLinesFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42105,9 +45907,14 @@
]
},
{
- "component": "BIconSlash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42153,57 +45960,14 @@
]
},
{
- "component": "BIconSlashCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonPlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconSlashCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42249,57 +46013,14 @@
]
},
{
- "component": "BIconSlashSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconSlashSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42345,57 +46066,14 @@
]
},
{
- "component": "BIconSliders",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconSmartwatch",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42441,9 +46119,14 @@
]
},
{
- "component": "BIconSortAlphaDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPersonXFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42489,9 +46172,14 @@
]
},
{
- "component": "BIconSortAlphaDownAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPhone",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42537,9 +46225,14 @@
]
},
{
- "component": "BIconSortAlphaUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPhoneFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42585,9 +46278,14 @@
]
},
{
- "component": "BIconSortAlphaUpAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPhoneLandscape",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42633,9 +46331,14 @@
]
},
{
- "component": "BIconSortDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPhoneLandscapeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42681,9 +46384,14 @@
]
},
{
- "component": "BIconSortDownAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPhoneVibrate",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42729,9 +46437,14 @@
]
},
{
- "component": "BIconSortNumericDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPieChart",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42777,9 +46490,14 @@
]
},
{
- "component": "BIconSortNumericDownAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPieChartFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42825,9 +46543,14 @@
]
},
{
- "component": "BIconSortNumericUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPip",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42873,9 +46596,14 @@
]
},
{
- "component": "BIconSortNumericUpAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPipFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42921,9 +46649,14 @@
]
},
{
- "component": "BIconSortUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlay",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -42969,9 +46702,14 @@
]
},
{
- "component": "BIconSortUpAlt",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlayFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43017,9 +46755,14 @@
]
},
{
- "component": "BIconSoundwave",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlug",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43065,9 +46808,14 @@
]
},
{
- "component": "BIconSpeaker",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlugFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43113,9 +46861,14 @@
]
},
{
- "component": "BIconSpellcheck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43161,9 +46914,14 @@
]
},
{
- "component": "BIconSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlusCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43209,9 +46967,14 @@
]
},
{
- "component": "BIconSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlusCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43257,9 +47020,14 @@
]
},
{
- "component": "BIconSquareHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlusSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43305,9 +47073,14 @@
]
},
{
- "component": "BIconStar",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPlusSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43353,9 +47126,14 @@
]
},
{
- "component": "BIconStarFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPower",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43401,9 +47179,14 @@
]
},
{
- "component": "BIconStarHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPrinter",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43449,9 +47232,14 @@
]
},
{
- "component": "BIconStickies",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPrinterFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43497,9 +47285,14 @@
]
},
{
- "component": "BIconStickiesFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPuzzle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43545,9 +47338,14 @@
]
},
{
- "component": "BIconSticky",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconPuzzleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43593,9 +47391,14 @@
]
},
{
- "component": "BIconStickyFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestion",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43641,9 +47444,14 @@
]
},
{
- "component": "BIconStop",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestionCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43689,9 +47497,14 @@
]
},
{
- "component": "BIconStopFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestionCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43737,9 +47550,14 @@
]
},
{
- "component": "BIconStoplights",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestionDiamond",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43785,9 +47603,14 @@
]
},
{
- "component": "BIconStoplightsFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestionDiamondFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43833,9 +47656,14 @@
]
},
{
- "component": "BIconStopwatch",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestionOctagon",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43881,9 +47709,14 @@
]
},
{
- "component": "BIconStopwatchFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestionOctagonFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43929,9 +47762,14 @@
]
},
{
- "component": "BIconSubtract",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestionSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -43977,9 +47815,14 @@
]
},
{
- "component": "BIconSuitClub",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconQuestionSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44025,9 +47868,14 @@
]
},
{
- "component": "BIconSuitClubFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReceipt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44073,9 +47921,14 @@
]
},
{
- "component": "BIconSuitDiamond",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReceiptCutoff",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44121,9 +47974,14 @@
]
},
{
- "component": "BIconSuitDiamondFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReception0",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44169,9 +48027,14 @@
]
},
{
- "component": "BIconSuitHeart",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReception1",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44217,9 +48080,14 @@
]
},
{
- "component": "BIconSuitHeartFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReception2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44265,9 +48133,14 @@
]
},
{
- "component": "BIconSuitSpade",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReception3",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44313,9 +48186,14 @@
]
},
{
- "component": "BIconSuitSpadeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReception4",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44361,9 +48239,14 @@
]
},
{
- "component": "BIconSun",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReply",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44409,9 +48292,14 @@
]
},
{
- "component": "BIconSunglasses",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReplyAll",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44457,9 +48345,14 @@
]
},
{
- "component": "BIconTable",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReplyAllFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44505,9 +48398,14 @@
]
},
{
- "component": "BIconTablet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconReplyFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44553,9 +48451,14 @@
]
},
{
- "component": "BIconTabletFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconRss",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44601,9 +48504,14 @@
]
},
{
- "component": "BIconTabletLandscape",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconRssFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44649,9 +48557,14 @@
]
},
{
- "component": "BIconTabletLandscapeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconScissors",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44697,9 +48610,14 @@
]
},
{
- "component": "BIconTag",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconScrewdriver",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44745,9 +48663,14 @@
]
},
{
- "component": "BIconTagFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSearch",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44793,9 +48716,14 @@
]
},
{
- "component": "BIconTags",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSegmentedNav",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44841,9 +48769,14 @@
]
},
{
- "component": "BIconTagsFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconServer",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44889,9 +48822,14 @@
]
},
{
- "component": "BIconTelephone",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44937,9 +48875,14 @@
]
},
{
- "component": "BIconTelephoneFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -44985,9 +48928,14 @@
]
},
{
- "component": "BIconTelephoneForward",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShield",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45033,9 +48981,14 @@
]
},
{
- "component": "BIconTelephoneForwardFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45081,9 +49034,14 @@
]
},
{
- "component": "BIconTelephoneInbound",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldExclamation",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45129,9 +49087,14 @@
]
},
{
- "component": "BIconTelephoneInboundFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45177,9 +49140,14 @@
]
},
{
- "component": "BIconTelephoneMinus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldFillCheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45225,9 +49193,14 @@
]
},
{
- "component": "BIconTelephoneMinusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldFillExclamation",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45273,9 +49246,14 @@
]
},
{
- "component": "BIconTelephoneOutbound",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldFillMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45321,9 +49299,14 @@
]
},
{
- "component": "BIconTelephoneOutboundFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldFillPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45369,9 +49352,14 @@
]
},
{
- "component": "BIconTelephonePlus",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldFillX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45417,9 +49405,14 @@
]
},
{
- "component": "BIconTelephonePlusFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldLock",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45465,9 +49458,14 @@
]
},
{
- "component": "BIconTelephoneX",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldLockFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45513,9 +49511,14 @@
]
},
{
- "component": "BIconTelephoneXFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45561,9 +49564,14 @@
]
},
{
- "component": "BIconTerminal",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldPlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45609,9 +49617,14 @@
]
},
{
- "component": "BIconTerminalFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldShaded",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45657,9 +49670,14 @@
]
},
{
- "component": "BIconTextCenter",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldSlash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45705,9 +49723,14 @@
]
},
{
- "component": "BIconTextIndentLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldSlashFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45753,9 +49776,14 @@
]
},
{
- "component": "BIconTextIndentRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShieldX",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45801,9 +49829,14 @@
]
},
{
- "component": "BIconTextLeft",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShift",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45849,9 +49882,14 @@
]
},
{
- "component": "BIconTextRight",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShiftFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45897,9 +49935,14 @@
]
},
{
- "component": "BIconTextarea",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShop",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45945,9 +49988,14 @@
]
},
{
- "component": "BIconTextareaResize",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShopWindow",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -45993,9 +50041,14 @@
]
},
{
- "component": "BIconTextareaT",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconShuffle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46041,9 +50094,14 @@
]
},
{
- "component": "BIconThermometer",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSignpost",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46089,9 +50147,14 @@
]
},
{
- "component": "BIconThermometerHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSignpost2",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46137,9 +50200,14 @@
]
},
{
- "component": "BIconThreeDots",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSignpost2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46185,9 +50253,14 @@
]
},
{
- "component": "BIconThreeDotsVertical",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSignpostFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46233,9 +50306,14 @@
]
},
{
- "component": "BIconToggle2Off",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSignpostSplit",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46281,9 +50359,14 @@
]
},
{
- "component": "BIconToggle2On",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSignpostSplitFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46329,9 +50412,14 @@
]
},
{
- "component": "BIconToggleOff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSim",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46377,9 +50465,14 @@
]
},
{
- "component": "BIconToggleOn",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSimFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46425,9 +50518,14 @@
]
},
{
- "component": "BIconToggles",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSkipBackward",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46473,9 +50571,14 @@
]
},
{
- "component": "BIconToggles2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSkipBackwardFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46521,9 +50624,14 @@
]
},
{
- "component": "BIconTools",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSkipEnd",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46569,9 +50677,14 @@
]
},
{
- "component": "BIconTrash",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSkipEndFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46617,9 +50730,14 @@
]
},
{
- "component": "BIconTrash2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSkipForward",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46665,9 +50783,14 @@
]
},
{
- "component": "BIconTrash2Fill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSkipForwardFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46713,9 +50836,14 @@
]
},
{
- "component": "BIconTrashFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSkipStart",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46761,9 +50889,14 @@
]
},
{
- "component": "BIconTree",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSkipStartFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46809,9 +50942,14 @@
]
},
{
- "component": "BIconTreeFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSlash",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46857,9 +50995,14 @@
]
},
{
- "component": "BIconTriangle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSlashCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46905,9 +51048,14 @@
]
},
{
- "component": "BIconTriangleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSlashCircleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -46953,9 +51101,14 @@
]
},
{
- "component": "BIconTriangleHalf",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSlashSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47001,57 +51154,14 @@
]
},
{
- "component": "BIconTrophy",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSlashSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
- },
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconTruck",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47097,57 +51207,14 @@
]
},
{
- "component": "BIconTruckFlatbed",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSliders",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
{
- "prop": "variant",
- "description": "Contextual color variant. By default the icon inherits the current text color"
- },
- {
- "prop": "fontScale",
- "description": "Scale the icons current font size"
- },
- {
- "prop": "scale",
- "description": "Scales the icon's SVG, without increasing the font size"
- },
- {
- "prop": "rotate",
- "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
},
- {
- "prop": "flipH",
- "description": "Flips the icon horizontally"
- },
- {
- "prop": "flipV",
- "description": "Flips the icon vertically"
- },
- {
- "prop": "shiftH",
- "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
- },
- {
- "prop": "shiftV",
- "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
- },
- {
- "prop": "stacked",
- "version": "2.3.0",
- "description": "Set this prop to true when placing inside a BIconstack component"
- },
- {
- "prop": "animation",
- "version": "2.7.0",
- "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
- }
- ]
- },
- {
- "component": "BIconTv",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
- "props": [
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47193,9 +51260,14 @@
]
},
{
- "component": "BIconTvFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSmartwatch",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47241,9 +51313,14 @@
]
},
{
- "component": "BIconType",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortAlphaDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47289,9 +51366,14 @@
]
},
{
- "component": "BIconTypeBold",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortAlphaDownAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47337,9 +51419,14 @@
]
},
{
- "component": "BIconTypeH1",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortAlphaUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47385,9 +51472,14 @@
]
},
{
- "component": "BIconTypeH2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortAlphaUpAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47433,9 +51525,14 @@
]
},
{
- "component": "BIconTypeH3",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47481,9 +51578,14 @@
]
},
{
- "component": "BIconTypeItalic",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortDownAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47529,9 +51631,14 @@
]
},
{
- "component": "BIconTypeStrikethrough",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortNumericDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47577,9 +51684,14 @@
]
},
{
- "component": "BIconTypeUnderline",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortNumericDownAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47625,9 +51737,14 @@
]
},
{
- "component": "BIconUiChecks",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortNumericUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47673,9 +51790,14 @@
]
},
{
- "component": "BIconUiRadios",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortNumericUpAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47721,9 +51843,14 @@
]
},
{
- "component": "BIconUnion",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47769,9 +51896,14 @@
]
},
{
- "component": "BIconUnlock",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSortUpAlt",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47817,9 +51949,14 @@
]
},
{
- "component": "BIconUnlockFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSoundwave",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47865,9 +52002,14 @@
]
},
{
- "component": "BIconUpc",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSpeaker",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47913,9 +52055,14 @@
]
},
{
- "component": "BIconUpcScan",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSpeakerFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -47961,9 +52108,14 @@
]
},
{
- "component": "BIconUpload",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSpellcheck",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48009,9 +52161,14 @@
]
},
{
- "component": "BIconViewList",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSquare",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48057,9 +52214,14 @@
]
},
{
- "component": "BIconViewStacked",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSquareFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48105,9 +52267,14 @@
]
},
{
- "component": "BIconVoicemail",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSquareHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48153,9 +52320,14 @@
]
},
{
- "component": "BIconVolumeDown",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStar",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48201,9 +52373,14 @@
]
},
{
- "component": "BIconVolumeDownFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStarFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48249,9 +52426,14 @@
]
},
{
- "component": "BIconVolumeMute",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStarHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48297,9 +52479,14 @@
]
},
{
- "component": "BIconVolumeMuteFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStickies",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48345,9 +52532,14 @@
]
},
{
- "component": "BIconVolumeOff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStickiesFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48393,9 +52585,14 @@
]
},
{
- "component": "BIconVolumeOffFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSticky",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48441,9 +52638,14 @@
]
},
{
- "component": "BIconVolumeUp",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStickyFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48489,9 +52691,14 @@
]
},
{
- "component": "BIconVolumeUpFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStop",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48537,9 +52744,14 @@
]
},
{
- "component": "BIconVr",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStopFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48585,9 +52797,14 @@
]
},
{
- "component": "BIconWallet",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStoplights",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48633,9 +52850,14 @@
]
},
{
- "component": "BIconWallet2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStoplightsFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48681,9 +52903,14 @@
]
},
{
- "component": "BIconWalletFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStopwatch",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48729,9 +52956,14 @@
]
},
{
- "component": "BIconWatch",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconStopwatchFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48777,9 +53009,14 @@
]
},
{
- "component": "BIconWifi",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSubtract",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48825,9 +53062,14 @@
]
},
{
- "component": "BIconWifi1",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSuitClub",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48873,9 +53115,14 @@
]
},
{
- "component": "BIconWifi2",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSuitClubFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48921,9 +53168,14 @@
]
},
{
- "component": "BIconWifiOff",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSuitDiamond",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -48969,9 +53221,14 @@
]
},
{
- "component": "BIconWindow",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSuitDiamondFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49017,9 +53274,14 @@
]
},
{
- "component": "BIconWrench",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSuitHeart",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49065,9 +53327,14 @@
]
},
{
- "component": "BIconX",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSuitHeartFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49113,9 +53380,5632 @@
]
},
{
- "component": "BIconXCircle",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "component": "BIconSuitSpade",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconSuitSpadeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconSun",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconSunglasses",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTable",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTablet",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTabletFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTabletLandscape",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTabletLandscapeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTag",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTagFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTags",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTagsFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephone",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneForward",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneForwardFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneInbound",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneInboundFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneMinus",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneMinusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneOutbound",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneOutboundFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephonePlus",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephonePlusFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneX",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTelephoneXFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTerminal",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTerminalFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextCenter",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextIndentLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextIndentRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextLeft",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextParagraph",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextRight",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextarea",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextareaResize",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTextareaT",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconThermometer",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconThermometerHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconThreeDots",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconThreeDotsVertical",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconToggle2Off",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconToggle2On",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconToggleOff",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconToggleOn",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconToggles",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconToggles2",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTools",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTrash",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTrash2",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTrash2Fill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTrashFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTree",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTreeFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTriangle",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTriangleFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTriangleHalf",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTrophy",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTrophyFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTruck",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTruckFlatbed",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTv",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTvFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconType",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTypeBold",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTypeH1",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTypeH2",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTypeH3",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTypeItalic",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTypeStrikethrough",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconTypeUnderline",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUiChecks",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUiChecksGrid",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUiRadios",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUiRadiosGrid",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUnion",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUnlock",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUnlockFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUpc",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUpcScan",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconUpload",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVectorPen",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconViewList",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconViewStacked",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVoicemail",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVolumeDown",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVolumeDownFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVolumeMute",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVolumeMuteFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVolumeOff",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVolumeOffFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVolumeUp",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVolumeUpFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconVr",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWallet",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWallet2",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWalletFill",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWatch",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWifi",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWifi1",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWifi2",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWifiOff",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWindow",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconWrench",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconX",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
+ {
+ "prop": "variant",
+ "description": "Contextual color variant. By default the icon inherits the current text color"
+ },
+ {
+ "prop": "fontScale",
+ "description": "Scale the icons current font size"
+ },
+ {
+ "prop": "scale",
+ "description": "Scales the icon's SVG, without increasing the font size"
+ },
+ {
+ "prop": "rotate",
+ "description": "Rotates the icon by the specified number of degrees. Positive values rotate clockwise, while negative values rotate counterclockwise"
+ },
+ {
+ "prop": "flipH",
+ "description": "Flips the icon horizontally"
+ },
+ {
+ "prop": "flipV",
+ "description": "Flips the icon vertically"
+ },
+ {
+ "prop": "shiftH",
+ "description": "Moves the icon horizontally. Positive numbers will shift the icon right, negative left. Value is in 1/16em units"
+ },
+ {
+ "prop": "shiftV",
+ "description": "Moves the icon vertically. Positive numbers will shift the icon up, negative down. Value is in 1/16em units"
+ },
+ {
+ "prop": "stacked",
+ "version": "2.3.0",
+ "description": "Set this prop to true when placing inside a BIconstack component"
+ },
+ {
+ "prop": "animation",
+ "version": "2.7.0",
+ "description": "Animate the icon. Supported built-in animations are 'cylon', 'fade', 'pulse', 'spin' and 'throb'"
+ }
+ ]
+ },
+ {
+ "component": "BIconXCircle",
+ "auto-gen": "bootstrap-icons 1.0.0",
+ "props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49162,8 +59052,13 @@
},
{
"component": "BIconXCircleFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49210,8 +59105,13 @@
},
{
"component": "BIconXDiamond",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49258,8 +59158,13 @@
},
{
"component": "BIconXDiamondFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49306,8 +59211,13 @@
},
{
"component": "BIconXOctagon",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49354,8 +59264,13 @@
},
{
"component": "BIconXOctagonFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49402,8 +59317,13 @@
},
{
"component": "BIconXSquare",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49450,8 +59370,13 @@
},
{
"component": "BIconXSquareFill",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49498,8 +59423,13 @@
},
{
"component": "BIconZoomIn",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
@@ -49546,8 +59476,13 @@
},
{
"component": "BIconZoomOut",
- "auto-gen": "bootstrap-icons 1.0.0-alpha5",
+ "auto-gen": "bootstrap-icons 1.0.0",
"props": [
+ {
+ "prop": "title",
+ "description": "Text content to place in the title",
+ "version": "2.17.0"
+ },
{
"prop": "variant",
"description": "Contextual color variant. By default the icon inherits the current text color"
diff --git a/src/icons/plugin.js b/src/icons/plugin.js
index 936b0e59185..0dde32630db 100644
--- a/src/icons/plugin.js
+++ b/src/icons/plugin.js
@@ -1,7 +1,7 @@
// --- BEGIN AUTO-GENERATED FILE ---
//
-// @IconsVersion: 1.0.0-alpha5
-// @Generated: 2020-07-15T16:57:43.043Z
+// @IconsVersion: 1.0.0
+// @Generated: 2020-09-03T14:07:12.302Z
//
// This file is generated on each build. Do not edit this file!
@@ -110,6 +110,8 @@ import {
BIconBadge4kFill,
BIconBadge8k,
BIconBadge8kFill,
+ BIconBadgeAd,
+ BIconBadgeAdFill,
BIconBadgeCc,
BIconBadgeCcFill,
BIconBadgeHd,
@@ -120,9 +122,14 @@ import {
BIconBadgeVoFill,
BIconBag,
BIconBagCheck,
+ BIconBagCheckFill,
BIconBagDash,
+ BIconBagDashFill,
BIconBagFill,
BIconBagPlus,
+ BIconBagPlusFill,
+ BIconBagX,
+ BIconBagXFill,
BIconBarChart,
BIconBarChartFill,
BIconBarChartLine,
@@ -152,9 +159,18 @@ import {
BIconBookHalf,
BIconBookmark,
BIconBookmarkCheck,
+ BIconBookmarkCheckFill,
BIconBookmarkDash,
+ BIconBookmarkDashFill,
BIconBookmarkFill,
+ BIconBookmarkHeart,
+ BIconBookmarkHeartFill,
BIconBookmarkPlus,
+ BIconBookmarkPlusFill,
+ BIconBookmarkStar,
+ BIconBookmarkStarFill,
+ BIconBookmarkX,
+ BIconBookmarkXFill,
BIconBookmarks,
BIconBookmarksFill,
BIconBookshelf,
@@ -198,6 +214,7 @@ import {
BIconBroadcast,
BIconBroadcastPin,
BIconBrush,
+ BIconBrushFill,
BIconBucket,
BIconBucketFill,
BIconBug,
@@ -227,6 +244,8 @@ import {
BIconCalendar2RangeFill,
BIconCalendar2Week,
BIconCalendar2WeekFill,
+ BIconCalendar2X,
+ BIconCalendar2XFill,
BIconCalendar3,
BIconCalendar3Event,
BIconCalendar3EventFill,
@@ -258,6 +277,8 @@ import {
BIconCalendarRangeFill,
BIconCalendarWeek,
BIconCalendarWeekFill,
+ BIconCalendarX,
+ BIconCalendarXFill,
BIconCamera,
BIconCamera2,
BIconCameraFill,
@@ -295,9 +316,14 @@ import {
BIconCart3,
BIconCart4,
BIconCartCheck,
+ BIconCartCheckFill,
BIconCartDash,
+ BIconCartDashFill,
BIconCartFill,
BIconCartPlus,
+ BIconCartPlusFill,
+ BIconCartX,
+ BIconCartXFill,
BIconCash,
BIconCashStack,
BIconCast,
@@ -372,6 +398,7 @@ import {
BIconClipboardData,
BIconClipboardMinus,
BIconClipboardPlus,
+ BIconClipboardX,
BIconClock,
BIconClockFill,
BIconClockHistory,
@@ -404,6 +431,7 @@ import {
BIconColumnsGap,
BIconCommand,
BIconCompass,
+ BIconCompassFill,
BIconCone,
BIconConeStriped,
BIconController,
@@ -417,6 +445,7 @@ import {
BIconCreditCardFill,
BIconCrop,
BIconCup,
+ BIconCupFill,
BIconCupStraw,
BIconCursor,
BIconCursorFill,
@@ -513,6 +542,7 @@ import {
BIconFileDiffFill,
BIconFileEarmark,
BIconFileEarmarkArrowDown,
+ BIconFileEarmarkArrowDownFill,
BIconFileEarmarkArrowUp,
BIconFileEarmarkArrowUpFill,
BIconFileEarmarkBinary,
@@ -525,22 +555,56 @@ import {
BIconFileEarmarkCodeFill,
BIconFileEarmarkDiff,
BIconFileEarmarkDiffFill,
+ BIconFileEarmarkEasel,
+ BIconFileEarmarkEaselFill,
BIconFileEarmarkFill,
+ BIconFileEarmarkFont,
+ BIconFileEarmarkFontFill,
+ BIconFileEarmarkImage,
+ BIconFileEarmarkImageFill,
+ BIconFileEarmarkLock,
+ BIconFileEarmarkLock2,
+ BIconFileEarmarkLock2Fill,
+ BIconFileEarmarkLockFill,
BIconFileEarmarkMedical,
BIconFileEarmarkMedicalFill,
BIconFileEarmarkMinus,
BIconFileEarmarkMinusFill,
+ BIconFileEarmarkMusic,
+ BIconFileEarmarkMusicFill,
+ BIconFileEarmarkPerson,
+ BIconFileEarmarkPersonFill,
+ BIconFileEarmarkPlay,
+ BIconFileEarmarkPlayFill,
BIconFileEarmarkPlus,
BIconFileEarmarkPlusFill,
+ BIconFileEarmarkPost,
+ BIconFileEarmarkPostFill,
+ BIconFileEarmarkRichtext,
+ BIconFileEarmarkRichtextFill,
BIconFileEarmarkRuled,
BIconFileEarmarkRuledFill,
+ BIconFileEarmarkSlides,
+ BIconFileEarmarkSlidesFill,
BIconFileEarmarkSpreadsheet,
BIconFileEarmarkSpreadsheetFill,
BIconFileEarmarkText,
BIconFileEarmarkTextFill,
+ BIconFileEarmarkX,
+ BIconFileEarmarkXFill,
BIconFileEarmarkZip,
BIconFileEarmarkZipFill,
+ BIconFileEasel,
+ BIconFileEaselFill,
BIconFileFill,
+ BIconFileFont,
+ BIconFileFontFill,
+ BIconFileImage,
+ BIconFileImageFill,
+ BIconFileLock,
+ BIconFileLock2,
+ BIconFileLock2Fill,
+ BIconFileLockFill,
BIconFileMedical,
BIconFileMedicalFill,
BIconFileMinus,
@@ -549,6 +613,8 @@ import {
BIconFileMusicFill,
BIconFilePerson,
BIconFilePersonFill,
+ BIconFilePlay,
+ BIconFilePlayFill,
BIconFilePlus,
BIconFilePlusFill,
BIconFilePost,
@@ -557,10 +623,14 @@ import {
BIconFileRichtextFill,
BIconFileRuled,
BIconFileRuledFill,
+ BIconFileSlides,
+ BIconFileSlidesFill,
BIconFileSpreadsheet,
BIconFileSpreadsheetFill,
BIconFileText,
BIconFileTextFill,
+ BIconFileX,
+ BIconFileXFill,
BIconFileZip,
BIconFileZipFill,
BIconFiles,
@@ -587,6 +657,7 @@ import {
BIconFolderPlus,
BIconFolderSymlink,
BIconFolderSymlinkFill,
+ BIconFolderX,
BIconFonts,
BIconForward,
BIconForwardFill,
@@ -602,6 +673,8 @@ import {
BIconGem,
BIconGeo,
BIconGeoAlt,
+ BIconGeoAltFill,
+ BIconGeoFill,
BIconGift,
BIconGiftFill,
BIconGlobe,
@@ -683,6 +756,7 @@ import {
BIconJournalPlus,
BIconJournalRichtext,
BIconJournalText,
+ BIconJournalX,
BIconJournals,
BIconJoystick,
BIconJustify,
@@ -730,6 +804,7 @@ import {
BIconMailbox,
BIconMailbox2,
BIconMap,
+ BIconMapFill,
BIconMarkdown,
BIconMarkdownFill,
BIconMenuApp,
@@ -784,7 +859,9 @@ import {
BIconPeace,
BIconPeaceFill,
BIconPen,
+ BIconPenFill,
BIconPencil,
+ BIconPencilFill,
BIconPencilSquare,
BIconPentagon,
BIconPentagonFill,
@@ -806,10 +883,13 @@ import {
BIconPersonPlus,
BIconPersonPlusFill,
BIconPersonSquare,
+ BIconPersonX,
+ BIconPersonXFill,
BIconPhone,
BIconPhoneFill,
BIconPhoneLandscape,
BIconPhoneLandscapeFill,
+ BIconPhoneVibrate,
BIconPieChart,
BIconPieChartFill,
BIconPip,
@@ -817,6 +897,7 @@ import {
BIconPlay,
BIconPlayFill,
BIconPlug,
+ BIconPlugFill,
BIconPlus,
BIconPlusCircle,
BIconPlusCircleFill,
@@ -849,6 +930,7 @@ import {
BIconReplyFill,
BIconRss,
BIconRssFill,
+ BIconScissors,
BIconScrewdriver,
BIconSearch,
BIconSegmentedNav,
@@ -863,6 +945,7 @@ import {
BIconShieldFillExclamation,
BIconShieldFillMinus,
BIconShieldFillPlus,
+ BIconShieldFillX,
BIconShieldLock,
BIconShieldLockFill,
BIconShieldMinus,
@@ -870,6 +953,7 @@ import {
BIconShieldShaded,
BIconShieldSlash,
BIconShieldSlashFill,
+ BIconShieldX,
BIconShift,
BIconShiftFill,
BIconShop,
@@ -912,6 +996,7 @@ import {
BIconSortUpAlt,
BIconSoundwave,
BIconSpeaker,
+ BIconSpeakerFill,
BIconSpellcheck,
BIconSquare,
BIconSquareFill,
@@ -969,6 +1054,7 @@ import {
BIconTextIndentLeft,
BIconTextIndentRight,
BIconTextLeft,
+ BIconTextParagraph,
BIconTextRight,
BIconTextarea,
BIconTextareaResize,
@@ -994,6 +1080,7 @@ import {
BIconTriangleFill,
BIconTriangleHalf,
BIconTrophy,
+ BIconTrophyFill,
BIconTruck,
BIconTruckFlatbed,
BIconTv,
@@ -1007,13 +1094,16 @@ import {
BIconTypeStrikethrough,
BIconTypeUnderline,
BIconUiChecks,
+ BIconUiChecksGrid,
BIconUiRadios,
+ BIconUiRadiosGrid,
BIconUnion,
BIconUnlock,
BIconUnlockFill,
BIconUpc,
BIconUpcScan,
BIconUpload,
+ BIconVectorPen,
BIconViewList,
BIconViewStacked,
BIconVoicemail,
@@ -1147,6 +1237,8 @@ export const iconNames = [
'BIconBadge4kFill',
'BIconBadge8k',
'BIconBadge8kFill',
+ 'BIconBadgeAd',
+ 'BIconBadgeAdFill',
'BIconBadgeCc',
'BIconBadgeCcFill',
'BIconBadgeHd',
@@ -1157,9 +1249,14 @@ export const iconNames = [
'BIconBadgeVoFill',
'BIconBag',
'BIconBagCheck',
+ 'BIconBagCheckFill',
'BIconBagDash',
+ 'BIconBagDashFill',
'BIconBagFill',
'BIconBagPlus',
+ 'BIconBagPlusFill',
+ 'BIconBagX',
+ 'BIconBagXFill',
'BIconBarChart',
'BIconBarChartFill',
'BIconBarChartLine',
@@ -1189,9 +1286,18 @@ export const iconNames = [
'BIconBookHalf',
'BIconBookmark',
'BIconBookmarkCheck',
+ 'BIconBookmarkCheckFill',
'BIconBookmarkDash',
+ 'BIconBookmarkDashFill',
'BIconBookmarkFill',
+ 'BIconBookmarkHeart',
+ 'BIconBookmarkHeartFill',
'BIconBookmarkPlus',
+ 'BIconBookmarkPlusFill',
+ 'BIconBookmarkStar',
+ 'BIconBookmarkStarFill',
+ 'BIconBookmarkX',
+ 'BIconBookmarkXFill',
'BIconBookmarks',
'BIconBookmarksFill',
'BIconBookshelf',
@@ -1235,6 +1341,7 @@ export const iconNames = [
'BIconBroadcast',
'BIconBroadcastPin',
'BIconBrush',
+ 'BIconBrushFill',
'BIconBucket',
'BIconBucketFill',
'BIconBug',
@@ -1264,6 +1371,8 @@ export const iconNames = [
'BIconCalendar2RangeFill',
'BIconCalendar2Week',
'BIconCalendar2WeekFill',
+ 'BIconCalendar2X',
+ 'BIconCalendar2XFill',
'BIconCalendar3',
'BIconCalendar3Event',
'BIconCalendar3EventFill',
@@ -1295,6 +1404,8 @@ export const iconNames = [
'BIconCalendarRangeFill',
'BIconCalendarWeek',
'BIconCalendarWeekFill',
+ 'BIconCalendarX',
+ 'BIconCalendarXFill',
'BIconCamera',
'BIconCamera2',
'BIconCameraFill',
@@ -1332,9 +1443,14 @@ export const iconNames = [
'BIconCart3',
'BIconCart4',
'BIconCartCheck',
+ 'BIconCartCheckFill',
'BIconCartDash',
+ 'BIconCartDashFill',
'BIconCartFill',
'BIconCartPlus',
+ 'BIconCartPlusFill',
+ 'BIconCartX',
+ 'BIconCartXFill',
'BIconCash',
'BIconCashStack',
'BIconCast',
@@ -1409,6 +1525,7 @@ export const iconNames = [
'BIconClipboardData',
'BIconClipboardMinus',
'BIconClipboardPlus',
+ 'BIconClipboardX',
'BIconClock',
'BIconClockFill',
'BIconClockHistory',
@@ -1441,6 +1558,7 @@ export const iconNames = [
'BIconColumnsGap',
'BIconCommand',
'BIconCompass',
+ 'BIconCompassFill',
'BIconCone',
'BIconConeStriped',
'BIconController',
@@ -1454,6 +1572,7 @@ export const iconNames = [
'BIconCreditCardFill',
'BIconCrop',
'BIconCup',
+ 'BIconCupFill',
'BIconCupStraw',
'BIconCursor',
'BIconCursorFill',
@@ -1550,6 +1669,7 @@ export const iconNames = [
'BIconFileDiffFill',
'BIconFileEarmark',
'BIconFileEarmarkArrowDown',
+ 'BIconFileEarmarkArrowDownFill',
'BIconFileEarmarkArrowUp',
'BIconFileEarmarkArrowUpFill',
'BIconFileEarmarkBinary',
@@ -1562,22 +1682,56 @@ export const iconNames = [
'BIconFileEarmarkCodeFill',
'BIconFileEarmarkDiff',
'BIconFileEarmarkDiffFill',
+ 'BIconFileEarmarkEasel',
+ 'BIconFileEarmarkEaselFill',
'BIconFileEarmarkFill',
+ 'BIconFileEarmarkFont',
+ 'BIconFileEarmarkFontFill',
+ 'BIconFileEarmarkImage',
+ 'BIconFileEarmarkImageFill',
+ 'BIconFileEarmarkLock',
+ 'BIconFileEarmarkLock2',
+ 'BIconFileEarmarkLock2Fill',
+ 'BIconFileEarmarkLockFill',
'BIconFileEarmarkMedical',
'BIconFileEarmarkMedicalFill',
'BIconFileEarmarkMinus',
'BIconFileEarmarkMinusFill',
+ 'BIconFileEarmarkMusic',
+ 'BIconFileEarmarkMusicFill',
+ 'BIconFileEarmarkPerson',
+ 'BIconFileEarmarkPersonFill',
+ 'BIconFileEarmarkPlay',
+ 'BIconFileEarmarkPlayFill',
'BIconFileEarmarkPlus',
'BIconFileEarmarkPlusFill',
+ 'BIconFileEarmarkPost',
+ 'BIconFileEarmarkPostFill',
+ 'BIconFileEarmarkRichtext',
+ 'BIconFileEarmarkRichtextFill',
'BIconFileEarmarkRuled',
'BIconFileEarmarkRuledFill',
+ 'BIconFileEarmarkSlides',
+ 'BIconFileEarmarkSlidesFill',
'BIconFileEarmarkSpreadsheet',
'BIconFileEarmarkSpreadsheetFill',
'BIconFileEarmarkText',
'BIconFileEarmarkTextFill',
+ 'BIconFileEarmarkX',
+ 'BIconFileEarmarkXFill',
'BIconFileEarmarkZip',
'BIconFileEarmarkZipFill',
+ 'BIconFileEasel',
+ 'BIconFileEaselFill',
'BIconFileFill',
+ 'BIconFileFont',
+ 'BIconFileFontFill',
+ 'BIconFileImage',
+ 'BIconFileImageFill',
+ 'BIconFileLock',
+ 'BIconFileLock2',
+ 'BIconFileLock2Fill',
+ 'BIconFileLockFill',
'BIconFileMedical',
'BIconFileMedicalFill',
'BIconFileMinus',
@@ -1586,6 +1740,8 @@ export const iconNames = [
'BIconFileMusicFill',
'BIconFilePerson',
'BIconFilePersonFill',
+ 'BIconFilePlay',
+ 'BIconFilePlayFill',
'BIconFilePlus',
'BIconFilePlusFill',
'BIconFilePost',
@@ -1594,10 +1750,14 @@ export const iconNames = [
'BIconFileRichtextFill',
'BIconFileRuled',
'BIconFileRuledFill',
+ 'BIconFileSlides',
+ 'BIconFileSlidesFill',
'BIconFileSpreadsheet',
'BIconFileSpreadsheetFill',
'BIconFileText',
'BIconFileTextFill',
+ 'BIconFileX',
+ 'BIconFileXFill',
'BIconFileZip',
'BIconFileZipFill',
'BIconFiles',
@@ -1624,6 +1784,7 @@ export const iconNames = [
'BIconFolderPlus',
'BIconFolderSymlink',
'BIconFolderSymlinkFill',
+ 'BIconFolderX',
'BIconFonts',
'BIconForward',
'BIconForwardFill',
@@ -1639,6 +1800,8 @@ export const iconNames = [
'BIconGem',
'BIconGeo',
'BIconGeoAlt',
+ 'BIconGeoAltFill',
+ 'BIconGeoFill',
'BIconGift',
'BIconGiftFill',
'BIconGlobe',
@@ -1720,6 +1883,7 @@ export const iconNames = [
'BIconJournalPlus',
'BIconJournalRichtext',
'BIconJournalText',
+ 'BIconJournalX',
'BIconJournals',
'BIconJoystick',
'BIconJustify',
@@ -1767,6 +1931,7 @@ export const iconNames = [
'BIconMailbox',
'BIconMailbox2',
'BIconMap',
+ 'BIconMapFill',
'BIconMarkdown',
'BIconMarkdownFill',
'BIconMenuApp',
@@ -1821,7 +1986,9 @@ export const iconNames = [
'BIconPeace',
'BIconPeaceFill',
'BIconPen',
+ 'BIconPenFill',
'BIconPencil',
+ 'BIconPencilFill',
'BIconPencilSquare',
'BIconPentagon',
'BIconPentagonFill',
@@ -1843,10 +2010,13 @@ export const iconNames = [
'BIconPersonPlus',
'BIconPersonPlusFill',
'BIconPersonSquare',
+ 'BIconPersonX',
+ 'BIconPersonXFill',
'BIconPhone',
'BIconPhoneFill',
'BIconPhoneLandscape',
'BIconPhoneLandscapeFill',
+ 'BIconPhoneVibrate',
'BIconPieChart',
'BIconPieChartFill',
'BIconPip',
@@ -1854,6 +2024,7 @@ export const iconNames = [
'BIconPlay',
'BIconPlayFill',
'BIconPlug',
+ 'BIconPlugFill',
'BIconPlus',
'BIconPlusCircle',
'BIconPlusCircleFill',
@@ -1886,6 +2057,7 @@ export const iconNames = [
'BIconReplyFill',
'BIconRss',
'BIconRssFill',
+ 'BIconScissors',
'BIconScrewdriver',
'BIconSearch',
'BIconSegmentedNav',
@@ -1900,6 +2072,7 @@ export const iconNames = [
'BIconShieldFillExclamation',
'BIconShieldFillMinus',
'BIconShieldFillPlus',
+ 'BIconShieldFillX',
'BIconShieldLock',
'BIconShieldLockFill',
'BIconShieldMinus',
@@ -1907,6 +2080,7 @@ export const iconNames = [
'BIconShieldShaded',
'BIconShieldSlash',
'BIconShieldSlashFill',
+ 'BIconShieldX',
'BIconShift',
'BIconShiftFill',
'BIconShop',
@@ -1949,6 +2123,7 @@ export const iconNames = [
'BIconSortUpAlt',
'BIconSoundwave',
'BIconSpeaker',
+ 'BIconSpeakerFill',
'BIconSpellcheck',
'BIconSquare',
'BIconSquareFill',
@@ -2006,6 +2181,7 @@ export const iconNames = [
'BIconTextIndentLeft',
'BIconTextIndentRight',
'BIconTextLeft',
+ 'BIconTextParagraph',
'BIconTextRight',
'BIconTextarea',
'BIconTextareaResize',
@@ -2031,6 +2207,7 @@ export const iconNames = [
'BIconTriangleFill',
'BIconTriangleHalf',
'BIconTrophy',
+ 'BIconTrophyFill',
'BIconTruck',
'BIconTruckFlatbed',
'BIconTv',
@@ -2044,13 +2221,16 @@ export const iconNames = [
'BIconTypeStrikethrough',
'BIconTypeUnderline',
'BIconUiChecks',
+ 'BIconUiChecksGrid',
'BIconUiRadios',
+ 'BIconUiRadiosGrid',
'BIconUnion',
'BIconUnlock',
'BIconUnlockFill',
'BIconUpc',
'BIconUpcScan',
'BIconUpload',
+ 'BIconVectorPen',
'BIconViewList',
'BIconViewStacked',
'BIconVoicemail',
@@ -2189,6 +2369,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconBadge4kFill,
BIconBadge8k,
BIconBadge8kFill,
+ BIconBadgeAd,
+ BIconBadgeAdFill,
BIconBadgeCc,
BIconBadgeCcFill,
BIconBadgeHd,
@@ -2199,9 +2381,14 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconBadgeVoFill,
BIconBag,
BIconBagCheck,
+ BIconBagCheckFill,
BIconBagDash,
+ BIconBagDashFill,
BIconBagFill,
BIconBagPlus,
+ BIconBagPlusFill,
+ BIconBagX,
+ BIconBagXFill,
BIconBarChart,
BIconBarChartFill,
BIconBarChartLine,
@@ -2231,9 +2418,18 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconBookHalf,
BIconBookmark,
BIconBookmarkCheck,
+ BIconBookmarkCheckFill,
BIconBookmarkDash,
+ BIconBookmarkDashFill,
BIconBookmarkFill,
+ BIconBookmarkHeart,
+ BIconBookmarkHeartFill,
BIconBookmarkPlus,
+ BIconBookmarkPlusFill,
+ BIconBookmarkStar,
+ BIconBookmarkStarFill,
+ BIconBookmarkX,
+ BIconBookmarkXFill,
BIconBookmarks,
BIconBookmarksFill,
BIconBookshelf,
@@ -2277,6 +2473,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconBroadcast,
BIconBroadcastPin,
BIconBrush,
+ BIconBrushFill,
BIconBucket,
BIconBucketFill,
BIconBug,
@@ -2306,6 +2503,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconCalendar2RangeFill,
BIconCalendar2Week,
BIconCalendar2WeekFill,
+ BIconCalendar2X,
+ BIconCalendar2XFill,
BIconCalendar3,
BIconCalendar3Event,
BIconCalendar3EventFill,
@@ -2337,6 +2536,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconCalendarRangeFill,
BIconCalendarWeek,
BIconCalendarWeekFill,
+ BIconCalendarX,
+ BIconCalendarXFill,
BIconCamera,
BIconCamera2,
BIconCameraFill,
@@ -2374,9 +2575,14 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconCart3,
BIconCart4,
BIconCartCheck,
+ BIconCartCheckFill,
BIconCartDash,
+ BIconCartDashFill,
BIconCartFill,
BIconCartPlus,
+ BIconCartPlusFill,
+ BIconCartX,
+ BIconCartXFill,
BIconCash,
BIconCashStack,
BIconCast,
@@ -2451,6 +2657,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconClipboardData,
BIconClipboardMinus,
BIconClipboardPlus,
+ BIconClipboardX,
BIconClock,
BIconClockFill,
BIconClockHistory,
@@ -2483,6 +2690,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconColumnsGap,
BIconCommand,
BIconCompass,
+ BIconCompassFill,
BIconCone,
BIconConeStriped,
BIconController,
@@ -2496,6 +2704,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconCreditCardFill,
BIconCrop,
BIconCup,
+ BIconCupFill,
BIconCupStraw,
BIconCursor,
BIconCursorFill,
@@ -2592,6 +2801,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconFileDiffFill,
BIconFileEarmark,
BIconFileEarmarkArrowDown,
+ BIconFileEarmarkArrowDownFill,
BIconFileEarmarkArrowUp,
BIconFileEarmarkArrowUpFill,
BIconFileEarmarkBinary,
@@ -2604,22 +2814,56 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconFileEarmarkCodeFill,
BIconFileEarmarkDiff,
BIconFileEarmarkDiffFill,
+ BIconFileEarmarkEasel,
+ BIconFileEarmarkEaselFill,
BIconFileEarmarkFill,
+ BIconFileEarmarkFont,
+ BIconFileEarmarkFontFill,
+ BIconFileEarmarkImage,
+ BIconFileEarmarkImageFill,
+ BIconFileEarmarkLock,
+ BIconFileEarmarkLock2,
+ BIconFileEarmarkLock2Fill,
+ BIconFileEarmarkLockFill,
BIconFileEarmarkMedical,
BIconFileEarmarkMedicalFill,
BIconFileEarmarkMinus,
BIconFileEarmarkMinusFill,
+ BIconFileEarmarkMusic,
+ BIconFileEarmarkMusicFill,
+ BIconFileEarmarkPerson,
+ BIconFileEarmarkPersonFill,
+ BIconFileEarmarkPlay,
+ BIconFileEarmarkPlayFill,
BIconFileEarmarkPlus,
BIconFileEarmarkPlusFill,
+ BIconFileEarmarkPost,
+ BIconFileEarmarkPostFill,
+ BIconFileEarmarkRichtext,
+ BIconFileEarmarkRichtextFill,
BIconFileEarmarkRuled,
BIconFileEarmarkRuledFill,
+ BIconFileEarmarkSlides,
+ BIconFileEarmarkSlidesFill,
BIconFileEarmarkSpreadsheet,
BIconFileEarmarkSpreadsheetFill,
BIconFileEarmarkText,
BIconFileEarmarkTextFill,
+ BIconFileEarmarkX,
+ BIconFileEarmarkXFill,
BIconFileEarmarkZip,
BIconFileEarmarkZipFill,
+ BIconFileEasel,
+ BIconFileEaselFill,
BIconFileFill,
+ BIconFileFont,
+ BIconFileFontFill,
+ BIconFileImage,
+ BIconFileImageFill,
+ BIconFileLock,
+ BIconFileLock2,
+ BIconFileLock2Fill,
+ BIconFileLockFill,
BIconFileMedical,
BIconFileMedicalFill,
BIconFileMinus,
@@ -2628,6 +2872,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconFileMusicFill,
BIconFilePerson,
BIconFilePersonFill,
+ BIconFilePlay,
+ BIconFilePlayFill,
BIconFilePlus,
BIconFilePlusFill,
BIconFilePost,
@@ -2636,10 +2882,14 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconFileRichtextFill,
BIconFileRuled,
BIconFileRuledFill,
+ BIconFileSlides,
+ BIconFileSlidesFill,
BIconFileSpreadsheet,
BIconFileSpreadsheetFill,
BIconFileText,
BIconFileTextFill,
+ BIconFileX,
+ BIconFileXFill,
BIconFileZip,
BIconFileZipFill,
BIconFiles,
@@ -2666,6 +2916,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconFolderPlus,
BIconFolderSymlink,
BIconFolderSymlinkFill,
+ BIconFolderX,
BIconFonts,
BIconForward,
BIconForwardFill,
@@ -2681,6 +2932,8 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconGem,
BIconGeo,
BIconGeoAlt,
+ BIconGeoAltFill,
+ BIconGeoFill,
BIconGift,
BIconGiftFill,
BIconGlobe,
@@ -2762,6 +3015,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconJournalPlus,
BIconJournalRichtext,
BIconJournalText,
+ BIconJournalX,
BIconJournals,
BIconJoystick,
BIconJustify,
@@ -2809,6 +3063,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconMailbox,
BIconMailbox2,
BIconMap,
+ BIconMapFill,
BIconMarkdown,
BIconMarkdownFill,
BIconMenuApp,
@@ -2863,7 +3118,9 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconPeace,
BIconPeaceFill,
BIconPen,
+ BIconPenFill,
BIconPencil,
+ BIconPencilFill,
BIconPencilSquare,
BIconPentagon,
BIconPentagonFill,
@@ -2885,10 +3142,13 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconPersonPlus,
BIconPersonPlusFill,
BIconPersonSquare,
+ BIconPersonX,
+ BIconPersonXFill,
BIconPhone,
BIconPhoneFill,
BIconPhoneLandscape,
BIconPhoneLandscapeFill,
+ BIconPhoneVibrate,
BIconPieChart,
BIconPieChartFill,
BIconPip,
@@ -2896,6 +3156,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconPlay,
BIconPlayFill,
BIconPlug,
+ BIconPlugFill,
BIconPlus,
BIconPlusCircle,
BIconPlusCircleFill,
@@ -2928,6 +3189,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconReplyFill,
BIconRss,
BIconRssFill,
+ BIconScissors,
BIconScrewdriver,
BIconSearch,
BIconSegmentedNav,
@@ -2942,6 +3204,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconShieldFillExclamation,
BIconShieldFillMinus,
BIconShieldFillPlus,
+ BIconShieldFillX,
BIconShieldLock,
BIconShieldLockFill,
BIconShieldMinus,
@@ -2949,6 +3212,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconShieldShaded,
BIconShieldSlash,
BIconShieldSlashFill,
+ BIconShieldX,
BIconShift,
BIconShiftFill,
BIconShop,
@@ -2991,6 +3255,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconSortUpAlt,
BIconSoundwave,
BIconSpeaker,
+ BIconSpeakerFill,
BIconSpellcheck,
BIconSquare,
BIconSquareFill,
@@ -3048,6 +3313,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconTextIndentLeft,
BIconTextIndentRight,
BIconTextLeft,
+ BIconTextParagraph,
BIconTextRight,
BIconTextarea,
BIconTextareaResize,
@@ -3073,6 +3339,7 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconTriangleFill,
BIconTriangleHalf,
BIconTrophy,
+ BIconTrophyFill,
BIconTruck,
BIconTruckFlatbed,
BIconTv,
@@ -3086,13 +3353,16 @@ export const IconsPlugin = /*#__PURE__*/ pluginFactoryNoConfig({
BIconTypeStrikethrough,
BIconTypeUnderline,
BIconUiChecks,
+ BIconUiChecksGrid,
BIconUiRadios,
+ BIconUiRadiosGrid,
BIconUnion,
BIconUnlock,
BIconUnlockFill,
BIconUpc,
BIconUpcScan,
BIconUpload,
+ BIconVectorPen,
BIconViewList,
BIconViewStacked,
BIconVoicemail,
diff --git a/src/index.js b/src/index.js
index 67863519c04..5ab58738dba 100644
--- a/src/index.js
+++ b/src/index.js
@@ -283,6 +283,10 @@ export { BProgressBar } from './components/progress/progress-bar'
export { SidebarPlugin } from './components/sidebar'
export { BSidebar } from './components/sidebar/sidebar'
+// export * from './components/skeleton'
+export { SkeletonPlugin } from './components/skeleton'
+export { BSkeleton } from './components/skeleton'
+
// export * from './components/spinner'
export { SpinnerPlugin } from './components/spinner'
export { BSpinner } from './components/spinner/spinner'
diff --git a/src/mixins/dropdown.js b/src/mixins/dropdown.js
index 2068babd9ca..304ccbb612b 100644
--- a/src/mixins/dropdown.js
+++ b/src/mixins/dropdown.js
@@ -2,7 +2,9 @@ import Popper from 'popper.js'
import KeyCodes from '../utils/key-codes'
import { BvEvent } from '../utils/bv-event.class'
import { attemptFocus, closest, contains, isVisible, requestAF, selectAll } from '../utils/dom'
+import { stopEvent } from '../utils/events'
import { isNull } from '../utils/inspect'
+import { mergeDeep } from '../utils/object'
import { HTMLElement } from '../utils/safe-types'
import { warn } from '../utils/warn'
import clickOutMixin from './click-out'
@@ -67,17 +69,17 @@ export const commonProps = {
default: false
},
offset: {
- // Number of pixels to offset menu, or a CSS unit value (i.e. 1px, 1rem, etc)
+ // Number of pixels to offset menu, or a CSS unit value (i.e. `1px`, `1rem`, etc.)
type: [Number, String],
default: 0
},
noFlip: {
- // Disable auto-flipping of menu from bottom<=>top
+ // Disable auto-flipping of menu from bottom <=> top
type: Boolean,
default: false
},
popperOpts: {
- // type: Object,
+ type: Object,
default: () => {}
},
boundary: {
@@ -127,6 +129,13 @@ export default {
return 'dropleft'
}
return ''
+ },
+ boundaryClass() {
+ // Position `static` is needed to allow menu to "breakout" of the `scrollParent`
+ // boundaries when boundary is anything other than `scrollParent`
+ // See: https://github.com/twbs/bootstrap/issues/24251#issuecomment-341413786
+ const { boundary } = this
+ return boundary !== 'scrollParent' || !boundary ? 'position-static' : ''
}
},
watch: {
@@ -266,10 +275,11 @@ export default {
flip: { enabled: !this.noFlip }
}
}
- if (this.boundary) {
- popperConfig.modifiers.preventOverflow = { boundariesElement: this.boundary }
+ const boundariesElement = this.boundary
+ if (boundariesElement) {
+ popperConfig.modifiers.preventOverflow = { boundariesElement }
}
- return { ...popperConfig, ...(this.popperOpts || {}) }
+ return mergeDeep(popperConfig, this.popperOpts || {})
},
// Turn listeners on/off while open
whileOpenListen(isOpen) {
@@ -330,8 +340,7 @@ export default {
return
}
this.$emit('toggle', evt)
- evt.preventDefault()
- evt.stopPropagation()
+ stopEvent(evt)
// Toggle visibility
if (this.visible) {
this.hide(true)
@@ -350,7 +359,7 @@ export default {
// The 'click' event will still be fired and we handle closing
// other dropdowns there too
// See https://github.com/bootstrap-vue/bootstrap-vue/issues/4328
- evt.preventDefault()
+ stopEvent(evt, { propagation: false })
},
// Called from dropdown menu context
onKeydown(evt) {
@@ -370,8 +379,7 @@ export default {
onEsc(evt) {
if (this.visible) {
this.visible = false
- evt.preventDefault()
- evt.stopPropagation()
+ stopEvent(evt)
// Return focus to original trigger button
this.$once('hidden', this.focusToggler)
}
@@ -408,8 +416,7 @@ export default {
/* istanbul ignore next: should never happen */
return
}
- evt.preventDefault()
- evt.stopPropagation()
+ stopEvent(evt)
this.$nextTick(() => {
const items = this.getItems()
if (items.length < 1) {
diff --git a/src/mixins/form-radio-check-group.js b/src/mixins/form-radio-check-group.js
index 9a6e712a515..70b6e9b4502 100644
--- a/src/mixins/form-radio-check-group.js
+++ b/src/mixins/form-radio-check-group.js
@@ -1,6 +1,6 @@
-import { htmlOrText } from '../utils/html'
import looseEqual from '../utils/loose-equal'
import normalizeSlotMixin from './normalize-slot'
+import { htmlOrText } from '../utils/html'
import { BFormCheckbox } from '../components/form-checkbox/form-checkbox'
import { BFormRadio } from '../components/form-radio/form-radio'
@@ -69,11 +69,13 @@ export default {
},
watch: {
checked(newVal) {
- this.localChecked = newVal
+ if (!looseEqual(newVal, this.localChecked)) {
+ this.localChecked = newVal
+ }
},
- localChecked(newVal, oldVal) {
- if (!looseEqual(newVal, oldVal)) {
- this.$emit('input', newVal)
+ localChecked(newValue, oldValue) {
+ if (!looseEqual(newValue, oldValue)) {
+ this.$emit('input', newValue)
}
}
},
diff --git a/src/mixins/form-radio-check.js b/src/mixins/form-radio-check.js
index 8e570dbfb9b..877bae6a267 100644
--- a/src/mixins/form-radio-check.js
+++ b/src/mixins/form-radio-check.js
@@ -1,3 +1,4 @@
+import looseEqual from '../utils/loose-equal'
import { attemptBlur, attemptFocus } from '../utils/dom'
import attrsMixin from './attrs'
import normalizeSlotMixin from './normalize-slot'
@@ -152,7 +153,6 @@ export default {
form: this.getForm,
disabled: this.isDisabled,
required: this.isRequired,
- autocomplete: 'off',
'aria-required': this.isRequired || null,
'aria-label': this.ariaLabel || null,
'aria-labelledby': this.ariaLabelledby || null
@@ -160,8 +160,10 @@ export default {
}
},
watch: {
- checked(newVal) {
- this.computedLocalChecked = newVal
+ checked(newValue) {
+ if (!looseEqual(newValue, this.computedLocalChecked)) {
+ this.computedLocalChecked = newValue
+ }
}
},
methods: {
diff --git a/src/mixins/form-text.js b/src/mixins/form-text.js
index 321dd5ef73b..164e3fafe1d 100644
--- a/src/mixins/form-text.js
+++ b/src/mixins/form-text.js
@@ -1,4 +1,5 @@
import { attemptBlur, attemptFocus } from '../utils/dom'
+import { stopEvent } from '../utils/events'
import { isFunction } from '../utils/inspect'
import { mathMax } from '../utils/math'
import { toInteger, toFloat } from '../utils/number'
@@ -161,35 +162,39 @@ export default {
if (lazy && !force) {
return
}
- value = this.modifyValue(value)
- if (value !== this.vModelValue) {
- this.clearDebounce()
- const doUpdate = () => {
+ // Make sure to always clear the debounce when `updateValue()`
+ // is called, even when the v-model hasn't changed
+ this.clearDebounce()
+ // Define the shared update logic in a method to be able to use
+ // it for immediate and debounced value changes
+ const doUpdate = () => {
+ value = this.modifyValue(value)
+ if (value !== this.vModelValue) {
this.vModelValue = value
this.$emit('update', value)
+ } else if (this.hasFormatter) {
+ // When the `vModelValue` hasn't changed but the actual input value
+ // is out of sync, make sure to change it to the given one
+ // Usually caused by browser autocomplete and how it triggers the
+ // change or input event, or depending on the formatter function
+ // https://github.com/bootstrap-vue/bootstrap-vue/issues/2657
+ // https://github.com/bootstrap-vue/bootstrap-vue/issues/3498
+ /* istanbul ignore next: hard to test */
+ const $input = this.$refs.input
+ /* istanbul ignore if: hard to test out of sync value */
+ if ($input && value !== $input.value) {
+ $input.value = value
+ }
}
- const debounce = this.computedDebounce
- // Only debounce the value update when a value greater than `0`
- // is set and we are not in lazy mode or this is a forced update
- if (debounce > 0 && !lazy && !force) {
- this.$_inputDebounceTimer = setTimeout(doUpdate, debounce)
- } else {
- // Immediately update the v-model
- doUpdate()
- }
- } else if (this.hasFormatter) {
- // When the `vModelValue` hasn't changed but the actual input value
- // is out of sync, make sure to change it to the given one
- // Usually caused by browser autocomplete and how it triggers the
- // change or input event, or depending on the formatter function
- // https://github.com/bootstrap-vue/bootstrap-vue/issues/2657
- // https://github.com/bootstrap-vue/bootstrap-vue/issues/3498
- /* istanbul ignore next: hard to test */
- const $input = this.$refs.input
- /* istanbul ignore if: hard to test out of sync value */
- if ($input && value !== $input.value) {
- $input.value = value
- }
+ }
+ // Only debounce the value update when a value greater than `0`
+ // is set and we are not in lazy mode or this is a forced update
+ const debounce = this.computedDebounce
+ if (debounce > 0 && !lazy && !force) {
+ this.$_inputDebounceTimer = setTimeout(doUpdate, debounce)
+ } else {
+ // Immediately update the v-model
+ doUpdate()
}
},
onInput(evt) {
@@ -206,7 +211,7 @@ export default {
// or prevented the input event
/* istanbul ignore next */
if (formattedValue === false || evt.defaultPrevented) {
- evt.preventDefault()
+ stopEvent(evt, { propagation: false })
return
}
this.localValue = formattedValue
@@ -220,7 +225,7 @@ export default {
// or prevented the input event
/* istanbul ignore next */
if (formattedValue === false || evt.defaultPrevented) {
- evt.preventDefault()
+ stopEvent(evt, { propagation: false })
return
}
this.localValue = formattedValue
diff --git a/src/mixins/pagination.js b/src/mixins/pagination.js
index 392ca56f833..e091523479d 100644
--- a/src/mixins/pagination.js
+++ b/src/mixins/pagination.js
@@ -8,6 +8,7 @@ import {
isVisible,
selectAll
} from '../utils/dom'
+import { stopEvent } from '../utils/events'
import { isFunction, isNull } from '../utils/inspect'
import { mathFloor, mathMax, mathMin } from '../utils/math'
import { toInteger } from '../utils/number'
@@ -49,9 +50,8 @@ const sanitizeCurrentPage = (val, numberOfPages) => {
// functionality via this handler
const onSpaceKey = evt => {
if (evt.keyCode === KeyCodes.SPACE) {
- evt.preventDefault() // Stop page from scrolling
- evt.stopImmediatePropagation()
- evt.stopPropagation()
+ // Stop page from scrolling
+ stopEvent(evt, { immediatePropagation: true })
// Trigger the click event on the link
evt.currentTarget.click()
return false
@@ -223,12 +223,14 @@ export default {
},
paginationParams() {
// Determine if we should show the the ellipsis
- const limit = this.localLimit
- const numberOfPages = this.localNumberOfPages
- const currentPage = this.computedCurrentPage
- const hideEllipsis = this.hideEllipsis
- const firstNumber = this.firstNumber
- const lastNumber = this.lastNumber
+ const {
+ localLimit: limit,
+ localNumberOfPages: numberOfPages,
+ computedCurrentPage: currentPage,
+ hideEllipsis,
+ firstNumber,
+ lastNumber
+ } = this
let showFirstDots = false
let showLastDots = false
let numberOfLinks = limit
@@ -252,7 +254,7 @@ export default {
} else {
// We are somewhere in the middle of the page list
if (limit > ELLIPSIS_THRESHOLD) {
- numberOfLinks = limit - 2
+ numberOfLinks = limit - (hideEllipsis ? 0 : 2)
showFirstDots = !!(!hideEllipsis || firstNumber)
showLastDots = !!(!hideEllipsis || lastNumber)
}
@@ -336,7 +338,7 @@ export default {
},
currentPage(newValue, oldValue) {
if (newValue !== oldValue) {
- // Emit null if no page selected
+ // Emit `null` if no page selected
this.$emit('input', newValue > 0 ? newValue : null)
}
},
@@ -364,10 +366,10 @@ export default {
return
}
if (keyCode === KeyCodes.LEFT || keyCode === KeyCodes.UP) {
- evt.preventDefault()
+ stopEvent(evt, { propagation: false })
shiftKey ? this.focusFirst() : this.focusPrev()
} else if (keyCode === KeyCodes.RIGHT || keyCode === KeyCodes.DOWN) {
- evt.preventDefault()
+ stopEvent(evt, { propagation: false })
shiftKey ? this.focusLast() : this.focusNext()
}
},
@@ -464,7 +466,7 @@ export default {
? {}
: {
'!click': evt => {
- this.onClick(linkTo, evt)
+ this.onClick(evt, linkTo)
},
keydown: onSpaceKey
}
@@ -526,9 +528,9 @@ export default {
: `${this.labelPage} ${page.number}`,
'aria-checked': isNav ? null : active ? 'true' : 'false',
'aria-current': isNav && active ? 'page' : null,
- 'aria-posinset': page.number,
- 'aria-setsize': numberOfPages,
- // ARIA "roving tabindex" method (except in isNav mode)
+ 'aria-posinset': isNav ? null : page.number,
+ 'aria-setsize': isNav ? null : numberOfPages,
+ // ARIA "roving tabindex" method (except in `isNav` mode)
tabindex: isNav ? null : tabIndex
}
const btnContent = toString(this.makePage(page.number))
@@ -550,7 +552,7 @@ export default {
? {}
: {
'!click': evt => {
- this.onClick(page.number, evt)
+ this.onClick(evt, page.number)
},
keydown: onSpaceKey
}
diff --git a/src/utils/array.js b/src/utils/array.js
index edc904c8987..59e6237bcd1 100644
--- a/src/utils/array.js
+++ b/src/utils/array.js
@@ -7,3 +7,12 @@ export const isArray = val => Array.isArray(val)
export const arrayIncludes = (array, value) => array.indexOf(value) !== -1
export const concat = (...args) => Array.prototype.concat.apply([], args)
+
+// --- Utilities ---
+
+export const createAndFillArray = (size, value) => Array(size).fill(value)
+
+export const flatten = array => array.reduce((result, item) => result.concat(item), [])
+
+export const flattenDeep = array =>
+ array.reduce((result, item) => result.concat(Array.isArray(item) ? flattenDeep(item) : item), [])
diff --git a/src/utils/bv-collapse.js b/src/utils/bv-collapse.js
index 16f15c1ba8e..3756626eaf8 100644
--- a/src/utils/bv-collapse.js
+++ b/src/utils/bv-collapse.js
@@ -7,32 +7,32 @@
// in-place after the transition completes
import Vue from './vue'
import { mergeData } from 'vue-functional-data-merge'
-import { getBCR, reflow, requestAF } from './dom'
+import { getBCR, reflow, removeStyle, requestAF, setStyle } from './dom'
// Transition event handler helpers
const onEnter = el => {
- el.style.height = 0
- // Animaton frame delay needed for `appear` to work
+ setStyle(el, 'height', 0)
+ // In a `requestAF()` for `appear` to work
requestAF(() => {
reflow(el)
- el.style.height = `${el.scrollHeight}px`
+ setStyle(el, 'height', `${el.scrollHeight}px`)
})
}
const onAfterEnter = el => {
- el.style.height = null
+ removeStyle(el, 'height')
}
const onLeave = el => {
- el.style.height = 'auto'
- el.style.display = 'block'
- el.style.height = `${getBCR(el).height}px`
+ setStyle(el, 'height', 'auto')
+ setStyle(el, 'display', 'block')
+ setStyle(el, 'height', `${getBCR(el).height}px`)
reflow(el)
- el.style.height = 0
+ setStyle(el, 'height', 0)
}
const onAfterLeave = el => {
- el.style.height = null
+ removeStyle(el, 'height')
}
// Default transition props
diff --git a/src/utils/bv-form-btn-label-control.js b/src/utils/bv-form-btn-label-control.js
index 654554b28e7..4a6811f6874 100644
--- a/src/utils/bv-form-btn-label-control.js
+++ b/src/utils/bv-form-btn-label-control.js
@@ -3,6 +3,7 @@
//
import Vue from './vue'
import { attemptBlur, attemptFocus } from './dom'
+import { stopEvent } from './events'
import { toString } from './string'
import dropdownMixin, { commonProps } from '../mixins/dropdown'
import idMixin from '../mixins/id'
@@ -139,10 +140,6 @@ export const BVFormBtnLabelControl = /*#__PURE__*/ Vue.extend({
},
handleHover(hovered) {
this.isHovered = hovered
- },
- /* istanbul ignore next */
- stopEvent(evt) /* istanbul ignore next */ {
- evt.stopPropagation()
}
},
render(h) {
@@ -181,7 +178,7 @@ export const BVFormBtnLabelControl = /*#__PURE__*/ Vue.extend({
attrs: {
id: idButton,
type: 'button',
- disabled: disabled,
+ disabled,
'aria-haspopup': 'dialog',
'aria-expanded': visible ? 'true' : 'false',
'aria-invalid': state === false || (required && !value) ? 'true' : null,
@@ -211,7 +208,7 @@ export const BVFormBtnLabelControl = /*#__PURE__*/ Vue.extend({
type: 'hidden',
name: this.name || null,
form: this.form || null,
- value: value
+ value
}
})
}
@@ -267,7 +264,10 @@ export const BVFormBtnLabelControl = /*#__PURE__*/ Vue.extend({
on: {
// Disable bubbling of the click event to
// prevent menu from closing and re-opening
- '!click': this.stopEvent
+
+ '!click': /* istanbul ignore next */ evt => {
+ stopEvent(evt, { preventDefault: false })
+ }
}
},
[
@@ -284,6 +284,7 @@ export const BVFormBtnLabelControl = /*#__PURE__*/ Vue.extend({
staticClass: 'b-form-btn-label-control dropdown',
class: [
this.directionClass,
+ this.boundaryClass,
{
'btn-group': buttonOnly,
'form-control': !buttonOnly,
diff --git a/src/utils/cache.js b/src/utils/cache.js
index c6faef986b0..edf15e77548 100644
--- a/src/utils/cache.js
+++ b/src/utils/cache.js
@@ -1,29 +1,35 @@
-import { hasOwnProperty } from './object'
+import cloneDeep from './clone-deep'
+import looseEqual from './loose-equal'
+import { hasOwnProperty, keys } from './object'
+
+const isEmpty = value => !value || keys(value).length === 0
export const makePropWatcher = propName => ({
- handler(newVal, oldVal) {
- for (const key in oldVal) {
- if (!hasOwnProperty(newVal, key)) {
+ handler(newValue, oldValue) {
+ if (looseEqual(newValue, oldValue)) {
+ return
+ }
+ if (isEmpty(newValue) || isEmpty(oldValue)) {
+ this[propName] = cloneDeep(newValue)
+ return
+ }
+ for (const key in oldValue) {
+ if (!hasOwnProperty(newValue, key)) {
this.$delete(this.$data[propName], key)
}
}
- for (const key in newVal) {
- this.$set(this.$data[propName], key, newVal[key])
+ for (const key in newValue) {
+ this.$set(this.$data[propName], key, newValue[key])
}
}
})
export const makePropCacheMixin = (propName, proxyPropName) => ({
data() {
- return {
- [proxyPropName]: {}
- }
+ return { [proxyPropName]: cloneDeep(this[propName]) }
},
watch: {
// Work around unwanted re-renders: https://github.com/vuejs/vue/issues/10115
[propName]: makePropWatcher(proxyPropName)
- },
- created() {
- this[proxyPropName] = { ...this[propName] }
}
})
diff --git a/src/utils/config-defaults.js b/src/utils/config-defaults.js
index cca20f4328c..0c44d1fb8d0 100644
--- a/src/utils/config-defaults.js
+++ b/src/utils/config-defaults.js
@@ -64,11 +64,15 @@ export default deepFreeze({
},
BButtonClose: {
content: '×',
- // `textVariant` is `null` to inherit the current text color
+ // `textVariant` is `undefined` to inherit the current text color
textVariant: undefined,
ariaLabel: 'Close'
},
BCalendar: {
+ selectedVariant: 'primary',
+ // Defaults to `selectedVariant`
+ todayVariant: undefined,
+ navButtonVariant: 'secondary',
// BFormDate will choose these first if not provided in BFormDate section
labelPrevDecade: 'Previous decade',
labelPrevYear: 'Previous year',
@@ -102,6 +106,9 @@ export default deepFreeze({
},
BFormDatepicker: {
// BFormDatepicker will choose from BCalendar first if not provided here
+ selectedVariant: undefined,
+ todayVariant: undefined,
+ navButtonVariant: undefined,
labelPrevDecade: undefined,
labelPrevYear: undefined,
labelPrevMonth: undefined,
@@ -124,7 +131,8 @@ export default deepFreeze({
browseText: 'Browse',
// Chrome default file prompt
placeholder: 'No file chosen',
- dropPlaceholder: 'Drop files here'
+ dropPlaceholder: 'Drop files here',
+ noDropPlaceholder: 'Not allowed'
},
BFormRating: {
variant: null,
@@ -139,6 +147,7 @@ export default deepFreeze({
addButtonVariant: 'outline-secondary',
duplicateTagText: 'Duplicate tag(s)',
invalidTagText: 'Invalid tag(s)',
+ limitTagsText: 'Tag limit reached',
placeholder: 'Add tag...',
tagRemoveLabel: 'Remove tag',
tagRemovedLabel: 'Tag removed',
@@ -236,6 +245,12 @@ export default deepFreeze({
BSpinner: {
variant: undefined
},
+ BSkeleton: {
+ animation: 'wave'
+ },
+ BSkeletonIcon: {
+ animation: 'wave'
+ },
BSidebar: {
bgVariant: 'light',
textVariant: 'dark',
diff --git a/src/utils/date.js b/src/utils/date.js
index 99f6be648f3..2cd085509c4 100644
--- a/src/utils/date.js
+++ b/src/utils/date.js
@@ -44,7 +44,7 @@ export const formatYMD = date => {
// Given a locale (or locales), resolve the browser available locale
export const resolveLocale = (locales, calendar = 'gregory') => /* istanbul ignore next */ {
locales = concat(locales).filter(identity)
- const fmt = new Intl.DateTimeFormat(locales, { calendar: calendar })
+ const fmt = new Intl.DateTimeFormat(locales, { calendar })
return fmt.resolvedOptions().locale
}
diff --git a/src/utils/dom.js b/src/utils/dom.js
index b1857122606..cd69ca6ad7e 100644
--- a/src/utils/dom.js
+++ b/src/utils/dom.js
@@ -88,7 +88,7 @@ export const isVisible = el => {
// are not a direct descendant of document.body
return false
}
- if (el.style.display === 'none') {
+ if (getStyle(el, 'display') === 'none') {
// We do this check to help with vue-test-utils when using v-show
/* istanbul ignore next */
return false
@@ -174,9 +174,9 @@ export const hasClass = (el, className) => {
}
// Set an attribute on an element
-export const setAttr = (el, attr, val) => {
+export const setAttr = (el, attr, value) => {
if (attr && isElement(el)) {
- el.setAttribute(attr, val)
+ el.setAttribute(attr, value)
}
}
@@ -195,6 +195,24 @@ export const getAttr = (el, attr) => (attr && isElement(el) ? el.getAttribute(at
// Returns `true` or `false`, or `null` if element not found
export const hasAttr = (el, attr) => (attr && isElement(el) ? el.hasAttribute(attr) : null)
+// Set an style property on an element
+export const setStyle = (el, prop, value) => {
+ if (prop && isElement(el)) {
+ el.style[prop] = value
+ }
+}
+
+// Remove an style property from an element
+export const removeStyle = (el, prop) => {
+ if (prop && isElement(el)) {
+ el.style[prop] = ''
+ }
+}
+
+// Get an style property value from an element
+// Returns `null` if not found
+export const getStyle = (el, prop) => (prop && isElement(el) ? el.style[prop] || null : null)
+
// Return the Bounding Client Rect of an element
// Returns `null` if not an element
/* istanbul ignore next: getBoundingClientRect() doesn't work in JSDOM */
diff --git a/src/utils/dom.spec.js b/src/utils/dom.spec.js
index 34397d6ec97..1c43133c152 100644
--- a/src/utils/dom.spec.js
+++ b/src/utils/dom.spec.js
@@ -1,22 +1,23 @@
import { mount } from '@vue/test-utils'
import { createContainer } from '../../tests/utils'
import {
- isElement,
- isDisabled,
- contains,
closest,
+ contains,
+ getAttr,
+ getStyle,
+ hasAttr,
+ hasClass,
+ isDisabled,
+ isElement,
matches,
select,
- selectAll,
- hasAttr,
- getAttr,
- hasClass
+ selectAll
} from './dom'
const template = `
-
+
btn 1
@@ -197,6 +198,23 @@ describe('utils/dom', () => {
wrapper.destroy()
})
+ it('getStyle() works', async () => {
+ const wrapper = mount(App, {
+ attachTo: createContainer()
+ })
+
+ expect(wrapper).toBeDefined()
+
+ const $span = wrapper.find('span.barspan')
+ expect($span).toBeDefined()
+ expect($span.exists()).toBe(true)
+ expect(getStyle($span.element, 'color')).toBe('red')
+ expect(getStyle($span.element, 'width')).toBe(null)
+ expect(getStyle(null, 'color')).toBe(null)
+
+ wrapper.destroy()
+ })
+
it('select() works', async () => {
const wrapper = mount(App, {
attachTo: createContainer()
diff --git a/src/utils/env.js b/src/utils/env.js
index 3562c8e6e2a..cac698d887e 100644
--- a/src/utils/env.js
+++ b/src/utils/env.js
@@ -72,4 +72,5 @@ export const getEnv = (key, fallback = null) => {
return env[key] || fallback
}
-export const getNoWarn = () => getEnv('BOOTSTRAP_VUE_NO_WARN')
+export const getNoWarn = () =>
+ getEnv('BOOTSTRAP_VUE_NO_WARN') || getEnv('NODE_ENV') === 'production'
diff --git a/src/utils/events.js b/src/utils/events.js
index aba2207ad8d..962acf94460 100644
--- a/src/utils/events.js
+++ b/src/utils/events.js
@@ -40,3 +40,19 @@ export const eventOnOff = (on, ...args) => {
const method = on ? eventOn : eventOff
method(...args)
}
+
+// Utility method to prevent the default event handling and propagation
+export const stopEvent = (
+ evt,
+ { preventDefault = true, propagation = true, immediatePropagation = false } = {}
+) => {
+ if (preventDefault) {
+ evt.preventDefault()
+ }
+ if (propagation) {
+ evt.stopPropagation()
+ }
+ if (immediatePropagation) {
+ evt.stopImmediatePropagation()
+ }
+}
diff --git a/src/utils/html.js b/src/utils/html.js
index 4bd325a0a59..bad95188dab 100644
--- a/src/utils/html.js
+++ b/src/utils/html.js
@@ -4,6 +4,5 @@ const RX_HTML_TAGS = /(<([^>]+)>)/gi
export const stripTags = (text = '') => String(text).replace(RX_HTML_TAGS, '')
// Generate a `domProps` object for either `innerHTML`, `textContent` or an empty object
-export const htmlOrText = (innerHTML, textContent) => {
- return innerHTML ? { innerHTML } : textContent ? { textContent } : {}
-}
+export const htmlOrText = (innerHTML, textContent) =>
+ innerHTML ? { innerHTML } : textContent ? { textContent } : {}
diff --git a/src/utils/number.js b/src/utils/number.js
index 2892515bca9..a6aa0f47fae 100644
--- a/src/utils/number.js
+++ b/src/utils/number.js
@@ -1,19 +1,19 @@
// Number utilities
-// Converts a value (string, number, etc) to an integer number
+// Converts a value (string, number, etc.) to an integer number
// Assumes radix base 10
export const toInteger = (value, defaultValue = NaN) => {
const integer = parseInt(value, 10)
return isNaN(integer) ? defaultValue : integer
}
-// Converts a value (string, number, etc) to a number
+// Converts a value (string, number, etc.) to a number
export const toFloat = (value, defaultValue = NaN) => {
const float = parseFloat(value)
return isNaN(float) ? defaultValue : float
}
-// Converts a value (string, number, etc) to a string
+// Converts a value (string, number, etc.) to a string
// representation with `precision` digits after the decimal
// Returns the string 'NaN' if the value cannot be converted
export const toFixed = (val, precision) => toFloat(val).toFixed(toInteger(precision, 0))
diff --git a/src/utils/object.js b/src/utils/object.js
index 72cba7268cd..55caa58bb04 100644
--- a/src/utils/object.js
+++ b/src/utils/object.js
@@ -61,6 +61,26 @@ export const omit = (obj, props) =>
.filter(key => props.indexOf(key) === -1)
.reduce((result, key) => ({ ...result, [key]: obj[key] }), {})
+/**
+ * Merges two object deeply together
+ * @link https://gist.github.com/Salakar/1d7137de9cb8b704e48a
+ */
+export const mergeDeep = (target, source) => {
+ if (isObject(target) && isObject(source)) {
+ keys(source).forEach(key => {
+ if (isObject(source[key])) {
+ if (!target[key] || !isObject(target[key])) {
+ target[key] = source[key]
+ }
+ mergeDeep(target[key], source[key])
+ } else {
+ assign(target, { [key]: source[key] })
+ }
+ })
+ }
+ return target
+}
+
/**
* Convenience method to create a read-only descriptor
*/
diff --git a/src/utils/object.spec.js b/src/utils/object.spec.js
index 50b29841816..4ea27d07ef5 100644
--- a/src/utils/object.spec.js
+++ b/src/utils/object.spec.js
@@ -1,4 +1,4 @@
-import { pick, omit } from './object'
+import { pick, omit, mergeDeep } from './object'
describe('utils/object', () => {
it('pick() works', async () => {
@@ -16,4 +16,46 @@ describe('utils/object', () => {
expect(omit(obj, Object.keys(obj))).toEqual({})
expect(omit(obj, [])).toEqual(obj)
})
+
+ it('mergeDeep() works', async () => {
+ const A = {
+ a: {
+ loc: 'Earth',
+ title: 'Hello World',
+ type: 'Planet',
+ deeper: {
+ map: new Map([['a', 'AAA'], ['b', 'BBB']]),
+ mapId: 15473
+ }
+ }
+ }
+ const B = {
+ a: {
+ type: 'Star',
+ deeper: {
+ mapId: 9999,
+ alt_map: new Map([['x', 'XXXX'], ['y', 'YYYY']])
+ }
+ }
+ }
+
+ const C = mergeDeep(A, B)
+ const D = mergeDeep({ a: 1 }, { b: { c: { d: { e: 12345 } } } })
+ const E = mergeDeep({ b: { c: 'hallo' } }, { b: { c: { d: { e: 12345 } } } })
+ const F = mergeDeep(
+ { b: { c: { d: { e: 12345 } }, d: 'dag', f: 'one' } },
+ { b: { c: 'hallo', e: 'ok', f: 'two' } }
+ )
+
+ expect(C.a.type).toEqual('Star')
+ expect(C.a.deeper.alt_map.get('x')).toEqual('XXXX')
+ expect(C.a.deeper.map.get('b')).toEqual('BBB')
+ expect(D.a).toEqual(1)
+ expect(D.b.c.d.e).toEqual(12345)
+ expect(E.b.c.d.e).toEqual(12345)
+ expect(F.b.c).toEqual('hallo')
+ expect(F.b.d).toEqual('dag')
+ expect(F.b.e).toEqual('ok')
+ expect(F.b.f).toEqual('two')
+ })
})
diff --git a/src/utils/observe-dom.js b/src/utils/observe-dom.js
index d61d84c68c2..b1c17e79e25 100644
--- a/src/utils/observe-dom.js
+++ b/src/utils/observe-dom.js
@@ -45,7 +45,7 @@ const observeDom = (
// Detect whether a change happened based on type and target
if (type === 'characterData' && target.nodeType === Node.TEXT_NODE) {
- // We ignore nodes that are not TEXT (i.e. comments, etc)
+ // We ignore nodes that are not TEXT (i.e. comments, etc.)
// as they don't change layout
changed = true
} else if (type === 'attributes') {
diff --git a/yarn.lock b/yarn.lock
index 6b6c0d73639..582f062a033 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,10 +2,10 @@
# yarn lockfile v1
-"@babel/cli@^7.10.5":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.10.5.tgz#57df2987c8cf89d0fc7d4b157ec59d7619f1b77a"
- integrity sha512-j9H9qSf3kLdM0Ao3aGPbGZ73mEA9XazuupcS6cDGWuiyAcANoguhP0r2Lx32H5JGw4sSSoHG3x/mxVnHgvOoyA==
+"@babel/cli@^7.11.6":
+ version "7.11.6"
+ resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.11.6.tgz#1fcbe61c2a6900c3539c06ee58901141f3558482"
+ integrity sha512-+w7BZCvkewSmaRM6H4L2QM3RL90teqEIHDIFXAmrW33+0jhlymnDAEdqVeCZATvxhQuio1ifoGVlJJbIiH9Ffg==
dependencies:
commander "^4.0.1"
convert-source-map "^1.1.0"
@@ -25,28 +25,28 @@
dependencies:
"@babel/highlight" "^7.10.4"
-"@babel/compat-data@^7.10.4":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.5.tgz#d38425e67ea96b1480a3f50404d1bf85676301a6"
- integrity sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw==
+"@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c"
+ integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==
dependencies:
browserslist "^4.12.0"
invariant "^2.2.4"
semver "^5.5.0"
-"@babel/core@^7.1.0", "@babel/core@^7.10.5", "@babel/core@^7.7.5":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.5.tgz#1f15e2cca8ad9a1d78a38ddba612f5e7cdbbd330"
- integrity sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==
+"@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.7.5":
+ version "7.11.6"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651"
+ integrity sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==
dependencies:
"@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.10.5"
- "@babel/helper-module-transforms" "^7.10.5"
+ "@babel/generator" "^7.11.6"
+ "@babel/helper-module-transforms" "^7.11.0"
"@babel/helpers" "^7.10.4"
- "@babel/parser" "^7.10.5"
+ "@babel/parser" "^7.11.5"
"@babel/template" "^7.10.4"
- "@babel/traverse" "^7.10.5"
- "@babel/types" "^7.10.5"
+ "@babel/traverse" "^7.11.5"
+ "@babel/types" "^7.11.5"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.1"
@@ -56,12 +56,12 @@
semver "^5.4.1"
source-map "^0.5.0"
-"@babel/generator@^7.10.5":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.5.tgz#1b903554bc8c583ee8d25f1e8969732e6b829a69"
- integrity sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig==
+"@babel/generator@^7.11.5", "@babel/generator@^7.11.6":
+ version "7.11.6"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz#b868900f81b163b4d464ea24545c61cbac4dc620"
+ integrity sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA==
dependencies:
- "@babel/types" "^7.10.5"
+ "@babel/types" "^7.11.5"
jsesc "^2.5.1"
source-map "^0.5.0"
@@ -122,11 +122,10 @@
lodash "^4.17.19"
"@babel/helper-explode-assignable-expression@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c"
- integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A==
+ version "7.11.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz#2d8e3470252cc17aba917ede7803d4a7a276a41b"
+ integrity sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ==
dependencies:
- "@babel/traverse" "^7.10.4"
"@babel/types" "^7.10.4"
"@babel/helper-function-name@^7.10.4":
@@ -153,11 +152,11 @@
"@babel/types" "^7.10.4"
"@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz#172f56e7a63e78112f3a04055f24365af702e7ee"
- integrity sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA==
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df"
+ integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==
dependencies:
- "@babel/types" "^7.10.5"
+ "@babel/types" "^7.11.0"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4":
version "7.10.4"
@@ -166,17 +165,17 @@
dependencies:
"@babel/types" "^7.10.4"
-"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz#120c271c0b3353673fcdfd8c053db3c544a260d6"
- integrity sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA==
+"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359"
+ integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==
dependencies:
"@babel/helper-module-imports" "^7.10.4"
"@babel/helper-replace-supers" "^7.10.4"
"@babel/helper-simple-access" "^7.10.4"
- "@babel/helper-split-export-declaration" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.11.0"
"@babel/template" "^7.10.4"
- "@babel/types" "^7.10.5"
+ "@babel/types" "^7.11.0"
lodash "^4.17.19"
"@babel/helper-optimise-call-expression@^7.10.4":
@@ -186,7 +185,7 @@
dependencies:
"@babel/types" "^7.10.4"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0":
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
@@ -199,14 +198,13 @@
lodash "^4.17.19"
"@babel/helper-remap-async-to-generator@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5"
- integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg==
+ version "7.11.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz#4474ea9f7438f18575e30b0cac784045b402a12d"
+ integrity sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA==
dependencies:
"@babel/helper-annotate-as-pure" "^7.10.4"
"@babel/helper-wrap-function" "^7.10.4"
"@babel/template" "^7.10.4"
- "@babel/traverse" "^7.10.4"
"@babel/types" "^7.10.4"
"@babel/helper-replace-supers@^7.10.4":
@@ -227,12 +225,19 @@
"@babel/template" "^7.10.4"
"@babel/types" "^7.10.4"
-"@babel/helper-split-export-declaration@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1"
- integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg==
+"@babel/helper-skip-transparent-expression-wrappers@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729"
+ integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==
dependencies:
- "@babel/types" "^7.10.4"
+ "@babel/types" "^7.11.0"
+
+"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
+ integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
+ dependencies:
+ "@babel/types" "^7.11.0"
"@babel/helper-validator-identifier@^7.10.4":
version "7.10.4"
@@ -267,10 +272,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.10.5", "@babel/parser@^7.7.0":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b"
- integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==
+"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.5", "@babel/parser@^7.7.0":
+ version "7.11.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037"
+ integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==
"@babel/plugin-proposal-async-generator-functions@^7.10.4":
version "7.10.5"
@@ -306,6 +311,14 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
+"@babel/plugin-proposal-export-namespace-from@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54"
+ integrity sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
"@babel/plugin-proposal-json-strings@^7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db"
@@ -314,6 +327,14 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings" "^7.8.0"
+"@babel/plugin-proposal-logical-assignment-operators@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8"
+ integrity sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a"
@@ -330,10 +351,10 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
-"@babel/plugin-proposal-object-rest-spread@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz#50129ac216b9a6a55b3853fdd923e74bf553a4c0"
- integrity sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==
+"@babel/plugin-proposal-object-rest-spread@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af"
+ integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
@@ -347,12 +368,13 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
-"@babel/plugin-proposal-optional-chaining@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.4.tgz#750f1255e930a1f82d8cdde45031f81a0d0adff7"
- integrity sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ==
+"@babel/plugin-proposal-optional-chaining@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076"
+ integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
"@babel/plugin-proposal-private-methods@^7.10.4":
@@ -406,6 +428,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
+"@babel/plugin-syntax-export-namespace-from@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
+ integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.3"
+
"@babel/plugin-syntax-import-meta@^7.8.3":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
@@ -427,7 +456,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
+"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
@@ -500,9 +529,9 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-block-scoping@^7.10.4":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz#b81b8aafefbfe68f0f65f7ef397b9ece68a6037d"
- integrity sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg==
+ version "7.11.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215"
+ integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
@@ -674,10 +703,10 @@
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-runtime@^7.10.5":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.5.tgz#3b39b7b24830e0c2d8ff7a4489fe5cf99fbace86"
- integrity sha512-tV4V/FjElJ9lQtyjr5xD2IFFbgY46r7EeVu5a8CpEKT5laheHKSlFeHjpkPppW3PqzGLAuv5k2qZX5LgVZIX5w==
+"@babel/plugin-transform-runtime@^7.11.5":
+ version "7.11.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.5.tgz#f108bc8e0cf33c37da031c097d1df470b3a293fc"
+ integrity sha512-9aIoee+EhjySZ6vY5hnLjigHzunBlscx9ANKutkeWTJTx6m5Rbq6Ic01tLvO54lSusR+BxV7u4UDdCmXv5aagg==
dependencies:
"@babel/helper-module-imports" "^7.10.4"
"@babel/helper-plugin-utils" "^7.10.4"
@@ -691,12 +720,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-spread@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.4.tgz#4e2c85ea0d6abaee1b24dcfbbae426fe8d674cff"
- integrity sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ==
+"@babel/plugin-transform-spread@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc"
+ integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
"@babel/plugin-transform-sticky-regex@^7.10.4":
version "7.10.4"
@@ -736,30 +766,34 @@
"@babel/helper-create-regexp-features-plugin" "^7.10.4"
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/preset-env@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.10.4.tgz#fbf57f9a803afd97f4f32e4f798bb62e4b2bef5f"
- integrity sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw==
+"@babel/preset-env@^7.11.5":
+ version "7.11.5"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.5.tgz#18cb4b9379e3e92ffea92c07471a99a2914e4272"
+ integrity sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA==
dependencies:
- "@babel/compat-data" "^7.10.4"
+ "@babel/compat-data" "^7.11.0"
"@babel/helper-compilation-targets" "^7.10.4"
"@babel/helper-module-imports" "^7.10.4"
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-proposal-async-generator-functions" "^7.10.4"
"@babel/plugin-proposal-class-properties" "^7.10.4"
"@babel/plugin-proposal-dynamic-import" "^7.10.4"
+ "@babel/plugin-proposal-export-namespace-from" "^7.10.4"
"@babel/plugin-proposal-json-strings" "^7.10.4"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.11.0"
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4"
"@babel/plugin-proposal-numeric-separator" "^7.10.4"
- "@babel/plugin-proposal-object-rest-spread" "^7.10.4"
+ "@babel/plugin-proposal-object-rest-spread" "^7.11.0"
"@babel/plugin-proposal-optional-catch-binding" "^7.10.4"
- "@babel/plugin-proposal-optional-chaining" "^7.10.4"
+ "@babel/plugin-proposal-optional-chaining" "^7.11.0"
"@babel/plugin-proposal-private-methods" "^7.10.4"
"@babel/plugin-proposal-unicode-property-regex" "^7.10.4"
"@babel/plugin-syntax-async-generators" "^7.8.0"
"@babel/plugin-syntax-class-properties" "^7.10.4"
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-syntax-json-strings" "^7.8.0"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
@@ -792,14 +826,14 @@
"@babel/plugin-transform-regenerator" "^7.10.4"
"@babel/plugin-transform-reserved-words" "^7.10.4"
"@babel/plugin-transform-shorthand-properties" "^7.10.4"
- "@babel/plugin-transform-spread" "^7.10.4"
+ "@babel/plugin-transform-spread" "^7.11.0"
"@babel/plugin-transform-sticky-regex" "^7.10.4"
"@babel/plugin-transform-template-literals" "^7.10.4"
"@babel/plugin-transform-typeof-symbol" "^7.10.4"
"@babel/plugin-transform-unicode-escapes" "^7.10.4"
"@babel/plugin-transform-unicode-regex" "^7.10.4"
"@babel/preset-modules" "^0.1.3"
- "@babel/types" "^7.10.4"
+ "@babel/types" "^7.11.5"
browserslist "^4.12.0"
core-js-compat "^3.6.2"
invariant "^2.2.2"
@@ -807,9 +841,9 @@
semver "^5.5.0"
"@babel/preset-modules@^0.1.3":
- version "0.1.3"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
- integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
+ integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
@@ -818,24 +852,24 @@
esutils "^2.0.2"
"@babel/runtime-corejs3@^7.10.2":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.10.5.tgz#a57fe6c13045ca33768a2aa527ead795146febe1"
- integrity sha512-RMafpmrNB5E/bwdSphLr8a8++9TosnyJp98RZzI6VOx2R2CCMpsXXXRvmI700O9oEKpXdZat6oEK68/F0zjd4A==
+ version "7.11.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.11.2.tgz#02c3029743150188edeb66541195f54600278419"
+ integrity sha512-qh5IR+8VgFz83VBa6OkaET6uN/mJOhHONuy3m1sgF0CV6mXdPSEBdA7e1eUbVvyNtANjMbg22JUv71BaDXLY6A==
dependencies:
core-js-pure "^3.0.0"
regenerator-runtime "^0.13.4"
-"@babel/runtime@^7.10.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.5.tgz#303d8bd440ecd5a491eae6117fd3367698674c5c"
- integrity sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg==
+"@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
+ version "7.11.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
+ integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==
dependencies:
regenerator-runtime "^0.13.4"
-"@babel/standalone@^7.10.5":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.10.5.tgz#4ee38dc79fda10a2a0da0897f09e270310151314"
- integrity sha512-PERGHqhQ7H3TrdglvSW4pEHULywMJEdytnzaR0VPF1HN45aS+3FcE62efb90XPKS9TlgrEUkYDvYMt+0m6G0YA==
+"@babel/standalone@^7.11.6":
+ version "7.11.6"
+ resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.11.6.tgz#2ea3c9463c8b1d04ee2dacc5ac4b81674cec2967"
+ integrity sha512-Ye1pj3fN76OWlJyi+Ocy1kTr1BNs5vFWHsq2oKPp3lB4Q0r2WrHi+n/Y2w3sZK+1QSKAkDXTp12tCuBprBHZ1w==
"@babel/template@^7.10.4", "@babel/template@^7.3.3":
version "7.10.4"
@@ -846,25 +880,25 @@
"@babel/parser" "^7.10.4"
"@babel/types" "^7.10.4"
-"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.10.5", "@babel/traverse@^7.7.0":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz#77ce464f5b258be265af618d8fddf0536f20b564"
- integrity sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ==
+"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.5", "@babel/traverse@^7.7.0":
+ version "7.11.5"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3"
+ integrity sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ==
dependencies:
"@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.10.5"
+ "@babel/generator" "^7.11.5"
"@babel/helper-function-name" "^7.10.4"
- "@babel/helper-split-export-declaration" "^7.10.4"
- "@babel/parser" "^7.10.5"
- "@babel/types" "^7.10.5"
+ "@babel/helper-split-export-declaration" "^7.11.0"
+ "@babel/parser" "^7.11.5"
+ "@babel/types" "^7.11.5"
debug "^4.1.0"
globals "^11.1.0"
lodash "^4.17.19"
-"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
- version "7.10.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15"
- integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==
+"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
+ version "7.11.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d"
+ integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==
dependencies:
"@babel/helper-validator-identifier" "^7.10.4"
lodash "^4.17.19"
@@ -888,6 +922,22 @@
resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
+"@eslint/eslintrc@^0.1.3":
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.1.3.tgz#7d1a2b2358552cc04834c0979bd4275362e37085"
+ integrity sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA==
+ dependencies:
+ ajv "^6.12.4"
+ debug "^4.1.1"
+ espree "^7.3.0"
+ globals "^12.1.0"
+ ignore "^4.0.6"
+ import-fresh "^3.2.1"
+ js-yaml "^3.13.1"
+ lodash "^4.17.19"
+ minimatch "^3.0.4"
+ strip-json-comments "^3.1.1"
+
"@istanbuljs/load-nyc-config@^1.0.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
@@ -904,89 +954,93 @@
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd"
integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
-"@jest/console@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.1.0.tgz#f67c89e4f4d04dbcf7b052aed5ab9c74f915b954"
- integrity sha512-+0lpTHMd/8pJp+Nd4lyip+/Iyf2dZJvcCqrlkeZQoQid+JlThA4M9vxHtheyrQ99jJTMQam+es4BcvZ5W5cC3A==
+"@jest/console@^26.3.0":
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.3.0.tgz#ed04063efb280c88ba87388b6f16427c0a85c856"
+ integrity sha512-/5Pn6sJev0nPUcAdpJHMVIsA8sKizL2ZkcKPE5+dJrCccks7tcM7c9wbgHudBJbxXLoTbqsHkG1Dofoem4F09w==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
chalk "^4.0.0"
- jest-message-util "^26.1.0"
- jest-util "^26.1.0"
+ jest-message-util "^26.3.0"
+ jest-util "^26.3.0"
slash "^3.0.0"
-"@jest/core@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.1.0.tgz#4580555b522de412a7998b3938c851e4f9da1c18"
- integrity sha512-zyizYmDJOOVke4OO/De//aiv8b07OwZzL2cfsvWF3q9YssfpcKfcnZAwDY8f+A76xXSMMYe8i/f/LPocLlByfw==
+"@jest/core@^26.4.2":
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.4.2.tgz#85d0894f31ac29b5bab07aa86806d03dd3d33edc"
+ integrity sha512-sDva7YkeNprxJfepOctzS8cAk9TOekldh+5FhVuXS40+94SHbiicRO1VV2tSoRtgIo+POs/Cdyf8p76vPTd6dg==
dependencies:
- "@jest/console" "^26.1.0"
- "@jest/reporters" "^26.1.0"
- "@jest/test-result" "^26.1.0"
- "@jest/transform" "^26.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/console" "^26.3.0"
+ "@jest/reporters" "^26.4.1"
+ "@jest/test-result" "^26.3.0"
+ "@jest/transform" "^26.3.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
ansi-escapes "^4.2.1"
chalk "^4.0.0"
exit "^0.1.2"
graceful-fs "^4.2.4"
- jest-changed-files "^26.1.0"
- jest-config "^26.1.0"
- jest-haste-map "^26.1.0"
- jest-message-util "^26.1.0"
+ jest-changed-files "^26.3.0"
+ jest-config "^26.4.2"
+ jest-haste-map "^26.3.0"
+ jest-message-util "^26.3.0"
jest-regex-util "^26.0.0"
- jest-resolve "^26.1.0"
- jest-resolve-dependencies "^26.1.0"
- jest-runner "^26.1.0"
- jest-runtime "^26.1.0"
- jest-snapshot "^26.1.0"
- jest-util "^26.1.0"
- jest-validate "^26.1.0"
- jest-watcher "^26.1.0"
+ jest-resolve "^26.4.0"
+ jest-resolve-dependencies "^26.4.2"
+ jest-runner "^26.4.2"
+ jest-runtime "^26.4.2"
+ jest-snapshot "^26.4.2"
+ jest-util "^26.3.0"
+ jest-validate "^26.4.2"
+ jest-watcher "^26.3.0"
micromatch "^4.0.2"
p-each-series "^2.1.0"
rimraf "^3.0.0"
slash "^3.0.0"
strip-ansi "^6.0.0"
-"@jest/environment@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.1.0.tgz#378853bcdd1c2443b4555ab908cfbabb851e96da"
- integrity sha512-86+DNcGongbX7ai/KE/S3/NcUVZfrwvFzOOWX/W+OOTvTds7j07LtC+MgGydH5c8Ri3uIrvdmVgd1xFD5zt/xA==
+"@jest/environment@^26.3.0":
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.3.0.tgz#e6953ab711ae3e44754a025f838bde1a7fd236a0"
+ integrity sha512-EW+MFEo0DGHahf83RAaiqQx688qpXgl99wdb8Fy67ybyzHwR1a58LHcO376xQJHfmoXTu89M09dH3J509cx2AA==
dependencies:
- "@jest/fake-timers" "^26.1.0"
- "@jest/types" "^26.1.0"
- jest-mock "^26.1.0"
+ "@jest/fake-timers" "^26.3.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
+ jest-mock "^26.3.0"
-"@jest/fake-timers@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.1.0.tgz#9a76b7a94c351cdbc0ad53e5a748789f819a65fe"
- integrity sha512-Y5F3kBVWxhau3TJ825iuWy++BAuQzK/xEa+wD9vDH3RytW9f2DbMVodfUQC54rZDX3POqdxCgcKdgcOL0rYUpA==
+"@jest/fake-timers@^26.3.0":
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.3.0.tgz#f515d4667a6770f60ae06ae050f4e001126c666a"
+ integrity sha512-ZL9ytUiRwVP8ujfRepffokBvD2KbxbqMhrXSBhSdAhISCw3gOkuntisiSFv+A6HN0n0fF4cxzICEKZENLmW+1A==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
"@sinonjs/fake-timers" "^6.0.1"
- jest-message-util "^26.1.0"
- jest-mock "^26.1.0"
- jest-util "^26.1.0"
+ "@types/node" "*"
+ jest-message-util "^26.3.0"
+ jest-mock "^26.3.0"
+ jest-util "^26.3.0"
-"@jest/globals@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.1.0.tgz#6cc5d7cbb79b76b120f2403d7d755693cf063ab1"
- integrity sha512-MKiHPNaT+ZoG85oMaYUmGHEqu98y3WO2yeIDJrs2sJqHhYOy3Z6F7F/luzFomRQ8SQ1wEkmahFAz2291Iv8EAw==
+"@jest/globals@^26.4.2":
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.4.2.tgz#73c2a862ac691d998889a241beb3dc9cada40d4a"
+ integrity sha512-Ot5ouAlehhHLRhc+sDz2/9bmNv9p5ZWZ9LE1pXGGTCXBasmi5jnYjlgYcYt03FBwLmZXCZ7GrL29c33/XRQiow==
dependencies:
- "@jest/environment" "^26.1.0"
- "@jest/types" "^26.1.0"
- expect "^26.1.0"
+ "@jest/environment" "^26.3.0"
+ "@jest/types" "^26.3.0"
+ expect "^26.4.2"
-"@jest/reporters@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.1.0.tgz#08952e90c90282e14ff49e927bdf1873617dae78"
- integrity sha512-SVAysur9FOIojJbF4wLP0TybmqwDkdnFxHSPzHMMIYyBtldCW9gG+Q5xWjpMFyErDiwlRuPyMSJSU64A67Pazg==
+"@jest/reporters@^26.4.1":
+ version "26.4.1"
+ resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.4.1.tgz#3b4d6faf28650f3965f8b97bc3d114077fb71795"
+ integrity sha512-aROTkCLU8++yiRGVxLsuDmZsQEKO6LprlrxtAuzvtpbIFl3eIjgIf3EUxDKgomkS25R9ZzwGEdB5weCcBZlrpQ==
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
- "@jest/console" "^26.1.0"
- "@jest/test-result" "^26.1.0"
- "@jest/transform" "^26.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/console" "^26.3.0"
+ "@jest/test-result" "^26.3.0"
+ "@jest/transform" "^26.3.0"
+ "@jest/types" "^26.3.0"
chalk "^4.0.0"
collect-v8-coverage "^1.0.0"
exit "^0.1.2"
@@ -997,63 +1051,63 @@
istanbul-lib-report "^3.0.0"
istanbul-lib-source-maps "^4.0.0"
istanbul-reports "^3.0.2"
- jest-haste-map "^26.1.0"
- jest-resolve "^26.1.0"
- jest-util "^26.1.0"
- jest-worker "^26.1.0"
+ jest-haste-map "^26.3.0"
+ jest-resolve "^26.4.0"
+ jest-util "^26.3.0"
+ jest-worker "^26.3.0"
slash "^3.0.0"
source-map "^0.6.0"
string-length "^4.0.1"
terminal-link "^2.0.0"
- v8-to-istanbul "^4.1.3"
+ v8-to-istanbul "^5.0.1"
optionalDependencies:
- node-notifier "^7.0.0"
+ node-notifier "^8.0.0"
-"@jest/source-map@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.1.0.tgz#a6a020d00e7d9478f4b690167c5e8b77e63adb26"
- integrity sha512-XYRPYx4eEVX15cMT9mstnO7hkHP3krNtKfxUYd8L7gbtia8JvZZ6bMzSwa6IQJENbudTwKMw5R1BePRD+bkEmA==
+"@jest/source-map@^26.3.0":
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.3.0.tgz#0e646e519883c14c551f7b5ae4ff5f1bfe4fc3d9"
+ integrity sha512-hWX5IHmMDWe1kyrKl7IhFwqOuAreIwHhbe44+XH2ZRHjrKIh0LO5eLQ/vxHFeAfRwJapmxuqlGAEYLadDq6ZGQ==
dependencies:
callsites "^3.0.0"
graceful-fs "^4.2.4"
source-map "^0.6.0"
-"@jest/test-result@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.1.0.tgz#a93fa15b21ad3c7ceb21c2b4c35be2e407d8e971"
- integrity sha512-Xz44mhXph93EYMA8aYDz+75mFbarTV/d/x0yMdI3tfSRs/vh4CqSxgzVmCps1fPkHDCtn0tU8IH9iCKgGeGpfw==
+"@jest/test-result@^26.3.0":
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.3.0.tgz#46cde01fa10c0aaeb7431bf71e4a20d885bc7fdb"
+ integrity sha512-a8rbLqzW/q7HWheFVMtghXV79Xk+GWwOK1FrtimpI5n1la2SY0qHri3/b0/1F0Ve0/yJmV8pEhxDfVwiUBGtgg==
dependencies:
- "@jest/console" "^26.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/console" "^26.3.0"
+ "@jest/types" "^26.3.0"
"@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0"
-"@jest/test-sequencer@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.1.0.tgz#41a6fc8b850c3f33f48288ea9ea517c047e7f14e"
- integrity sha512-Z/hcK+rTq56E6sBwMoQhSRDVjqrGtj1y14e2bIgcowARaIE1SgOanwx6gvY4Q9gTKMoZQXbXvptji+q5GYxa6Q==
+"@jest/test-sequencer@^26.4.2":
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.4.2.tgz#58a3760a61eec758a2ce6080201424580d97cbba"
+ integrity sha512-83DRD8N3M0tOhz9h0bn6Kl6dSp+US6DazuVF8J9m21WAp5x7CqSMaNycMP0aemC/SH/pDQQddbsfHRTBXVUgog==
dependencies:
- "@jest/test-result" "^26.1.0"
+ "@jest/test-result" "^26.3.0"
graceful-fs "^4.2.4"
- jest-haste-map "^26.1.0"
- jest-runner "^26.1.0"
- jest-runtime "^26.1.0"
+ jest-haste-map "^26.3.0"
+ jest-runner "^26.4.2"
+ jest-runtime "^26.4.2"
-"@jest/transform@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.1.0.tgz#697f48898c2a2787c9b4cb71d09d7e617464e509"
- integrity sha512-ICPm6sUXmZJieq45ix28k0s+d/z2E8CHDsq+WwtWI6kW8m7I8kPqarSEcUN86entHQ570ZBRci5OWaKL0wlAWw==
+"@jest/transform@^26.3.0":
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.3.0.tgz#c393e0e01459da8a8bfc6d2a7c2ece1a13e8ba55"
+ integrity sha512-Isj6NB68QorGoFWvcOjlUhpkT56PqNIsXKR7XfvoDlCANn/IANlh8DrKAA2l2JKC3yWSMH5wS0GwuQM20w3b2A==
dependencies:
"@babel/core" "^7.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
babel-plugin-istanbul "^6.0.0"
chalk "^4.0.0"
convert-source-map "^1.4.0"
fast-json-stable-stringify "^2.0.0"
graceful-fs "^4.2.4"
- jest-haste-map "^26.1.0"
+ jest-haste-map "^26.3.0"
jest-regex-util "^26.0.0"
- jest-util "^26.1.0"
+ jest-util "^26.3.0"
micromatch "^4.0.2"
pirates "^4.0.1"
slash "^3.0.0"
@@ -1070,27 +1124,28 @@
"@types/yargs" "^15.0.0"
chalk "^3.0.0"
-"@jest/types@^26.1.0":
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.1.0.tgz#f8afaaaeeb23b5cad49dd1f7779689941dcb6057"
- integrity sha512-GXigDDsp6ZlNMhXQDeuy/iYCDsRIHJabWtDzvnn36+aqFfG14JmFV0e/iXxY4SP9vbXSiPNOWdehU5MeqrYHBQ==
+"@jest/types@^26.3.0":
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.3.0.tgz#97627bf4bdb72c55346eef98e3b3f7ddc4941f71"
+ integrity sha512-BDPG23U0qDeAvU4f99haztXwdAg3hz4El95LkAM+tHAqqhiVzRpEGHHU8EDxT/AnxOrA65YjLBwDahdJ9pTLJQ==
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
- "@types/istanbul-reports" "^1.1.1"
+ "@types/istanbul-reports" "^3.0.0"
+ "@types/node" "*"
"@types/yargs" "^15.0.0"
chalk "^4.0.0"
-"@lokidb/full-text-search@^2.0.0-beta.9":
- version "2.0.0-beta.9"
- resolved "https://registry.yarnpkg.com/@lokidb/full-text-search/-/full-text-search-2.0.0-beta.9.tgz#1aa1bd50c37da37437fa7ba6414f746ccafd0190"
- integrity sha512-7RrZ5xv1r1Gh6/6a4eu3+/Bawtk009oP5beqoBTnpHRYAbk1fqLCzAuBo3ThDDLA+69hxUU/jqVGZrhKrpODxw==
+"@lokidb/full-text-search@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@lokidb/full-text-search/-/full-text-search-2.1.0.tgz#5f0b36dc0d67ba365f84663a9c0438537c186a76"
+ integrity sha512-KZm8CV0tW/DE+ca4RF8/7kiZnMWqk4x6xrwOImOw1xgMQVzS3jtxHOhWIRk+valUlimDzNxhrstMjBWsdzgqFg==
optionalDependencies:
- "@lokidb/loki" "2.0.0-beta.9"
+ "@lokidb/loki" "2.1.0"
-"@lokidb/loki@2.0.0-beta.9", "@lokidb/loki@^2.0.0-beta.9":
- version "2.0.0-beta.9"
- resolved "https://registry.yarnpkg.com/@lokidb/loki/-/loki-2.0.0-beta.9.tgz#b215b54b0cdf7a41805bde6d7ae07bb88491d5e6"
- integrity sha512-1YxmT4RtxM0ZpSNkenl/CrLL7BAMzWaigLE98mhmYcYjdmTFpsqdINevPLEfAAWWiVgYBluREwsmAq3viBx5kw==
+"@lokidb/loki@2.1.0", "@lokidb/loki@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@lokidb/loki/-/loki-2.1.0.tgz#f707e184016ce57d6dd12013938c33f9c540960e"
+ integrity sha512-u2VH/4h4kZww23bak5I/oRai8VqIZCSuqiLbuSHpYXHB9Na5E9KNazh59prgUyvMzfooY7XKiHejbKVxFoAEOQ==
"@nodelib/fs.scandir@2.1.3":
version "2.1.3"
@@ -1113,56 +1168,56 @@
"@nodelib/fs.scandir" "2.1.3"
fastq "^1.6.0"
-"@nuxt/babel-preset-app@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/babel-preset-app/-/babel-preset-app-2.14.0.tgz#194bbd89ed922eaf35facc498baf537951d72530"
- integrity sha512-jQQPxBHe9xtf/1hcp1ofM7S6lkp4Fp+uRGAH3BqBliIDeBRXEEcjnIyfI8sM5xXI6dHjRg9rW66BVrxcVkUXEw==
+"@nuxt/babel-preset-app@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/babel-preset-app/-/babel-preset-app-2.14.5.tgz#458946a2850cb93343cbcd25a8f83bc4d20e61c9"
+ integrity sha512-mrBvqkzhI5D8mAeLR6p100vqPDfgndSMflB/0zTWjsIE5SCpEk57fE90ZUPMAyktawhceZTsHQOPGqOm+xDOJw==
dependencies:
- "@babel/core" "^7.10.5"
+ "@babel/core" "^7.11.6"
"@babel/helper-compilation-targets" "^7.10.4"
"@babel/plugin-proposal-class-properties" "^7.10.4"
"@babel/plugin-proposal-decorators" "^7.10.5"
- "@babel/plugin-transform-runtime" "^7.10.5"
- "@babel/preset-env" "^7.10.4"
- "@babel/runtime" "^7.10.5"
+ "@babel/plugin-transform-runtime" "^7.11.5"
+ "@babel/preset-env" "^7.11.5"
+ "@babel/runtime" "^7.11.2"
"@vue/babel-preset-jsx" "^1.1.2"
core-js "^2.6.5"
-"@nuxt/builder@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/builder/-/builder-2.14.0.tgz#f823119ad1052eff5a8547a1badeea5866f0d930"
- integrity sha512-T4yO5BxpcK8Wdq3qInW5zo1lIozd7w+wE8UtRYoBrBp21rFfb3L6NGdNSWWsltQgtwUChXQFtSsts4HixEjoJQ==
+"@nuxt/builder@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/builder/-/builder-2.14.5.tgz#5a06785d704fd8eab81bfa1c0ab698ea876ac01b"
+ integrity sha512-Df3X01dOcSpPLogM+FDuInsuLmax0UGQXnR4815Y0LRMd0gdtztGyFwgKo5Q1BaP1dfsWYdaDj89fM08Eu9LlQ==
dependencies:
"@nuxt/devalue" "^1.2.4"
- "@nuxt/utils" "2.14.0"
- "@nuxt/vue-app" "2.14.0"
- "@nuxt/webpack" "2.14.0"
+ "@nuxt/utils" "2.14.5"
+ "@nuxt/vue-app" "2.14.5"
+ "@nuxt/webpack" "2.14.5"
chalk "^3.0.0"
- chokidar "^3.4.1"
- consola "^2.14.0"
+ chokidar "^3.4.2"
+ consola "^2.15.0"
fs-extra "^8.1.0"
glob "^7.1.6"
hash-sum "^2.0.0"
ignore "^5.1.8"
- lodash "^4.17.19"
+ lodash "^4.17.20"
pify "^4.0.1"
semver "^7.3.2"
- serialize-javascript "^4.0.0"
+ serialize-javascript "^5.0.0"
upath "^1.2.0"
-"@nuxt/cli@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/cli/-/cli-2.14.0.tgz#b878d1540100a6b72cc90525b3f9a4223035d601"
- integrity sha512-63u9hnFXFSnlL9hulFCHiPAvT5mnPosY92tzY4iwrbGjaNEv6i9AfRl6cf6FNwceSLDylv4BqxYIJSAbP3cucA==
+"@nuxt/cli@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/cli/-/cli-2.14.5.tgz#6027e5c8c8d41d083a6fe1071e8efab908f415ea"
+ integrity sha512-r+2iv6ihmKEkysr4ejgeTr3ZXwK/B5n1HGDKiwQgcvkNMTgpklrVSnV7r+lZfrGKFEZRw4+IO41FZ+pkMcB4gQ==
dependencies:
- "@nuxt/config" "2.14.0"
+ "@nuxt/config" "2.14.5"
"@nuxt/static" "^1.0.0"
- "@nuxt/utils" "2.14.0"
+ "@nuxt/utils" "2.14.5"
boxen "^4.2.0"
chalk "^3.0.0"
compression "^1.7.4"
connect "^3.7.0"
- consola "^2.14.0"
+ consola "^2.15.0"
crc "^3.8.0"
destr "^1.0.0"
esm "^3.2.25"
@@ -1172,31 +1227,32 @@
globby "^11.0.1"
hable "^3.0.0"
minimist "^1.2.5"
- opener "1.5.1"
- pretty-bytes "^5.3.0"
+ opener "1.5.2"
+ pretty-bytes "^5.4.1"
serve-static "^1.14.1"
std-env "^2.2.1"
+ upath "^1.2.0"
wrap-ansi "^6.2.0"
-"@nuxt/components@^1.0.7":
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/@nuxt/components/-/components-1.0.7.tgz#816fd6ff083c6515d9b826eb04219109f60aadbf"
- integrity sha512-MHQiscSQpMQBYiu2ZonUnbjirXgMu1/q6acItnzaGiA0rLSDU0qWkKF/7OnetOy6E7ZFB9I8gGQpjVYA6b+Tew==
+"@nuxt/components@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@nuxt/components/-/components-1.1.0.tgz#7d489d52f9813a69cbdc10372731481140765bbf"
+ integrity sha512-vDoSiA4iuZMSsv2nsXJ4ulMEVbKL4s0gg5fwdwGpRRiOtCoczlB7ggB6dIa9YyQgERdwkfj4Nj9grBsvqJFjlA==
dependencies:
chalk "^4.1.0"
- chokidar "^3.4.0"
+ chokidar "^3.4.1"
glob "^7.1.6"
globby "^11.0.1"
- lodash "^4.17.15"
+ lodash "^4.17.19"
semver "^7.3.2"
-"@nuxt/config@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/config/-/config-2.14.0.tgz#bc3828945cec2be95d695ab3a5b6469d69cf3cf2"
- integrity sha512-zUr5x4kpjVT5/oqPnMzV8uoFEp4R5768CfBGtGJHe0SOHe0U/A1G0U2DXX5vrF42L9CaXJuXlb1ZXbAWLI1szQ==
+"@nuxt/config@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/config/-/config-2.14.5.tgz#26119edcaf49d6093f373076883ca2aed15711b3"
+ integrity sha512-O9AppTdBKCMZmLF6+GXIqCufDdIWbS7hdHSaaF3yd9o/Mj7J0XJoooQgPQyrIU9NFcF9QXjk4kcSEkWgFxPx8A==
dependencies:
- "@nuxt/utils" "2.14.0"
- consola "^2.14.0"
+ "@nuxt/utils" "2.14.5"
+ consola "^2.15.0"
create-require "^1.0.2"
defu "^2.0.4"
destr "^1.0.0"
@@ -1206,55 +1262,62 @@
rc9 "^1.0.0"
std-env "^2.2.1"
-"@nuxt/content@^1.5.0":
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/@nuxt/content/-/content-1.5.0.tgz#4244a14b3b3b3aa08672dad5df82d2ee4f221a48"
- integrity sha512-Uyo/kfY7vQXX8BD69hWBBG/ZUXLNYEJ+JVY4NZ2y5k+Wl2GRvcJY7U7/7HpAp8lLfKLXZsEl+wWXH4FYR8IHDw==
- dependencies:
- "@lokidb/full-text-search" "^2.0.0-beta.9"
- "@lokidb/loki" "^2.0.0-beta.9"
+"@nuxt/content@^1.8.1":
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/@nuxt/content/-/content-1.8.1.tgz#c7f16d53952b39ae8cf12bb630e43e0eaaff2072"
+ integrity sha512-CvSMaxnmVIaq3bVav3IWA31I4VNjjwOuLQBIImOU8M42POt7LECTy1/iCLYjx8TyWq6SKxDGJvVnGl9PNZ8/hg==
+ dependencies:
+ "@lokidb/full-text-search" "^2.1.0"
+ "@lokidb/loki" "^2.1.0"
+ "@nuxt/types" "^2.14.4"
+ "@types/js-yaml" "^3.12.5"
+ "@types/xml2js" "^0.4.5"
change-case "^4.1.1"
- chokidar "^3.4.1"
- consola "^2.14.0"
+ chokidar "^3.4.2"
+ consola "^2.15.0"
csvtojson "^2.0.10"
- defu "^2.0.4"
+ defu "^3.1.0"
+ detab "^2.0.3"
escape-html "^1.0.3"
graceful-fs "^4.2.4"
gray-matter "^4.0.2"
- hookable "^4.1.1"
+ hasha "^5.2.0"
+ hookable "^4.1.2"
html-tags "^3.1.0"
js-yaml "3.14.0"
- json5 "2.1.3"
+ mdast-util-to-hast "^9.1.1"
mkdirp "^1.0.4"
node-req "^2.1.2"
node-res "^5.0.1"
- p-queue "6.6.0"
- prismjs "^1.20.0"
+ p-queue "6.6.1"
+ prismjs "^1.21.0"
+ property-information "^5.5.0"
rehype-raw "^4.0.2"
rehype-sort-attribute-values "^3.0.2"
rehype-sort-attributes "^3.0.2"
remark-autolink-headings "^6.0.1"
- remark-external-links "^6.1.0"
- remark-footnotes "^1.0.0"
+ remark-external-links "^7.0.0"
+ remark-footnotes "^2.0.0"
remark-parse "^8.0.3"
remark-rehype "^7.0.0"
remark-slug "^6.0.0"
remark-squeeze-paragraphs "^4.0.0"
- unified "^9.1.0"
+ unified "^9.2.0"
+ unist-builder "^2.0.3"
ws "^7.3.1"
xml2js "^0.4.23"
-"@nuxt/core@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/core/-/core-2.14.0.tgz#fec69040424288121ff6d126d4fc3167d08f750e"
- integrity sha512-lDF4uevfJQrXpZxvPgk3HSZs1B85zqGUHZTQ+pMT1jUfIpWiFh2ZnsQnWuHG6/1VPv2H3yemIimDuTe4e+i33w==
+"@nuxt/core@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/core/-/core-2.14.5.tgz#03c71198a25999864153819e5772cd42f4346bb4"
+ integrity sha512-dAUN281OxZWJeZ1ioZUyf/BKf/4ON7JB12k/ItfLr4o59RktDGLfzeYuVgOCa7H/omoD9pp0I9wOQ252R8afVA==
dependencies:
- "@nuxt/config" "2.14.0"
+ "@nuxt/config" "2.14.5"
"@nuxt/devalue" "^1.2.4"
- "@nuxt/server" "2.14.0"
- "@nuxt/utils" "2.14.0"
- "@nuxt/vue-renderer" "2.14.0"
- consola "^2.14.0"
+ "@nuxt/server" "2.14.5"
+ "@nuxt/utils" "2.14.5"
+ "@nuxt/vue-renderer" "2.14.5"
+ consola "^2.15.0"
debug "^4.1.1"
esm "^3.2.25"
fs-extra "^8.1.0"
@@ -1279,14 +1342,14 @@
error-stack-parser "^2.0.0"
string-width "^2.0.0"
-"@nuxt/generator@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/generator/-/generator-2.14.0.tgz#5ff220db81b60a0c77dceb201a854775f97bf7c8"
- integrity sha512-//dTKG0VGWRYU5KUwswlSDgSmER/fPMQmGSF2xUPTGi24XWoej8qA0GDCQXxJuDFebn4ZZSDVTUHEw5QXcF3dg==
+"@nuxt/generator@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/generator/-/generator-2.14.5.tgz#1212f0383b5dbb7f2cdf6e8bca08dd99b9d7ac1b"
+ integrity sha512-vktzRVmECfO+3WMg4CMYtWkaUgQVEmTL+0LupQBWwpzhz/08pVL6UPRhg3MYS1mn/UlIShNBsaDvzUnX0BSzwg==
dependencies:
- "@nuxt/utils" "2.14.0"
+ "@nuxt/utils" "2.14.5"
chalk "^3.0.0"
- consola "^2.14.0"
+ consola "^2.15.0"
fs-extra "^8.1.0"
html-minifier "^4.0.0"
node-html-parser "^1.2.20"
@@ -1311,19 +1374,19 @@
consola "^2.10.1"
node-fetch "^2.6.0"
-"@nuxt/server@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/server/-/server-2.14.0.tgz#84c91ab8a46f6ada2192e31804b1c27aadfa7c9b"
- integrity sha512-UHFwiQ5ZQAo/Qvl/Pwk6eQBs2erc6RbOroIzlIoM3xcW52JEaLnVuMWupnSqVAx9rnjW3VLiQ1nXHUugA1atlQ==
+"@nuxt/server@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/server/-/server-2.14.5.tgz#2e81868fb006fef951ccdb6da8e61df9efc9f230"
+ integrity sha512-cA0PsaaocZ323B7eAgApxCRHSR1oayOLEEL75DDv0Dm2FPevesz1cgk9N9E01fYD499XnKzfRj6cbIg/S1QTIg==
dependencies:
- "@nuxt/config" "2.14.0"
- "@nuxt/utils" "2.14.0"
- "@nuxt/vue-renderer" "2.14.0"
+ "@nuxt/config" "2.14.5"
+ "@nuxt/utils" "2.14.5"
+ "@nuxt/vue-renderer" "2.14.5"
"@nuxtjs/youch" "^4.2.3"
chalk "^3.0.0"
compression "^1.7.4"
connect "^3.7.0"
- consola "^2.14.0"
+ consola "^2.15.0"
etag "^1.8.1"
fresh "^0.5.2"
fs-extra "^8.1.0"
@@ -1346,10 +1409,10 @@
destr "^1.0.0"
globby "^11.0.1"
-"@nuxt/telemetry@^1.2.2":
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-1.2.2.tgz#b086c73491c8891cca604694ffc08cc6a443ebff"
- integrity sha512-AAtOe8l/1Qevn6xJNoahU53k93fli+YzFz0dKWxpQbbOatSqMoIEI4iC1Nz+IBCzQgfib5OjIrd8IeO43g0dLQ==
+"@nuxt/telemetry@^1.2.3":
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-1.2.3.tgz#bf841ecba44352117d627c1a213f038acc2ff05e"
+ integrity sha512-Y79IXGNQrvuZ8/yiCOGqA5urkuhbkQ42cTA7tAGA3NHWja1lX0Rj4ZyFY0psZRvyShYd5kW3OEUp5oLln/wW/Q==
dependencies:
arg "^4.1.3"
ci-info "^2.0.0"
@@ -1358,7 +1421,7 @@
defu "^2.0.4"
destr "^1.0.0"
dotenv "^8.2.0"
- fs-extra "^9.0.1"
+ fs-extra "^8.1.0"
git-url-parse "^11.1.2"
inquirer "^7.3.0"
is-docker "^2.0.0"
@@ -1369,63 +1432,87 @@
rc9 "^1.0.0"
std-env "^2.2.1"
-"@nuxt/utils@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/utils/-/utils-2.14.0.tgz#17f97aef0cc6de2a6314f2caea4762368179fc30"
- integrity sha512-m8WCscqgaMh49Dx8chgJWxIbTHwy0DBEXr0WgwidJjXv5uzONaTTnS/k3w6r18tkGs+rLwB0f8Y/r0ftF2PMlg==
- dependencies:
- consola "^2.14.0"
+"@nuxt/types@^2.14.4":
+ version "2.14.4"
+ resolved "https://registry.yarnpkg.com/@nuxt/types/-/types-2.14.4.tgz#1c000849fdc3124f8544b251a811cc4094c1d085"
+ integrity sha512-hqqVY9rXBqYrkCStzZmoIWi7keJudOYZ1nBhbHs1pXN/AYwyJUAfYoPG4UE81kEG5CqIQrMXj47+xvOjbZuGbQ==
+ dependencies:
+ "@types/autoprefixer" "^9.7.2"
+ "@types/babel__core" "^7.1.9"
+ "@types/compression" "^1.7.0"
+ "@types/connect" "^3.4.33"
+ "@types/etag" "^1.8.0"
+ "@types/file-loader" "^4.2.0"
+ "@types/html-minifier" "^4.0.0"
+ "@types/less" "^3.0.1"
+ "@types/node" "^12.12.54"
+ "@types/node-sass" "^4.11.1"
+ "@types/optimize-css-assets-webpack-plugin" "^5.0.1"
+ "@types/pug" "^2.0.4"
+ "@types/serve-static" "^1.13.5"
+ "@types/terser-webpack-plugin" "^2.2.0"
+ "@types/webpack" "^4.41.21"
+ "@types/webpack-bundle-analyzer" "^3.8.0"
+ "@types/webpack-dev-middleware" "^3.7.2"
+ "@types/webpack-hot-middleware" "^2.25.3"
+
+"@nuxt/utils@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/utils/-/utils-2.14.5.tgz#b67e76c81cf0e19330a11ffc75289d1b862fb8c2"
+ integrity sha512-PwAX8zdUS1AbSukEtOL5J5FV5hL0F3Y4lg1mwj4bdTu6me3B4TM2xsKpOk0pzylDeL9SvS6KSuh/NUcnx2IsJQ==
+ dependencies:
+ consola "^2.15.0"
fs-extra "^8.1.0"
hash-sum "^2.0.0"
proper-lockfile "^4.1.1"
semver "^7.3.2"
- serialize-javascript "^4.0.0"
+ serialize-javascript "^5.0.0"
signal-exit "^3.0.3"
ua-parser-js "^0.7.21"
-"@nuxt/vue-app@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/vue-app/-/vue-app-2.14.0.tgz#59b7d43b762c8cbb7b2c17b0ad03f770660f3666"
- integrity sha512-6yFGT5fvgmlKHcy2SLj63XhsYCyLXpzMxZBaC3TMOBrnr0vkHU3o7SLQY9yiX+yzw9Em1RlES5YjMHSahUz2xw==
+"@nuxt/vue-app@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/vue-app/-/vue-app-2.14.5.tgz#4f0e2edbe55a4a24c164081c9085044e513bdce3"
+ integrity sha512-EJyG2FjVUwJHBpPDRkVzNjnr+4o8mi1SKfy+IMB8SFMAvdsv/NBVyJXsBGQBR8oqFcBZ+V94O7Iv17Y6nOTuvQ==
dependencies:
- node-fetch "^2.6.0"
+ node-fetch "^2.6.1"
unfetch "^4.1.0"
- vue "^2.6.11"
+ vue "^2.6.12"
vue-client-only "^2.0.0"
vue-meta "^2.4.0"
vue-no-ssr "^1.1.1"
- vue-router "^3.3.4"
- vue-template-compiler "^2.6.11"
+ vue-router "^3.4.3"
+ vue-template-compiler "^2.6.12"
vuex "^3.5.1"
-"@nuxt/vue-renderer@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/vue-renderer/-/vue-renderer-2.14.0.tgz#145aa78b8c87a04dc20f7aac399ddb774f201e49"
- integrity sha512-uZjMGHn9uitnrTiIRun/qu9UPr+EKoFeNbFL6JNUrEPHgANoXG0W1+XaEhwUXL8fJhGj3myrqgRHtRTPkhcosw==
+"@nuxt/vue-renderer@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/vue-renderer/-/vue-renderer-2.14.5.tgz#fa7504479caa28fcd96d001024ef927826bda781"
+ integrity sha512-AlsiukZysYwl6ZaiprHfZ0yFEUfrTyjVTHc8V05f9RVg5PCZCCYfgsaIEG1T5GBEuEj1g1cLT+NS+UH4DuAhkg==
dependencies:
"@nuxt/devalue" "^1.2.4"
- "@nuxt/utils" "2.14.0"
- consola "^2.14.0"
+ "@nuxt/utils" "2.14.5"
+ consola "^2.15.0"
fs-extra "^8.1.0"
lru-cache "^5.1.1"
- vue "^2.6.11"
+ vue "^2.6.12"
vue-meta "^2.4.0"
- vue-server-renderer "^2.6.11"
+ vue-server-renderer "^2.6.12"
-"@nuxt/webpack@2.14.0":
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/@nuxt/webpack/-/webpack-2.14.0.tgz#43cf6575a5c6015f71ca3957555103f8f2242c68"
- integrity sha512-3ShDn/FitYr+jtXPkEjecNITo8YMuEjIs8BxGkI8QwW+3h2a6+v46OxPqz3II4puxQombdyrz8c4aepURW+fIQ==
+"@nuxt/webpack@2.14.5":
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/webpack/-/webpack-2.14.5.tgz#8f1496e7455b4ebde185be063cb32cd44cf33ddd"
+ integrity sha512-Zd4ZqvrMYyD38cYCYm3P4LKczkcfgnWWbKxGawOqrZP9xCuWDSQhI81l5lNVT+ECwXuVuyVZwnumb+ux9HHy3Q==
dependencies:
- "@babel/core" "^7.10.5"
- "@nuxt/babel-preset-app" "2.14.0"
+ "@babel/core" "^7.11.6"
+ "@nuxt/babel-preset-app" "2.14.5"
"@nuxt/friendly-errors-webpack-plugin" "^2.5.0"
- "@nuxt/utils" "2.14.0"
+ "@nuxt/utils" "2.14.5"
babel-loader "^8.1.0"
cache-loader "^4.1.0"
- caniuse-lite "^1.0.30001107"
+ caniuse-lite "^1.0.30001125"
chalk "^3.0.0"
- consola "^2.14.0"
+ consola "^2.15.0"
create-require "^1.0.2"
css-loader "^3.6.0"
cssnano "^4.1.10"
@@ -1435,9 +1522,9 @@
glob "^7.1.6"
hard-source-webpack-plugin "^0.13.1"
hash-sum "^2.0.0"
- html-webpack-plugin "^4.3.0"
+ html-webpack-plugin "^4.4.1"
memory-fs "^0.4.1"
- optimize-css-assets-webpack-plugin "^5.0.3"
+ optimize-css-assets-webpack-plugin "^5.0.4"
pify "^4.0.1"
postcss "^7.0.32"
postcss-import "^12.0.1"
@@ -1453,11 +1540,11 @@
time-fix-plugin "^2.0.6"
url-loader "^2.3.0"
vue-loader "^15.9.3"
- webpack "^4.44.0"
+ webpack "^4.44.1"
webpack-bundle-analyzer "^3.8.0"
webpack-dev-middleware "^3.7.2"
webpack-hot-middleware "^2.25.0"
- webpack-node-externals "^2.5.0"
+ webpack-node-externals "^2.5.2"
webpackbar "^4.0.0"
"@nuxtjs/google-analytics@^2.4.0":
@@ -1467,17 +1554,17 @@
dependencies:
vue-analytics "^5.22.1"
-"@nuxtjs/pwa@^3.0.0-beta.20":
- version "3.0.0-beta.20"
- resolved "https://registry.yarnpkg.com/@nuxtjs/pwa/-/pwa-3.0.0-beta.20.tgz#56766da5485c09cb73307285292203f4a4417d5d"
- integrity sha512-pZhGBqRvTCItvAdZ6PSZtqJUKT6ybphXCykfHh95KzW0cGf10QH/ETPci2AMDEzfx4jW2hImGSmLBToVWOV7Uw==
+"@nuxtjs/pwa@^3.0.2":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@nuxtjs/pwa/-/pwa-3.0.2.tgz#ff7ea391a7e5bbbfc0b92c5856f90dd1c0a0c43d"
+ integrity sha512-te7lzQ+pDI72GwDHETrt9mmrJaA35j0YyrzirjAElT7XipWwf3NQXWqkkHNmlKCiQ9nCXVU6mPLAN7SJeKc8NA==
dependencies:
- defu "^1.0.0"
- execa "^1.0.0"
- fs-extra "^8.1.0"
- hasha "^5.0.0"
- jimp-compact "^0.8.0"
- workbox-cdn "^4.3.1"
+ defu "^3.1.0"
+ execa "^4.0.3"
+ fs-extra "^9.0.1"
+ hasha "^5.2.0"
+ jimp-compact "^0.12.1"
+ workbox-cdn "^5.1.3"
"@nuxtjs/robots@^2.4.2":
version "2.4.2"
@@ -1509,9 +1596,9 @@
stack-trace "0.0.10"
"@sinonjs/commons@^1.7.0":
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.0.tgz#c8d68821a854c555bba172f3b06959a0039b236d"
- integrity sha512-wEj54PfsZ5jGSwMX68G8ZXFawcSglQSXqCftWX3ec8MDUzQdHgcKvw97awHbY0efQEL5iKUOAmmVtoYgmrSG4Q==
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217"
+ integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==
dependencies:
type-detect "4.0.8"
@@ -1522,10 +1609,10 @@
dependencies:
"@sinonjs/commons" "^1.7.0"
-"@testing-library/jest-dom@^5.11.1":
- version "5.11.1"
- resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.11.1.tgz#b9541d7625cec9e5feb647f49a96c43f7c055cdd"
- integrity sha512-NHOHjDwyBoqM7mXjNLieSp/6vJ17DILzhNTw7+RarluaBkyWRzWgFj+d6xnd1adMBlwfQSeR2FWGTxHXCxeMSA==
+"@testing-library/jest-dom@^5.11.4":
+ version "5.11.4"
+ resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.11.4.tgz#f325c600db352afb92995c2576022b35621ddc99"
+ integrity sha512-6RRn3epuweBODDIv3dAlWjOEHQLpGJHB2i912VS3JQtsD22+ENInhdDNl4ZZQiViLlIfFinkSET/J736ytV9sw==
dependencies:
"@babel/runtime" "^7.9.2"
"@types/testing-library__jest-dom" "^5.9.1"
@@ -1533,8 +1620,6 @@
chalk "^3.0.0"
css "^3.0.0"
css.escape "^1.5.1"
- jest-diff "^25.1.0"
- jest-matcher-utils "^25.1.0"
lodash "^4.17.15"
redent "^3.0.0"
@@ -1543,7 +1628,15 @@
resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a"
integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==
-"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
+"@types/autoprefixer@^9.7.2":
+ version "9.7.2"
+ resolved "https://registry.yarnpkg.com/@types/autoprefixer/-/autoprefixer-9.7.2.tgz#64b3251c9675feef5a631b7dd34cfea50a8fdbcc"
+ integrity sha512-QX7U7YW3zX3ex6MECtWO9folTGsXeP4b8bSjTq3I1ODM+H+sFHwGKuof+T+qBcDClGlCGtDb3SVfiTVfmcxw4g==
+ dependencies:
+ "@types/browserslist" "*"
+ postcss "7.x.x"
+
+"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7", "@types/babel__core@^7.1.9":
version "7.1.9"
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.9.tgz#77e59d438522a6fb898fa43dc3455c6e72f3963d"
integrity sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw==
@@ -1576,16 +1669,83 @@
dependencies:
"@babel/types" "^7.3.0"
+"@types/body-parser@*":
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.0.tgz#0685b3c47eb3006ffed117cdd55164b61f80538f"
+ integrity sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==
+ dependencies:
+ "@types/connect" "*"
+ "@types/node" "*"
+
+"@types/browserslist@*":
+ version "4.8.0"
+ resolved "https://registry.yarnpkg.com/@types/browserslist/-/browserslist-4.8.0.tgz#60489aefdf0fcb56c2d8eb65267ff08dad7a526d"
+ integrity sha512-4PyO9OM08APvxxo1NmQyQKlJdowPCOQIy5D/NLO3aO0vGC57wsMptvGp3b8IbYnupFZr92l1dlVief1JvS6STQ==
+
+"@types/clean-css@*":
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/@types/clean-css/-/clean-css-4.2.2.tgz#99fd79f6939c2b325938a1c569712e07dd97d709"
+ integrity sha512-xiTJn3bmDh1lA8c6iVJs4ZhHw+pcmxXlJQXOB6G1oULaak8rmarIeFKI4aTJ7849dEhaO612wgIualZfbxTJwA==
+ dependencies:
+ "@types/node" "*"
+
"@types/color-name@^1.1.1":
version "1.1.1"
resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
+"@types/compression@^1.7.0":
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/@types/compression/-/compression-1.7.0.tgz#8dc2a56604873cf0dd4e746d9ae4d31ae77b2390"
+ integrity sha512-3LzWUM+3k3XdWOUk/RO+uSjv7YWOatYq2QADJntK1pjkk4DfVP0KrIEPDnXRJxAAGKe0VpIPRmlINLDuCedZWw==
+ dependencies:
+ "@types/express" "*"
+
+"@types/connect@*", "@types/connect@^3.4.33":
+ version "3.4.33"
+ resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.33.tgz#31610c901eca573b8713c3330abc6e6b9f588546"
+ integrity sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==
+ dependencies:
+ "@types/node" "*"
+
"@types/estree@*":
version "0.0.45"
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884"
integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g==
+"@types/etag@^1.8.0":
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/@types/etag/-/etag-1.8.0.tgz#37f0b1f3ea46da7ae319bbedb607e375b4c99f7e"
+ integrity sha512-EdSN0x+Y0/lBv7YAb8IU4Jgm6DWM+Bqtz7o5qozl96fzaqdqbdfHS5qjdpFeIv7xQ8jSLyjMMNShgYtMajEHyQ==
+ dependencies:
+ "@types/node" "*"
+
+"@types/express-serve-static-core@*":
+ version "4.17.12"
+ resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.12.tgz#9a487da757425e4f267e7d1c5720226af7f89591"
+ integrity sha512-EaEdY+Dty1jEU7U6J4CUWwxL+hyEGMkO5jan5gplfegUgCUsIUWqXxqw47uGjimeT4Qgkz/XUfwoau08+fgvKA==
+ dependencies:
+ "@types/node" "*"
+ "@types/qs" "*"
+ "@types/range-parser" "*"
+
+"@types/express@*":
+ version "4.17.8"
+ resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.8.tgz#3df4293293317e61c60137d273a2e96cd8d5f27a"
+ integrity sha512-wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ==
+ dependencies:
+ "@types/body-parser" "*"
+ "@types/express-serve-static-core" "*"
+ "@types/qs" "*"
+ "@types/serve-static" "*"
+
+"@types/file-loader@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@types/file-loader/-/file-loader-4.2.0.tgz#ec8e793e275b7f90cdec3ff286518c6bf7bb8fc3"
+ integrity sha512-N3GMqKiKSNd41q4/lZlkdvNXKKWVdOXrA8Rniu64+25X0K2U1mWmTSu1CIqXKKsZUCwfaFcaioviLQtQ+EowLg==
+ dependencies:
+ "@types/webpack" "*"
+
"@types/graceful-fs@^4.1.2":
version "4.1.3"
resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f"
@@ -1598,6 +1758,15 @@
resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz#551a4589b6ee2cc9c1dff08056128aec29b94880"
integrity sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA==
+"@types/html-minifier@^4.0.0":
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/@types/html-minifier/-/html-minifier-4.0.0.tgz#2065cb9944f2d1b241146707c6935aa7b947d279"
+ integrity sha512-eFnGhrKmjWBlnSGNtunetE3UU2Tc/LUl92htFslSSTmpp9EKHQVcYQadCyYfnzUEFB5G/3wLWo/USQS/mEPKrA==
+ dependencies:
+ "@types/clean-css" "*"
+ "@types/relateurl" "*"
+ "@types/uglify-js" "*"
+
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
version "2.0.3"
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
@@ -1618,24 +1787,41 @@
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-lib-report" "*"
+"@types/istanbul-reports@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821"
+ integrity sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==
+ dependencies:
+ "@types/istanbul-lib-report" "*"
+
"@types/jest@*":
- version "26.0.4"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.4.tgz#d2e513e85aca16992816f192582b5e67b0b15efb"
- integrity sha512-4fQNItvelbNA9+sFgU+fhJo8ZFF+AS4Egk3GWwCW2jFtViukXbnztccafAdLhzE/0EiCogljtQQXP8aQ9J7sFg==
+ version "26.0.13"
+ resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.13.tgz#5a7b9d5312f5dd521a38329c38ee9d3802a0b85e"
+ integrity sha512-sCzjKow4z9LILc6DhBvn5AkIfmQzDZkgtVVKmGwVrs5tuid38ws281D4l+7x1kP487+FlKDh5kfMZ8WSPAdmdA==
dependencies:
jest-diff "^25.2.1"
pretty-format "^25.2.1"
-"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4":
- version "7.0.5"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd"
- integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==
+"@types/js-yaml@^3.12.5":
+ version "3.12.5"
+ resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.5.tgz#136d5e6a57a931e1cce6f9d8126aa98a9c92a6bb"
+ integrity sha512-JCcp6J0GV66Y4ZMDAQCXot4xprYB+Zfd3meK9+INSJeVZwJmHAW30BBEEkPzXswMXuiyReUGOP3GxrADc9wPww==
+
+"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5":
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0"
+ integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==
"@types/json5@^0.0.29":
version "0.0.29"
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
+"@types/less@^3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@types/less/-/less-3.0.1.tgz#625694093c72f8356c4042754e222407e50d6b08"
+ integrity sha512-dBp05MtWN/w1fGVjj5LVrDw6VrdYllpWczbUkCsrzBj08IHsSyRLOFvUrCFqZFVR+nsqkrRLNg6oOlvqMLPaSA==
+
"@types/mdast@^3.0.0":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb"
@@ -1643,41 +1829,87 @@
dependencies:
"@types/unist" "*"
+"@types/memory-fs@*":
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/@types/memory-fs/-/memory-fs-0.3.2.tgz#5d4753f9b390cb077c8c8af97bc96463399ceccd"
+ integrity sha512-j5AcZo7dbMxHoOimcHEIh0JZe5e1b8q8AqGSpZJrYc7xOgCIP79cIjTdx5jSDLtySnQDwkDTqwlC7Xw7uXw7qg==
+ dependencies:
+ "@types/node" "*"
+
+"@types/mime@*":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.3.tgz#c893b73721db73699943bfc3653b1deb7faa4a3a"
+ integrity sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==
+
"@types/minimist@^1.2.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz#69a23a3ad29caf0097f06eda59b361ee2f0639f6"
integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=
+"@types/node-sass@^4.11.1":
+ version "4.11.1"
+ resolved "https://registry.yarnpkg.com/@types/node-sass/-/node-sass-4.11.1.tgz#bda27c5181cbf7c090c3058e119633dfb2b6504c"
+ integrity sha512-wPOmOEEtbwQiPTIgzUuRSQZ3H5YHinsxRGeZzPSDefAm4ylXWnZG9C0adses8ymyplKK0gwv3JkDNO8GGxnWfg==
+ dependencies:
+ "@types/node" "*"
+
"@types/node@*":
- version "14.0.23"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.23.tgz#676fa0883450ed9da0bb24156213636290892806"
- integrity sha512-Z4U8yDAl5TFkmYsZdFPdjeMa57NOvnaf1tljHzhouaPEp7LCj2JKkejpI1ODviIAQuW4CcQmxkQ77rnLsOOoKw==
+ version "14.6.4"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.6.4.tgz#a145cc0bb14ef9c4777361b7bbafa5cf8e3acb5a"
+ integrity sha512-Wk7nG1JSaMfMpoMJDKUsWYugliB2Vy55pdjLpmLixeyMi7HizW2I/9QoxsPCkXl3dO+ZOVqPumKaDUv5zJu2uQ==
-"@types/node@^12.0.2":
- version "12.12.50"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.50.tgz#e9b2e85fafc15f2a8aa8fdd41091b983da5fd6ee"
- integrity sha512-5ImO01Fb8YsEOYpV+aeyGYztcYcjGsBvN4D7G5r1ef2cuQOpymjWNQi5V0rKHE6PC2ru3HkoUr/Br2/8GUA84w==
+"@types/node@^12.0.2", "@types/node@^12.12.54":
+ version "12.12.55"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.55.tgz#0aa266441cb9e1fd3e415a8f619cb7d776667cdd"
+ integrity sha512-Vd6xQUVvPCTm7Nx1N7XHcpX6t047ltm7TgcsOr4gFHjeYgwZevo+V7I1lfzHnj5BT5frztZ42+RTG4MwYw63dw==
"@types/normalize-package-data@^2.4.0":
version "2.4.0"
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
+"@types/optimize-css-assets-webpack-plugin@^5.0.1":
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/@types/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz#1f437ef9ef937b393687a8819be2d2fddc03b069"
+ integrity sha512-qyi5xmSl+DTmLFtVtelhso3VnNQYxltfgMa+Ed02xqNZCZBD0uYR6i64FmcwfieDzZRdwkJxt9o2JHq/5PBKQg==
+ dependencies:
+ "@types/webpack" "*"
+
"@types/parse-json@^4.0.0":
version "4.0.0"
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
"@types/prettier@^2.0.0":
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.0.2.tgz#5bb52ee68d0f8efa9cc0099920e56be6cc4e37f3"
- integrity sha512-IkVfat549ggtkZUthUzEX49562eGikhSYeVGX97SkMFn+sTZrgRewXjQ4tPKFPCykZHkX1Zfd9OoELGqKU2jJA==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.0.tgz#5f96562c1075ee715a5b138f0b7f591c1f40f6b8"
+ integrity sha512-hiYA88aHiEIgDmeKlsyVsuQdcFn3Z2VuFd/Xm/HCnGnPD8UFU5BM128uzzRVVGEzKDKYUrRsRH9S2o+NUy/3IA==
+
+"@types/pug@^2.0.4":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@types/pug/-/pug-2.0.4.tgz#8772fcd0418e3cd2cc171555d73007415051f4b2"
+ integrity sha1-h3L80EGOPNLMFxVV1zAHQVBR9LI=
"@types/q@^1.5.1":
version "1.5.4"
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24"
integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==
+"@types/qs@*":
+ version "6.9.4"
+ resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.4.tgz#a59e851c1ba16c0513ea123830dd639a0a15cb6a"
+ integrity sha512-+wYo+L6ZF6BMoEjtf8zB2esQsqdV6WsjRK/GP9WOgLPrq87PbNWgIxS76dS5uvl/QXtHGakZmwTznIfcPXcKlQ==
+
+"@types/range-parser@*":
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c"
+ integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==
+
+"@types/relateurl@*":
+ version "0.2.28"
+ resolved "https://registry.yarnpkg.com/@types/relateurl/-/relateurl-0.2.28.tgz#6bda7db8653fa62643f5ee69e9f69c11a392e3a6"
+ integrity sha1-a9p9uGU/piZD9e5p6facEaOS46Y=
+
"@types/resolve@0.0.8":
version "0.0.8"
resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194"
@@ -1692,6 +1924,14 @@
dependencies:
"@types/node" "*"
+"@types/serve-static@*", "@types/serve-static@^1.13.5":
+ version "1.13.5"
+ resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.5.tgz#3d25d941a18415d3ab092def846e135a08bbcf53"
+ integrity sha512-6M64P58N+OXjU432WoLLBQxbA0LRGBCRm7aAGQJ+SMC1IMl0dgRVi9EFfoDcS2a7Xogygk/eGN94CfwU9UF7UQ==
+ dependencies:
+ "@types/express-serve-static-core" "*"
+ "@types/mime" "*"
+
"@types/source-list-map@*":
version "0.1.2"
resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
@@ -1717,10 +1957,18 @@
resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74"
integrity sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==
+"@types/terser-webpack-plugin@^2.2.0":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@types/terser-webpack-plugin/-/terser-webpack-plugin-2.2.1.tgz#d6687ed29026532764b031209a5d6dc6d44b33f2"
+ integrity sha512-Z/6t/7qz4LeO64owJ9x7JQ6X791qfLxp1M1eCp6hFQlj7xuB5+Ol7DpEn5kWClTARZ7GlPLRsEWzFzQjZShF6w==
+ dependencies:
+ "@types/webpack" "*"
+ terser "^4.3.9"
+
"@types/testing-library__jest-dom@^5.9.1":
- version "5.9.1"
- resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.1.tgz#aba5ee062b7880f69c212ef769389f30752806e5"
- integrity sha512-yYn5EKHO3MPEMSOrcAb1dLWY+68CG29LiXKsWmmpVHqoP5+ZRiAVLyUHvPNrO2dABDdUGZvavMsaGpWNjM6N2g==
+ version "5.9.2"
+ resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.2.tgz#59e4771a1cf87d51e89a5cc8195cd3b647cba322"
+ integrity sha512-K7nUSpH/5i8i0NagTJ+uFUDRueDlnMNhJtMjMwTGPPSqyImbWC/hgKPDCKt6Phu2iMJg2kWqlax+Ucj2DKMwpA==
dependencies:
"@types/jest" "*"
@@ -1736,19 +1984,44 @@
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e"
integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
+"@types/webpack-bundle-analyzer@^3.8.0":
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/@types/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.8.0.tgz#d1f196f95159254f76a3c2283c4677585bdf354d"
+ integrity sha512-Ah6FbkXLAVUNI/ExXHsTS90iRS/Efplh333NySjhGx09oeH9qXf57NMUfl4RADTL5a89hQaq/nbT4eb0LwsQJw==
+ dependencies:
+ "@types/webpack" "*"
+
+"@types/webpack-dev-middleware@^3.7.2":
+ version "3.7.2"
+ resolved "https://registry.yarnpkg.com/@types/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#31030c7cca7f98d56debfd859bb57f9040f0d3c5"
+ integrity sha512-PvETiS//pjVZBK48aJfbxzT7+9LIxanbnk9eXXYUfefGyPdsCkNrMDxRlOVrBvxukXUhD5B6N/pkPMdWrtuFkA==
+ dependencies:
+ "@types/connect" "*"
+ "@types/memory-fs" "*"
+ "@types/webpack" "*"
+ loglevel "^1.6.2"
+
+"@types/webpack-hot-middleware@^2.25.3":
+ version "2.25.3"
+ resolved "https://registry.yarnpkg.com/@types/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz#ba6265ada359cae4f437d8ac08ac5b8c616f7521"
+ integrity sha512-zGkTzrwQnhSadIXGYGZLu7tpXQwn4+6y9nGeql+5UeRtW/k54Jp4SnzB0Qw00ednw0ZFoZOvqTFfXSbFXohc5Q==
+ dependencies:
+ "@types/connect" "*"
+ "@types/webpack" "*"
+
"@types/webpack-sources@*":
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.0.tgz#e58f1f05f87d39a5c64cf85705bdbdbb94d4d57e"
- integrity sha512-c88dKrpSle9BtTqR6ifdaxu1Lvjsl3C5OsfvuUbUwdXymshv1TkufUAXBajCCUM/f/TmnkZC/Esb03MinzSiXQ==
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.2.tgz#5d3d4dea04008a779a90135ff96fb5c0c9e6292c"
+ integrity sha512-77T++JyKow4BQB/m9O96n9d/UUHWLQHlcqXb9Vsf4F1+wKNrrlWNFPDLKNT92RJnCSL6CieTc+NDXtCVZswdTw==
dependencies:
"@types/node" "*"
"@types/source-list-map" "*"
source-map "^0.7.3"
-"@types/webpack@^4.41.8":
- version "4.41.21"
- resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.21.tgz#cc685b332c33f153bb2f5fc1fa3ac8adeb592dee"
- integrity sha512-2j9WVnNrr/8PLAB5csW44xzQSJwS26aOnICsP3pSGCEdsu6KYtfQ6QJsVUKHWRnm1bL7HziJsfh5fHqth87yKA==
+"@types/webpack@*", "@types/webpack@^4.41.21", "@types/webpack@^4.41.8":
+ version "4.41.22"
+ resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.22.tgz#ff9758a17c6bd499e459b91e78539848c32d0731"
+ integrity sha512-JQDJK6pj8OMV9gWOnN1dcLCyU9Hzs6lux0wBO4lr1+gyEhIBR9U3FMrz12t2GPkg110XAxEAw2WHF6g7nZIbRQ==
dependencies:
"@types/anymatch" "*"
"@types/node" "*"
@@ -1757,6 +2030,13 @@
"@types/webpack-sources" "*"
source-map "^0.6.0"
+"@types/xml2js@^0.4.5":
+ version "0.4.5"
+ resolved "https://registry.yarnpkg.com/@types/xml2js/-/xml2js-0.4.5.tgz#d21759b056f282d9c7066f15bbf5c19b908f22fa"
+ integrity sha512-yohU3zMn0fkhlape1nxXG2bLEGZRc1FeqF80RoHaYXJN7uibaauXfhzhOJr1Xh36sn+/tx21QAOf07b/xYVk1w==
+ dependencies:
+ "@types/node" "*"
+
"@types/yargs-parser@*":
version "15.0.0"
resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d"
@@ -1769,29 +2049,53 @@
dependencies:
"@types/yargs-parser" "*"
-"@typescript-eslint/experimental-utils@^2.5.0":
- version "2.34.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f"
- integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==
+"@typescript-eslint/experimental-utils@^4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.0.1.tgz#7d9a3ab6821ad5274dad2186c1aa0d93afd696eb"
+ integrity sha512-gAqOjLiHoED79iYTt3F4uSHrYmg/GPz/zGezdB0jAdr6S6gwNiR/j7cTZ8nREKVzMVKLd9G3xbg1sV9GClW3sw==
dependencies:
"@types/json-schema" "^7.0.3"
- "@typescript-eslint/typescript-estree" "2.34.0"
+ "@typescript-eslint/scope-manager" "4.0.1"
+ "@typescript-eslint/types" "4.0.1"
+ "@typescript-eslint/typescript-estree" "4.0.1"
eslint-scope "^5.0.0"
eslint-utils "^2.0.0"
-"@typescript-eslint/typescript-estree@2.34.0":
- version "2.34.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5"
- integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==
+"@typescript-eslint/scope-manager@4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.0.1.tgz#24d93c3000bdfcc5a157dc4d32b742405a8631b5"
+ integrity sha512-u3YEXVJ8jsj7QCJk3om0Y457fy2euEOkkzxIB/LKU3MdyI+FJ2gI0M4aKEaXzwCSfNDiZ13a3lDo5DVozc+XLQ==
dependencies:
+ "@typescript-eslint/types" "4.0.1"
+ "@typescript-eslint/visitor-keys" "4.0.1"
+
+"@typescript-eslint/types@4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.0.1.tgz#1cf72582f764931f085cb8230ff215980fe467b2"
+ integrity sha512-S+gD3fgbkZYW2rnbjugNMqibm9HpEjqZBZkTiI3PwbbNGWmAcxolWIUwZ0SKeG4Dy2ktpKKaI/6+HGYVH8Qrlg==
+
+"@typescript-eslint/typescript-estree@4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.0.1.tgz#29a43c7060641ec51c902d9f50ac7c5866ec479f"
+ integrity sha512-zGzleORFXrRWRJAMLTB2iJD1IZbCPkg4hsI8mGdpYlKaqzvKYSEWVAYh14eauaR+qIoZVWrXgYSXqLtTlxotiw==
+ dependencies:
+ "@typescript-eslint/types" "4.0.1"
+ "@typescript-eslint/visitor-keys" "4.0.1"
debug "^4.1.1"
- eslint-visitor-keys "^1.1.0"
- glob "^7.1.6"
+ globby "^11.0.1"
is-glob "^4.0.1"
lodash "^4.17.15"
semver "^7.3.2"
tsutils "^3.17.1"
+"@typescript-eslint/visitor-keys@4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.0.1.tgz#d4e8de62775f2a6db71c7e8539633680039fdd6c"
+ integrity sha512-yBSqd6FjnTzbg5RUy9J+9kJEyQjTI34JdGMJz+9ttlJzLCnGkBikxw+N5n2VDcc3CesbIEJ0MnZc5uRYnrEnCw==
+ dependencies:
+ "@typescript-eslint/types" "4.0.1"
+ eslint-visitor-keys "^2.0.0"
+
"@vue/babel-helper-vue-jsx-merge-props@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.0.0.tgz#048fe579958da408fb7a8b2a3ec050b50a661040"
@@ -1857,9 +2161,9 @@
camelcase "^5.0.0"
"@vue/component-compiler-utils@^3.1.0":
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.1.2.tgz#8213a5ff3202f9f2137fe55370f9e8b9656081c3"
- integrity sha512-QLq9z8m79mCinpaEeSURhnNCN6djxpHw0lpP/bodMlt5kALfONpryMthvnrQOlTcIKoF+VoPi+lPHUYeDFPXug==
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz#8f85182ceed28e9b3c75313de669f83166d11e5d"
+ integrity sha512-lejBLa7xAMsfiZfNp7Kv51zOzifnb29FwdnMLa96z26kXErPFioSf9BMcePVIQ6/Gc6/mC0UrPpxAWIHyae0vw==
dependencies:
consolidate "^0.15.1"
hash-sum "^1.0.2"
@@ -1872,10 +2176,10 @@
optionalDependencies:
prettier "^1.18.2"
-"@vue/test-utils@^1.0.3":
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.3.tgz#587c4dd9b424b66022f188c19bc605da2ce91c6f"
- integrity sha512-mmsKXZSGfvd0bH05l4SNuczZ2MqlJH2DWhiul5wJXFxbf/gRRd2UL4QZgozEMQ30mRi9i4/+p4JJat8S4Js64Q==
+"@vue/test-utils@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.1.0.tgz#76305e73a786c921ede1352849614e26c7113f94"
+ integrity sha512-M+3jtVqNYIrvzO5gaxogre5a5+96h0hN/dXw+5Lj0t+dp6fAhYcUjpLrC9j9cEEkl2Rcuh/gKYRUmR5N4vcqPw==
dependencies:
dom-event-types "^1.0.0"
lodash "^4.17.15"
@@ -2045,9 +2349,9 @@ JSONStream@^1.0.4:
through ">=2.2.7 <3"
abab@^2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a"
- integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.4.tgz#6dfa57b417ca06d21b2478f0e638302f99c2405c"
+ integrity sha512-Eu9ELJWCz/c1e9gTiCY+FceWxcqzjYEbqMgtndnuSqZSUCOL73TWNK2mHfIj4Cw2E/ongOp+JISVNCmovt2KYQ==
abbrev@1:
version "1.1.1"
@@ -2085,10 +2389,10 @@ acorn@^6.4.1:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474"
integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==
-acorn@^7.1.1, acorn@^7.3.1:
- version "7.3.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd"
- integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA==
+acorn@^7.1.1, acorn@^7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c"
+ integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w==
add-stream@^1.0.0:
version "1.0.0"
@@ -2110,9 +2414,9 @@ agentkeepalive@^3.3.0:
humanize-ms "^1.2.1"
aggregate-error@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0"
- integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
+ integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
dependencies:
clean-stack "^2.0.0"
indent-string "^4.0.0"
@@ -2122,15 +2426,15 @@ ajv-errors@^1.0.0:
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
-ajv-keywords@^3.1.0, ajv-keywords@^3.4.1:
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.1.tgz#b83ca89c5d42d69031f424cad49aada0236c6957"
- integrity sha512-KWcq3xN8fDjSB+IMoh2VaXVhRI0BBGxoYp3rx7Pkb6z0cFjYR9Q9l4yZqqals0/zsioCmocC5H6UvsGD4MoIBA==
+ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+ integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
-ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.5.5:
- version "6.12.3"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706"
- integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==
+ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4:
+ version "6.12.4"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz#0614facc4522127fa713445c6bfd3ebd376e2234"
+ integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==
dependencies:
fast-deep-equal "^3.1.1"
fast-json-stable-stringify "^2.0.0"
@@ -2344,19 +2648,15 @@ arrify@^1.0.1:
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
-arrify@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa"
- integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
-
-asn1.js@^4.0.0:
- version "4.10.1"
- resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
- integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==
+asn1.js@^5.2.0:
+ version "5.4.1"
+ resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
+ integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
dependencies:
bn.js "^4.0.0"
inherits "^2.0.1"
minimalistic-assert "^1.0.0"
+ safer-buffer "^2.1.0"
asn1@~0.2.3:
version "0.2.4"
@@ -2440,14 +2740,14 @@ atob@^2.1.2:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-autoprefixer@^9.6.1, autoprefixer@^9.8.5:
- version "9.8.5"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.5.tgz#2c225de229ddafe1d1424c02791d0c3e10ccccaa"
- integrity sha512-C2p5KkumJlsTHoNv9w31NrBRgXhf6eCMteJuHZi2xhkgC+5Vm40MEtCKPhc0qdgAOhox0YPy1SQHTAky05UoKg==
+autoprefixer@^9.6.1, autoprefixer@^9.8.6:
+ version "9.8.6"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
+ integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==
dependencies:
browserslist "^4.12.0"
- caniuse-lite "^1.0.30001097"
- colorette "^1.2.0"
+ caniuse-lite "^1.0.30001109"
+ colorette "^1.2.1"
normalize-range "^0.1.2"
num2fraction "^1.2.2"
postcss "^7.0.32"
@@ -2466,9 +2766,9 @@ aws-sign2@~0.7.0:
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
aws4@^1.8.0:
- version "1.10.0"
- resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2"
- integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==
+ version "1.10.1"
+ resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428"
+ integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==
axios@^0.18.1:
version "0.18.1"
@@ -2511,16 +2811,16 @@ babel-eslint@^10.1.0:
eslint-visitor-keys "^1.0.0"
resolve "^1.12.0"
-babel-jest@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.1.0.tgz#b20751185fc7569a0f135730584044d1cb934328"
- integrity sha512-Nkqgtfe7j6PxLO6TnCQQlkMm8wdTdnIF8xrdpooHCuD5hXRzVEPbPneTJKknH5Dsv3L8ip9unHDAp48YQ54Dkg==
+babel-jest@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.3.0.tgz#10d0ca4b529ca3e7d1417855ef7d7bd6fc0c3463"
+ integrity sha512-sxPnQGEyHAOPF8NcUsD0g7hDCnvLL2XyblRBcgrzTWBB/mAIpWow3n1bEL+VghnnZfreLhFSBsFluRoK2tRK4g==
dependencies:
- "@jest/transform" "^26.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/transform" "^26.3.0"
+ "@jest/types" "^26.3.0"
"@types/babel__core" "^7.1.7"
babel-plugin-istanbul "^6.0.0"
- babel-preset-jest "^26.1.0"
+ babel-preset-jest "^26.3.0"
chalk "^4.0.0"
graceful-fs "^4.2.4"
slash "^3.0.0"
@@ -2561,10 +2861,10 @@ babel-plugin-istanbul@^6.0.0:
istanbul-lib-instrument "^4.0.0"
test-exclude "^6.0.0"
-babel-plugin-jest-hoist@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.1.0.tgz#c6a774da08247a28285620a64dfadbd05dd5233a"
- integrity sha512-qhqLVkkSlqmC83bdMhM8WW4Z9tB+JkjqAqlbbohS9sJLT5Ha2vfzuKqg5yenXrAjOPG2YC0WiXdH3a9PvB+YYw==
+babel-plugin-jest-hoist@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.2.0.tgz#bdd0011df0d3d513e5e95f76bd53b51147aca2dd"
+ integrity sha512-B/hVMRv8Nh1sQ1a3EY8I0n4Y1Wty3NrR5ebOyVT302op+DOAau+xNEImGMsUWOC3++ZlMooCytKz+NgN8aKGbA==
dependencies:
"@babel/template" "^7.3.3"
"@babel/types" "^7.3.3"
@@ -2589,7 +2889,7 @@ babel-plugin-transform-strict-mode@^6.24.1:
babel-runtime "^6.22.0"
babel-types "^6.24.1"
-babel-preset-current-node-syntax@^0.1.2:
+babel-preset-current-node-syntax@^0.1.3:
version "0.1.3"
resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da"
integrity sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ==
@@ -2606,13 +2906,13 @@ babel-preset-current-node-syntax@^0.1.2:
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
-babel-preset-jest@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.1.0.tgz#612f714e5b457394acfd863793c564cbcdb7d1c1"
- integrity sha512-na9qCqFksknlEj5iSdw1ehMVR06LCCTkZLGKeEtxDDdhg8xpUF09m29Kvh1pRbZ07h7AQ5ttLYUwpXL4tO6w7w==
+babel-preset-jest@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.3.0.tgz#ed6344506225c065fd8a0b53e191986f74890776"
+ integrity sha512-5WPdf7nyYi2/eRxCbVrE1kKCWxgWY4RsPEbdJWFm7QsesFGqjdkyLeu1zRkwM1cxK6EPIlNd6d2AxLk7J+t4pw==
dependencies:
- babel-plugin-jest-hoist "^26.1.0"
- babel-preset-current-node-syntax "^0.1.2"
+ babel-plugin-jest-hoist "^26.2.0"
+ babel-preset-current-node-syntax "^0.1.3"
babel-runtime@^6.22.0, babel-runtime@^6.26.0:
version "6.26.0"
@@ -2736,9 +3036,9 @@ bindings@^1.5.0:
file-uri-to-path "1.0.0"
bl@^1.0.0:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c"
- integrity sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7"
+ integrity sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==
dependencies:
readable-stream "^2.3.5"
safe-buffer "^5.1.1"
@@ -2761,9 +3061,9 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
bn.js@^5.1.1:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0"
- integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA==
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b"
+ integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==
body-parser@1.19.0:
version "1.19.0"
@@ -2786,15 +3086,15 @@ boolbase@^1.0.0, boolbase@~1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
-bootstrap-icons@^1.0.0-alpha5:
- version "1.0.0-alpha5"
- resolved "https://registry.yarnpkg.com/bootstrap-icons/-/bootstrap-icons-1.0.0-alpha5.tgz#24aec53f4097e23a7e05c964a55033ed12dab23c"
- integrity sha512-sQp4UESHOpN7UlkEUJmY4G8gmU4beTCv24azmOtN1vMSWTOuUZttB0269RD93JIjd4KmWb93MJaXjC6cAV5jiQ==
+bootstrap-icons@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/bootstrap-icons/-/bootstrap-icons-1.0.0.tgz#90ed08c9503cef95184972420fbea7b09780bd83"
+ integrity sha512-PaQm3VtSqbUnWuyqGmFJG5iF9UMieDuk8raPOmKOtKeyWyiVshgLoKa+9EWGolGU/nvyBLEBWhZoQqhu9ccNBg==
-"bootstrap@>=4.5.0 <5.0.0":
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.0.tgz#97d9dbcb5a8972f8722c9962483543b907d9b9ec"
- integrity sha512-Z93QoXvodoVslA+PWNdk23Hze4RBYIkpb5h8I2HY2Tu2h7A0LpAgLcyrhrSUyo2/Oxm2l1fRZPs1e5hnxnliXA==
+"bootstrap@>=4.5.2 <5.0.0":
+ version "4.5.2"
+ resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.2.tgz#a85c4eda59155f0d71186b6e6ad9b875813779ab"
+ integrity sha512-vlGn0bcySYl/iV+BGA544JkkZP5LB3jsmkeKLFQakCOwCM3AOk7VkldBz4jrzSe+Z0Ezn99NVXa1o45cQY4R6A==
boxen@^1.2.1:
version "1.3.0"
@@ -2904,15 +3204,15 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
randombytes "^2.0.1"
browserify-sign@^4.0.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11"
- integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA==
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
+ integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
dependencies:
bn.js "^5.1.1"
browserify-rsa "^4.0.1"
create-hash "^1.2.0"
create-hmac "^1.1.7"
- elliptic "^6.5.2"
+ elliptic "^6.5.3"
inherits "^2.0.4"
parse-asn1 "^5.1.5"
readable-stream "^3.6.0"
@@ -2926,14 +3226,14 @@ browserify-zlib@^0.2.0:
pako "~1.0.5"
browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.6.4, browserslist@^4.8.5:
- version "4.13.0"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d"
- integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ==
+ version "4.14.1"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.1.tgz#cb2b490ba881d45dc3039078c7ed04411eaf3fa3"
+ integrity sha512-zyBTIHydW37pnb63c7fHFXUG6EcqWOqoMdDx6cdyaDFriZ20EoVxcE95S54N+heRqY8m8IUgB5zYta/gCwSaaA==
dependencies:
- caniuse-lite "^1.0.30001093"
- electron-to-chromium "^1.3.488"
- escalade "^3.0.1"
- node-releases "^1.1.58"
+ caniuse-lite "^1.0.30001124"
+ electron-to-chromium "^1.3.562"
+ escalade "^3.0.2"
+ node-releases "^1.1.60"
bser@2.1.1:
version "2.1.1"
@@ -3007,10 +3307,10 @@ builtins@^1.0.3:
resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og=
-bundlewatch@^0.2.7:
- version "0.2.7"
- resolved "https://registry.yarnpkg.com/bundlewatch/-/bundlewatch-0.2.7.tgz#978b63c0dafbbef0e3c4a4a26e471fcda6dd5791"
- integrity sha512-tTf6TZHowf2kqHMv9nk7ORDdyU8d4OCF5qjkm8jeZfY9hsOdoyvDq3xtPSw+I8eQJJhkdUvcIMp4Cd3GkUAsrA==
+bundlewatch@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/bundlewatch/-/bundlewatch-0.3.0.tgz#9097674349c8d9d4c7c76da4bda16668d19b3d6d"
+ integrity sha512-+WtpJk6zVXSP91nRDsBz3pMHR3N8s0TMtPH9vHhcFwI+NfeozGpDJYOXsScHYTLiodfzuZhHfJobN+uDg3Fn1Q==
dependencies:
axios "^0.19.0"
bytes "^3.0.0"
@@ -3239,15 +3539,15 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001097:
- version "1.0.30001100"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001100.tgz#2a58615e0c01cf716ab349b20ca4d86ef944aa4e"
- integrity sha512-0eYdp1+wFCnMlCj2oudciuQn2B9xAFq3WpgpcBIZTxk/1HNA/O2YA7rpeYhnOqsqAJq1AHUgx6i1jtafg7m2zA==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001124:
+ version "1.0.30001124"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001124.tgz#5d9998190258e11630d674fc50ea8e579ae0ced2"
+ integrity sha512-zQW8V3CdND7GHRH6rxm6s59Ww4g/qGWTheoboW9nfeMg7sUoopIfKCcNZUjwYRCOrvereh3kwDpZj4VLQ7zGtA==
-caniuse-lite@^1.0.30001107:
- version "1.0.30001107"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001107.tgz#809360df7a5b3458f627aa46b0f6ed6d5239da9a"
- integrity sha512-86rCH+G8onCmdN4VZzJet5uPELII59cUzDphko3thQFgAQG1RNa+sVLDoALIhRYmflo5iSIzWY3vu1XTWtNMQQ==
+caniuse-lite@^1.0.30001125:
+ version "1.0.30001125"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001125.tgz#2a1a51ee045a0a2207474b086f628c34725e997b"
+ integrity sha512-9f+r7BW8Qli917mU3j0fUaTweT3f3vnX/Lcs+1C73V+RADmFme+Ih0Br8vONQi3X0lseOe6ZHfsZLCA8MSjxUA==
capital-case@^1.0.3:
version "1.0.3"
@@ -3383,10 +3683,10 @@ chokidar@^2.1.8:
optionalDependencies:
fsevents "^1.2.7"
-chokidar@^3.3.0, chokidar@^3.4.0, chokidar@^3.4.1:
- version "3.4.1"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.1.tgz#e905bdecf10eaa0a0b1db0c664481cc4cbc22ba1"
- integrity sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g==
+chokidar@^3.3.0, chokidar@^3.4.1, chokidar@^3.4.2:
+ version "3.4.2"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d"
+ integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==
dependencies:
anymatch "~3.1.1"
braces "~3.0.2"
@@ -3470,9 +3770,9 @@ cli-boxes@^1.0.0:
integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM=
cli-boxes@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d"
- integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
+ integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
cli-cursor@^2.1.0:
version "2.1.0"
@@ -3493,7 +3793,7 @@ cli-spinners@^1.0.1:
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a"
integrity sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==
-cli-truncate@2.1.0, cli-truncate@^2.1.0:
+cli-truncate@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
@@ -3562,34 +3862,34 @@ code-point-at@^1.0.0:
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
-codemirror@^5.56.0:
- version "5.56.0"
- resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.56.0.tgz#675640fcc780105cd22d3faa738b5d7ea6426f61"
- integrity sha512-MfKVmYgifXjQpLSgpETuih7A7WTTIsxvKfSLGseTY5+qt0E1UD1wblZGM6WLenORo8sgmf+3X+WTe2WF7mufyw==
+codemirror@^5.57.0:
+ version "5.57.0"
+ resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.57.0.tgz#d26365b72f909f5d2dbb6b1209349ca1daeb2d50"
+ integrity sha512-WGc6UL7Hqt+8a6ZAsj/f1ApQl3NPvHY/UQSzG6fB6l4BjExgVdhFaxd7mRTw1UCiYe/6q86zHP+kfvBQcZGvUg==
-codesandbox-import-util-types@^2.1.15:
- version "2.1.15"
- resolved "https://registry.yarnpkg.com/codesandbox-import-util-types/-/codesandbox-import-util-types-2.1.15.tgz#c38b7aeedff7f2b2b285d02f828ba32f72bb9634"
- integrity sha512-TNyIWbo2G+ytlQGgIy/LOECizWBwlUAkFPPI7GgGxhbSmz0ML00rEvxSVO5KsInzn/Nh4zDwY9G+cPn2TRR9hQ==
+codesandbox-import-util-types@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/codesandbox-import-util-types/-/codesandbox-import-util-types-2.2.0.tgz#f94799f83838a1e8ba776189a8275870d6579ab6"
+ integrity sha512-EFXFKCSE7I2VABNa11cgkFJAY8MQCMDhD147xntXw4O/wg5DkGmvor9s0bpk4IYlTOVwZT86H0My1xRhkIzHOA==
-codesandbox-import-utils@^2.1.16:
- version "2.1.16"
- resolved "https://registry.yarnpkg.com/codesandbox-import-utils/-/codesandbox-import-utils-2.1.16.tgz#0949327c4a45fb251c76972b72da7e73a9b3b9a5"
- integrity sha512-5m3QVL27FPup6w0Mt3vFqphR0PoGK5dI99Bb+53onfwdlMLONKL4qXR2sOb+2G/IwPz7I/NjwznnPyNGmo+k1g==
+codesandbox-import-utils@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/codesandbox-import-utils/-/codesandbox-import-utils-2.2.0.tgz#281b4449746b411cca8934b93fd1817cb4a3e898"
+ integrity sha512-d2sQnwbsegkjmx6x2Q7RBiLPtSDBKQHSQgekU6h8AimtaNO9d/nc/jWWR/kMnB+T6NorUxCpmoLtHWDqBihFRw==
dependencies:
- codesandbox-import-util-types "^2.1.15"
+ codesandbox-import-util-types "^2.2.0"
istextorbinary "^2.2.1"
lz-string "^1.4.4"
-codesandbox@^2.1.16:
- version "2.1.16"
- resolved "https://registry.yarnpkg.com/codesandbox/-/codesandbox-2.1.16.tgz#0a6fedb7c71249e117daf4807885ffbc085941ce"
- integrity sha512-oz0qUCLxbcuWP7q0+ypRsxMB7dd48D15y8N1QHeVVCHZ3qaIrNK2j0vbUdG2yzl0WzmFYXw7mY3yduVElBchHg==
+codesandbox@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/codesandbox/-/codesandbox-2.2.0.tgz#de9b993a7c32f19adac0d73c39e4a27b18ded1e1"
+ integrity sha512-+OQgbCvd79sJO5AM6kb+3mMbPo1neBR+Gf+neQZ8bakYSGVQzMmBu7xFYrGmLNkKw3mo69lWshh90T92C7CQCA==
dependencies:
axios "^0.18.1"
chalk "^2.4.1"
- codesandbox-import-util-types "^2.1.15"
- codesandbox-import-utils "^2.1.16"
+ codesandbox-import-util-types "^2.2.0"
+ codesandbox-import-utils "^2.2.0"
commander "^2.9.0"
datauri "^1.1.0"
filesize "^3.6.1"
@@ -3608,7 +3908,7 @@ codesandbox@^2.1.16:
shortid "^2.2.8"
update-notifier "^2.2.0"
-collapse-white-space@^1.0.0, collapse-white-space@^1.0.2:
+collapse-white-space@^1.0.2:
version "1.0.6"
resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287"
integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==
@@ -3666,7 +3966,7 @@ color@^3.0.0:
color-convert "^1.9.1"
color-string "^1.5.2"
-colorette@^1.2.0:
+colorette@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
@@ -3693,23 +3993,28 @@ commander@^4.0.1, commander@^4.1.1:
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
-commander@^5.0.0, commander@^5.1.0:
+commander@^5.0.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae"
integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==
+commander@^6.0.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-6.1.0.tgz#f8d722b78103141006b66f4c7ba1e97315ba75bc"
+ integrity sha512-wl7PNrYWd2y5mp1OK/LhTlv8Ff4kQJQRXXAvF+uU/TPNiVJUxZLRYGj/B0y/lPGAVcSbJqH2Za/cvHmrPMC8mA==
+
commondir@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
-compare-func@^1.3.1:
- version "1.3.4"
- resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.4.tgz#6b07c4c5e8341119baf44578085bda0f4a823516"
- integrity sha512-sq2sWtrqKPkEXAC8tEJA1+BqAH9GbFkGBtUOqrUX57VSfwp8xyktctk+uLoRy5eccTdxzDcVIztlYDpKs3Jv1Q==
+compare-func@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3"
+ integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==
dependencies:
array-ify "^1.0.0"
- dot-prop "^3.0.0"
+ dot-prop "^5.1.0"
compare-versions@^3.6.0:
version "3.6.0"
@@ -3784,11 +4089,11 @@ config-chain@^1.1.12:
proto-list "~1.2.1"
configstore@^3.0.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f"
- integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.5.tgz#e9af331fadc14dabd544d3e7e76dc446a09a530f"
+ integrity sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA==
dependencies:
- dot-prop "^4.1.0"
+ dot-prop "^4.2.1"
graceful-fs "^4.1.2"
make-dir "^1.0.0"
unique-string "^1.0.0"
@@ -3805,10 +4110,10 @@ connect@^3.7.0:
parseurl "~1.3.3"
utils-merge "1.0.1"
-consola@^2.10.0, consola@^2.10.1, consola@^2.13.0, consola@^2.14.0, consola@^2.6.0, consola@^2.9.0:
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/consola/-/consola-2.14.0.tgz#162ee903b6c9c4de25077d93f34ab902ebcb4dac"
- integrity sha512-A2j1x4u8d6SIVikhZROfpFJxQZie+cZOfQMyI/tu2+hWXe8iAv7R6FW6s6x04/7zBCst94lPddztot/d6GJiuQ==
+consola@^2.10.0, consola@^2.10.1, consola@^2.13.0, consola@^2.14.0, consola@^2.15.0, consola@^2.6.0, consola@^2.9.0:
+ version "2.15.0"
+ resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.0.tgz#40fc4eefa4d2f8ef2e2806147f056ea207fcc0e9"
+ integrity sha512-vlcSGgdYS26mPf7qNi+dCisbhiyDnrN1zaRbw3CSuc2wGOMEGGPsp46PdRG5gqXwgtJfjxDkxRNAgRPr1B77vQ==
console-browserify@^1.1.0:
version "1.2.0"
@@ -3858,12 +4163,12 @@ content-type@~1.0.4:
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
-conventional-changelog-angular@^5.0.10:
- version "5.0.10"
- resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.10.tgz#5cf7b00dd315b6a6a558223c80d5ef24ddb34205"
- integrity sha512-k7RPPRs0vp8+BtPsM9uDxRl6KcgqtCJmzRD1wRtgqmhQ96g8ifBGo9O/TZBG23jqlXS/rg8BKRDELxfnQQGiaA==
+conventional-changelog-angular@^5.0.11:
+ version "5.0.11"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.11.tgz#99a3ca16e4a5305e0c2c2fae3ef74fd7631fc3fb"
+ integrity sha512-nSLypht/1yEflhuTogC03i7DX7sOrXGsRn14g131Potqi6cbGbGEE9PSDEHKldabB6N76HiSyw9Ph+kLmC04Qw==
dependencies:
- compare-func "^1.3.1"
+ compare-func "^2.0.0"
q "^1.5.1"
conventional-changelog-atom@^2.0.7:
@@ -3885,28 +4190,28 @@ conventional-changelog-config-spec@2.1.0:
resolved "https://registry.yarnpkg.com/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz#874a635287ef8b581fd8558532bf655d4fb59f2d"
integrity sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==
-conventional-changelog-conventionalcommits@4.3.0, conventional-changelog-conventionalcommits@^4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.3.0.tgz#c4205a659f7ca9d7881f29ee78a4e7d6aeb8b3c2"
- integrity sha512-oYHydvZKU+bS8LnGqTMlNrrd7769EsuEHKy4fh1oMdvvDi7fem8U+nvfresJ1IDB8K00Mn4LpiA/lR+7Gs6rgg==
+conventional-changelog-conventionalcommits@4.4.0, conventional-changelog-conventionalcommits@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.4.0.tgz#8d96687141c9bbd725a89b95c04966d364194cd4"
+ integrity sha512-ybvx76jTh08tpaYrYn/yd0uJNLt5yMrb1BphDe4WBredMlvPisvMghfpnJb6RmRNcqXeuhR6LfGZGewbkRm9yA==
dependencies:
- compare-func "^1.3.1"
+ compare-func "^2.0.0"
lodash "^4.17.15"
q "^1.5.1"
-conventional-changelog-core@^4.1.7:
- version "4.1.7"
- resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.1.7.tgz#6b5cdadda4430895cc4a75a73dd8b36e322ab346"
- integrity sha512-UBvSrQR2RdKbSQKh7RhueiiY4ZAIOW3+CSWdtKOwRv+KxIMNFKm1rOcGBFx0eA8AKhGkkmmacoTWJTqyz7Q0VA==
+conventional-changelog-core@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.2.0.tgz#d8befd1e1f5126bf35a17668276cc8c244650469"
+ integrity sha512-8+xMvN6JvdDtPbGBqA7oRNyZD4od1h/SIzrWqHcKZjitbVXrFpozEeyn4iI4af1UwdrabQpiZMaV07fPUTGd4w==
dependencies:
add-stream "^1.0.0"
- conventional-changelog-writer "^4.0.16"
+ conventional-changelog-writer "^4.0.17"
conventional-commits-parser "^3.1.0"
dateformat "^3.0.0"
get-pkg-repo "^1.0.0"
git-raw-commits "2.0.0"
git-remote-origin-url "^2.0.0"
- git-semver-tags "^4.0.0"
+ git-semver-tags "^4.1.0"
lodash "^4.17.15"
normalize-package-data "^2.3.5"
q "^1.5.1"
@@ -3943,12 +4248,12 @@ conventional-changelog-jquery@^3.0.10:
dependencies:
q "^1.5.1"
-conventional-changelog-jshint@^2.0.7:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.7.tgz#955a69266951cd31e8afeb3f1c55e0517fdca943"
- integrity sha512-qHA8rmwUnLiIxANJbz650+NVzqDIwNtc0TcpIa0+uekbmKHttidvQ1dGximU3vEDdoJVKFgR3TXFqYuZmYy9ZQ==
+conventional-changelog-jshint@^2.0.8:
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.8.tgz#3fff4df8cb46037f77b9dc3f8e354c7f99332f13"
+ integrity sha512-hB/iI0IiZwnZ+seYI+qEQ4b+EMQSEC8jGIvhO2Vpz1E5p8FgLz75OX8oB1xJWl+s4xBMB6f8zJr0tC/BL7YOjw==
dependencies:
- compare-func "^1.3.1"
+ compare-func "^2.0.0"
q "^1.5.1"
conventional-changelog-preset-loader@^2.3.4:
@@ -3956,12 +4261,12 @@ conventional-changelog-preset-loader@^2.3.4:
resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c"
integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==
-conventional-changelog-writer@^4.0.16:
- version "4.0.16"
- resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.16.tgz#ca10f2691a8ea6d3c2eb74bd35bcf40aa052dda5"
- integrity sha512-jmU1sDJDZpm/dkuFxBeRXvyNcJQeKhGtVcFFkwTphUAzyYWcwz2j36Wcv+Mv2hU3tpvLMkysOPXJTLO55AUrYQ==
+conventional-changelog-writer@^4.0.17:
+ version "4.0.17"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.17.tgz#4753aaa138bf5aa59c0b274cb5937efcd2722e21"
+ integrity sha512-IKQuK3bib/n032KWaSb8YlBFds+aLmzENtnKtxJy3+HqDq5kohu3g/UdNbIHeJWygfnEbZjnCKFxAW0y7ArZAw==
dependencies:
- compare-func "^1.3.1"
+ compare-func "^2.0.0"
conventional-commits-filter "^2.0.6"
dateformat "^3.0.0"
handlebars "^4.7.6"
@@ -3972,21 +4277,21 @@ conventional-changelog-writer@^4.0.16:
split "^1.0.0"
through2 "^3.0.0"
-conventional-changelog@3.1.21:
- version "3.1.21"
- resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-3.1.21.tgz#4a774e6bf503acfd7e4685bb750da8c0eccf1e0d"
- integrity sha512-ZGecVZPEo3aC75VVE4nu85589dDhpMyqfqgUM5Myq6wfKWiNqhDJLSDMsc8qKXshZoY7dqs1hR0H/15kI/G2jQ==
+conventional-changelog@3.1.23:
+ version "3.1.23"
+ resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-3.1.23.tgz#d696408021b579a3814aba79b38729ed86478aea"
+ integrity sha512-sScUu2NHusjRC1dPc5p8/b3kT78OYr95/Bx7Vl8CPB8tF2mG1xei5iylDTRjONV5hTlzt+Cn/tBWrKdd299b7A==
dependencies:
- conventional-changelog-angular "^5.0.10"
+ conventional-changelog-angular "^5.0.11"
conventional-changelog-atom "^2.0.7"
conventional-changelog-codemirror "^2.0.7"
- conventional-changelog-conventionalcommits "^4.3.0"
- conventional-changelog-core "^4.1.7"
+ conventional-changelog-conventionalcommits "^4.4.0"
+ conventional-changelog-core "^4.2.0"
conventional-changelog-ember "^2.0.8"
conventional-changelog-eslint "^3.0.8"
conventional-changelog-express "^2.0.5"
conventional-changelog-jquery "^3.0.10"
- conventional-changelog-jshint "^2.0.7"
+ conventional-changelog-jshint "^2.0.8"
conventional-changelog-preset-loader "^2.3.4"
conventional-commits-filter@^2.0.6:
@@ -4010,17 +4315,17 @@ conventional-commits-parser@^3.1.0:
through2 "^3.0.0"
trim-off-newlines "^1.0.0"
-conventional-recommended-bump@6.0.9:
- version "6.0.9"
- resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-6.0.9.tgz#49ee74f52fbafcc63e89e2297d020279fea318f0"
- integrity sha512-DpRmW1k8CpRrcsXHOPGgHgOd4BMGiq2gtXAveGM8B9pSd9b4r4WKnqp1Fd0vkDtk8l973mIk8KKKUYnKRr9SFw==
+conventional-recommended-bump@6.0.10:
+ version "6.0.10"
+ resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-6.0.10.tgz#ac2fb3e31bad2aeda80086b345bf0c52edd1d1b3"
+ integrity sha512-2ibrqAFMN3ZA369JgVoSbajdD/BHN6zjY7DZFKTHzyzuQejDUCjQ85S5KHxCRxNwsbDJhTPD5hOKcis/jQhRgg==
dependencies:
concat-stream "^2.0.0"
conventional-changelog-preset-loader "^2.3.4"
conventional-commits-filter "^2.0.6"
conventional-commits-parser "^3.1.0"
git-raw-commits "2.0.0"
- git-semver-tags "^4.0.0"
+ git-semver-tags "^4.1.0"
meow "^7.0.0"
q "^1.5.1"
@@ -4096,16 +4401,16 @@ cosmiconfig@^5.0.0:
js-yaml "^3.13.1"
parse-json "^4.0.0"
-cosmiconfig@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
- integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
+cosmiconfig@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
+ integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
dependencies:
"@types/parse-json" "^4.0.0"
- import-fresh "^3.1.0"
+ import-fresh "^3.2.1"
parse-json "^5.0.0"
path-type "^4.0.0"
- yaml "^1.7.2"
+ yaml "^1.10.0"
crc@^3.8.0:
version "3.8.0"
@@ -4115,12 +4420,12 @@ crc@^3.8.0:
buffer "^5.1.0"
create-ecdh@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff"
- integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
+ integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
dependencies:
bn.js "^4.1.0"
- elliptic "^6.0.0"
+ elliptic "^6.5.3"
create-error-class@^3.0.0:
version "3.0.2"
@@ -4652,6 +4957,11 @@ defu@^2.0.4:
resolved "https://registry.yarnpkg.com/defu/-/defu-2.0.4.tgz#09659a6e87a8fd7178be13bd43e9357ebf6d1c46"
integrity sha512-G9pEH1UUMxShy6syWk01VQSRVs3CDWtlxtZu7A+NyqjxaCA4gSlWAKDBx6QiUEKezqS8+DUlXLI14Fp05Hmpwg==
+defu@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/defu/-/defu-3.1.0.tgz#a6b5104cacc06aa1efa01923becddbedd32505e8"
+ integrity sha512-pc7vS4wbYFtsRL+OaLHKD72VcpOz9eYgzZeoLz9pCs+R8htyPdZnD1CxKP9ttZuT90CLPYFTSaTyc3/7v4gG9A==
+
delayed-stream@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
@@ -4695,7 +5005,7 @@ destroy@^1.0.4, destroy@~1.0.4:
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
-detab@^2.0.0:
+detab@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.3.tgz#33e5dd74d230501bd69985a0d2b9a3382699a130"
integrity sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==
@@ -4722,10 +5032,10 @@ diff-sequences@^25.2.6:
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd"
integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==
-diff-sequences@^26.0.0:
- version "26.0.0"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.0.0.tgz#0760059a5c287637b842bd7085311db7060e88a6"
- integrity sha512-JC/eHYEC3aSS0vZGjuoc4vHA0yAQTzhQQldXMeMF+JlxLGJlCO38Gma82NV9gk1jGFz8mDzUMeaKXvjRRdJ2dg==
+diff-sequences@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.3.0.tgz#62a59b1b29ab7fd27cef2a33ae52abe73042d0a2"
+ integrity sha512-5j5vdRcw3CNctePNYN0Wy2e/JbWT6cAYnXv5OuqPhDpyCGc0uLu2TK0zOCJWNB9kOIfYMSpIulRaDgIi4HJ6Ig==
diffie-hellman@^5.0.0:
version "5.0.3"
@@ -4777,7 +5087,7 @@ dom-event-types@^1.0.0:
resolved "https://registry.yarnpkg.com/dom-event-types/-/dom-event-types-1.0.0.tgz#5830a0a29e1bf837fe50a70cd80a597232813cae"
integrity sha512-2G2Vwi2zXTHBGqXHsJ4+ak/iP0N8Ar+G8a7LiD2oup5o4sQWytwqqrZu/O6hIMV0KMID2PL69OhpshLO0n7UJQ==
-dom-serializer@0, dom-serializer@^0.2.1:
+dom-serializer@0:
version "0.2.2"
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
@@ -4785,6 +5095,15 @@ dom-serializer@0, dom-serializer@^0.2.1:
domelementtype "^2.0.1"
entities "^2.0.0"
+dom-serializer@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.0.1.tgz#79695eb49af3cd8abc8d93a73da382deb1ca0795"
+ integrity sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs/xWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw==
+ dependencies:
+ domelementtype "^2.0.1"
+ domhandler "^3.0.0"
+ entities "^2.0.0"
+
domain-browser@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
@@ -4838,11 +5157,11 @@ domutils@^1.5.1, domutils@^1.7.0:
domelementtype "1"
domutils@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16"
- integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg==
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.2.0.tgz#f3ce1610af5c30280bde1b71f84b018b958f32cf"
+ integrity sha512-0haAxVr1PR0SqYwCH7mxMpHZUwjih9oPPedqpR/KufsnxPyZ9dyVw1R5093qnJF3WXSbjBkdzRWLw/knJV/fAg==
dependencies:
- dom-serializer "^0.2.1"
+ dom-serializer "^1.0.1"
domelementtype "^2.0.1"
domhandler "^3.0.0"
@@ -4854,24 +5173,17 @@ dot-case@^3.0.3:
no-case "^3.0.3"
tslib "^1.10.0"
-dot-prop@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
- integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc=
- dependencies:
- is-obj "^1.0.0"
-
-dot-prop@^4.1.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
- integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==
+dot-prop@^4.2.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4"
+ integrity sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==
dependencies:
is-obj "^1.0.0"
-dot-prop@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb"
- integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==
+dot-prop@^5.1.0, dot-prop@^5.2.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
+ integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
dependencies:
is-obj "^2.0.0"
@@ -4894,9 +5206,9 @@ duplexer3@^0.1.4:
integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
duplexer@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
- integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
+ integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
duplexify@^3.4.2, duplexify@^3.6.0:
version "3.7.1"
@@ -4944,12 +5256,12 @@ ejs@^2.6.1:
resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
-electron-to-chromium@^1.3.488:
- version "1.3.498"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.498.tgz#fd7188c8a49d6d0b5df1df55a1f1a4bf2c177457"
- integrity sha512-W1hGwaQEU8j9su2jeAr3aabkPuuXw+j8t73eajGAkEJWbfWiwbxBwQN/8Qmv2qCy3uCDm2rOAaZneYQM8VGC4w==
+electron-to-chromium@^1.3.562:
+ version "1.3.562"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.562.tgz#79c20277ee1c8d0173a22af00e38433b752bc70f"
+ integrity sha512-WhRe6liQ2q/w1MZc8mD8INkenHivuHdrr4r5EQHNomy3NJux+incP6M6lDMd0paShP3MD0WGe5R1TWmEClf+Bg==
-elliptic@^6.0.0, elliptic@^6.5.2:
+elliptic@^6.5.3:
version "6.5.3"
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==
@@ -4962,6 +5274,11 @@ elliptic@^6.0.0, elliptic@^6.5.2:
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.0"
+emittery@^0.7.1:
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.1.tgz#c02375a927a40948c0345cc903072597f5270451"
+ integrity sha512-d34LN4L6h18Bzz9xpoku2nPwKxCPlPMr3EEKTkoEBi+1/+b0lcRkRJ1UVyyZaKNeqGR3swcGl6s390DNO4YVgQ==
+
"emoji-regex@>=6.0.0 <=6.1.1":
version "6.1.1"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.1.tgz#c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e"
@@ -5010,7 +5327,7 @@ enhanced-resolve@^4.1.1, enhanced-resolve@^4.3.0:
memory-fs "^0.5.0"
tapable "^1.0.0"
-enquirer@^2.3.5:
+enquirer@^2.3.5, enquirer@^2.3.6:
version "2.3.6"
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
@@ -5101,7 +5418,7 @@ es6-promisify@^5.0.0:
dependencies:
es6-promise "^4.0.3"
-escalade@^3.0.1:
+escalade@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4"
integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==
@@ -5193,12 +5510,12 @@ eslint-plugin-import@^2.22.0:
resolve "^1.17.0"
tsconfig-paths "^3.9.0"
-eslint-plugin-jest@^23.19.0:
- version "23.19.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.19.0.tgz#da9c45a629bf3180269c7d5033afd7f8b910bde5"
- integrity sha512-l5PLflALqnODl8Yy0H5hDs18aKJS1KTf66VZGXRpIhmbLbPLaTuMB2P+65fBpkdseSpnTVcIlBYvTvJSBi/itg==
+eslint-plugin-jest@^24.0.1:
+ version "24.0.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.0.1.tgz#ad5e091d47cf895e15dc115e18f98471135a334f"
+ integrity sha512-8tYFDqOHGr7vVfdVYspmlV4sRBTylrM4gSLgkGKlO6F+djDOEJ+tEU7I50smUs7AIvFnNZutXUQAMgI9s9N6xQ==
dependencies:
- "@typescript-eslint/experimental-utils" "^2.5.0"
+ "@typescript-eslint/experimental-utils" "^4.0.1"
eslint-plugin-markdown@^1.0.2:
version "1.0.2"
@@ -5275,12 +5592,18 @@ eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
-eslint@^7.5.0:
- version "7.5.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.5.0.tgz#9ecbfad62216d223b82ac9ffea7ef3444671d135"
- integrity sha512-vlUP10xse9sWt9SGRtcr1LAC67BENcQMFeV+w5EvLEoFe3xJ8cF1Skd0msziRx/VMC+72B4DxreCE+OR12OA6Q==
+eslint-visitor-keys@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
+ integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
+
+eslint@^7.9.0:
+ version "7.9.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.9.0.tgz#522aeccc5c3a19017cf0cb46ebfd660a79acf337"
+ integrity sha512-V6QyhX21+uXp4T+3nrNfI3hQNBDa/P8ga7LoQOenwrlEFXrEnUEE+ok1dMtaS3b6rmLXhT1TkTIsG75HMLbknA==
dependencies:
"@babel/code-frame" "^7.0.0"
+ "@eslint/eslintrc" "^0.1.3"
ajv "^6.10.0"
chalk "^4.0.0"
cross-spawn "^7.0.2"
@@ -5290,7 +5613,7 @@ eslint@^7.5.0:
eslint-scope "^5.1.0"
eslint-utils "^2.1.0"
eslint-visitor-keys "^1.3.0"
- espree "^7.2.0"
+ espree "^7.3.0"
esquery "^1.2.0"
esutils "^2.0.2"
file-entry-cache "^5.0.1"
@@ -5331,12 +5654,12 @@ espree@^6.2.1:
acorn-jsx "^5.2.0"
eslint-visitor-keys "^1.1.0"
-espree@^7.2.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/espree/-/espree-7.2.0.tgz#1c263d5b513dbad0ac30c4991b93ac354e948d69"
- integrity sha512-H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g==
+espree@^7.3.0:
+ version "7.3.0"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348"
+ integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
dependencies:
- acorn "^7.3.1"
+ acorn "^7.4.0"
acorn-jsx "^5.2.0"
eslint-visitor-keys "^1.3.0"
@@ -5353,21 +5676,21 @@ esquery@^1.0.1, esquery@^1.2.0:
estraverse "^5.1.0"
esrecurse@^4.1.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
- integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+ integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
dependencies:
- estraverse "^4.1.0"
+ estraverse "^5.2.0"
-estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
+estraverse@^4.1.1, estraverse@^4.2.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
-estraverse@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642"
- integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw==
+estraverse@^5.1.0, estraverse@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
+ integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
estree-walker@^0.6.1:
version "0.6.1"
@@ -5385,14 +5708,14 @@ etag@^1.8.1, etag@~1.8.1:
integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
eventemitter3@^4.0.4:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384"
- integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==
+ version "4.0.7"
+ resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
+ integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
events@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59"
- integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379"
+ integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==
eventsource-polyfill@^0.9.6:
version "0.9.6"
@@ -5454,7 +5777,7 @@ execa@^3.4.0:
signal-exit "^3.0.2"
strip-final-newline "^2.0.0"
-execa@^4.0.0, execa@^4.0.1, execa@^4.0.3:
+execa@^4.0.0, execa@^4.0.3:
version "4.0.3"
resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2"
integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A==
@@ -5494,16 +5817,16 @@ expand-tilde@^1.2.2:
dependencies:
os-homedir "^1.0.1"
-expect@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/expect/-/expect-26.1.0.tgz#8c62e31d0f8d5a8ebb186ee81473d15dd2fbf7c8"
- integrity sha512-QbH4LZXDsno9AACrN9eM0zfnby9G+OsdNgZUohjg/P0mLy1O+/bzTAJGT6VSIjVCe8yKM6SzEl/ckEOFBT7Vnw==
+expect@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-26.4.2.tgz#36db120928a5a2d7d9736643032de32f24e1b2a1"
+ integrity sha512-IlJ3X52Z0lDHm7gjEp+m76uX46ldH5VpqmU0006vqDju/285twh7zaWMRhs67VpQhBwjjMchk+p5aA0VkERCAA==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
ansi-styles "^4.0.0"
- jest-get-type "^26.0.0"
- jest-matcher-utils "^26.1.0"
- jest-message-util "^26.1.0"
+ jest-get-type "^26.3.0"
+ jest-matcher-utils "^26.4.2"
+ jest-message-util "^26.3.0"
jest-regex-util "^26.0.0"
express@^4.16.3:
@@ -5826,11 +6149,9 @@ flat-cache@^2.0.1:
write "1.0.3"
flat@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.0.tgz#dab7d71d60413becb0ac2de9bf4304495e3af6af"
- integrity sha512-6KSMM+cHHzXC/hpldXApL2S8Uz+QZv+tq5o/L0KQYleoG+GcwrnIJhTWC7tCOiKQp8D/fIvryINU1OZCCwevjA==
- dependencies:
- is-buffer "~2.0.4"
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
+ integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
flatted@^2.0.0:
version "2.0.2"
@@ -6090,10 +6411,10 @@ get-stdin@^6.0.0:
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
-get-stdin@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6"
- integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==
+get-stdin@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53"
+ integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==
get-stream@^3.0.0:
version "3.0.0"
@@ -6108,9 +6429,9 @@ get-stream@^4.0.0:
pump "^3.0.0"
get-stream@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9"
- integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
+ integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
dependencies:
pump "^3.0.0"
@@ -6174,26 +6495,26 @@ git-repo-name@^0.6.0:
lazy-cache "^1.0.4"
remote-origin-url "^0.5.1"
-git-semver-tags@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-4.0.0.tgz#a9dd58a0dd3561a4a9898b7e9731cf441c98fc38"
- integrity sha512-LajaAWLYVBff+1NVircURJFL8TQ3EMIcLAfHisWYX/nPoMwnTYfWAznQDmMujlLqoD12VtLmoSrF1sQ5MhimEQ==
+git-semver-tags@^4.0.0, git-semver-tags@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-4.1.0.tgz#0146c9bc24ee96104c99f443071c8c2d7dc848e3"
+ integrity sha512-TcxAGeo03HdErzKzi4fDD+xEL7gi8r2Y5YSxH6N2XYdVSV5UkBwfrt7Gqo1b+uSHCjy/sa9Y6BBBxxFLxfbhTg==
dependencies:
meow "^7.0.0"
semver "^6.0.0"
git-up@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.1.tgz#cb2ef086653640e721d2042fe3104857d89007c0"
- integrity sha512-LFTZZrBlrCrGCG07/dm1aCjjpL1z9L3+5aEeI9SBhAqSc+kiA9Or1bgZhQFNppJX6h/f5McrvJt1mQXTFm6Qrw==
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.2.tgz#10c3d731051b366dc19d3df454bfca3f77913a7c"
+ integrity sha512-kbuvus1dWQB2sSW4cbfTeGpCMd8ge9jx9RKnhXhuJ7tnvT+NIrTVfYZxjtflZddQYcmdOTlkAcjmx7bor+15AQ==
dependencies:
is-ssh "^1.3.0"
parse-url "^5.0.0"
git-url-parse@^11.1.2:
- version "11.1.2"
- resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.1.2.tgz#aff1a897c36cc93699270587bea3dbcbbb95de67"
- integrity sha512-gZeLVGY8QVKMIkckncX+iCq2/L8PlwncvDFKiWkBn9EtCfYDbliRTTp6qzyQ1VMdITUfq7293zDzfpjdiGASSQ==
+ version "11.2.0"
+ resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.2.0.tgz#2955fd51befd6d96ea1389bbe2ef57e8e6042b04"
+ integrity sha512-KPoHZg8v+plarZvto4ruIzzJLFQoRx+sUs5DQSr07By9IBKguVd+e6jwrFR6/TP6xrCJlNV1tPqLO1aREc7O2g==
dependencies:
git-up "^4.0.0"
@@ -6383,11 +6704,11 @@ har-schema@^2.0.0:
integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
har-validator@~5.1.3:
- version "5.1.3"
- resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
- integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
+ version "5.1.5"
+ resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
+ integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
dependencies:
- ajv "^6.5.5"
+ ajv "^6.12.3"
har-schema "^2.0.0"
hard-rejection@^2.1.0:
@@ -6506,7 +6827,7 @@ hash.js@^1.0.0, hash.js@^1.0.3:
inherits "^2.0.3"
minimalistic-assert "^1.0.1"
-hasha@^5.0.0:
+hasha@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/hasha/-/hasha-5.2.0.tgz#33094d1f69c40a4a6ac7be53d5fe3ff95a269e0c"
integrity sha512-2W+jKdQbAdSIrggA8Q35Br8qKadTrqCTC8+XZvBWepKDK6m9XkX6Iz1a2yh2KP01kzAR/dpuMeUnocoLYDcskw==
@@ -6538,9 +6859,9 @@ hast-util-from-parse5@^5.0.0:
xtend "^4.0.1"
hast-util-is-element@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.0.4.tgz#059090a05cc02e275df1ad02caf8cb422fcd2e02"
- integrity sha512-NFR6ljJRvDcyPP5SbV7MyPBgF47X3BsskLnmw1U34yL+X6YC0MoBx9EyMg8Jtx4FzGH95jw8+c1VPLHaRA0wDQ==
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz#3b3ed5159a2707c6137b48637fbfe068e175a425"
+ integrity sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==
hast-util-parse-selector@^2.0.0:
version "2.2.4"
@@ -6605,10 +6926,10 @@ hex-color-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
-highlight.js@^9.18.1:
- version "9.18.1"
- resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c"
- integrity sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg==
+highlight.js@^9.18.2:
+ version "9.18.3"
+ resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.3.tgz#a1a0a2028d5e3149e2380f8a865ee8516703d634"
+ integrity sha512-zBZAmhSupHIl5sITeMqIJnYCDfAEc3Gdkqj65wC1lpI468MMQeeQkhcIAvk+RylAkxrCcI9xy9piHiXeQ1BdzQ==
hmac-drbg@^1.0.0:
version "1.0.1"
@@ -6626,10 +6947,10 @@ homedir-polyfill@^1.0.0:
dependencies:
parse-passwd "^1.0.0"
-hookable@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/hookable/-/hookable-4.1.1.tgz#509eaa679196ccf4760452b9e703cc4eead7264a"
- integrity sha512-MQIdq3xbIIeEZ/N9Y1a3L6EDiHIz/bmb9pXZiZkLoLIbCDaXxQecXxsTRKwnN1/08ypIfvSPy1sECevtsffJqA==
+hookable@^4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/hookable/-/hookable-4.1.2.tgz#c9d91a75066b759fcc4ba985574d76bccf903304"
+ integrity sha512-yY+8B/QJAbeC9r99K04ra0zBkpFaang2ZDrSkpODBqzRCWyu+7qppMWJb7TdwJc+Ubqcn/R/Imxg5WsxDSJOmg==
hoopy@^0.1.4:
version "0.1.4"
@@ -6673,18 +6994,17 @@ html-escaper@^2.0.0:
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
-html-loader@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-1.1.0.tgz#91915f4d274caa9d46d1c3dc847cd82bfc037dbd"
- integrity sha512-zwLbEgy+i7sgIYTlxI9M7jwkn29IvdsV6f1y7a2aLv/w8l1RigVk0PFijBZLLFsdi2gvL8sf2VJhTjLlfnK8sA==
+html-loader@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-1.3.0.tgz#2cbca7794702818b60f55b3b7c73ab642236635a"
+ integrity sha512-c4ROd3YokzLWj6YUfI/NcqAsZI8ULtKfkE/8W862vxd2fMst4SVIQt+RVMNUnNmnz0p4uz7Wqc7PXZOdm5KAXA==
dependencies:
- html-minifier-terser "^5.0.5"
+ html-minifier-terser "^5.1.1"
htmlparser2 "^4.1.0"
loader-utils "^2.0.0"
- parse-srcset "^1.0.2"
- schema-utils "^2.6.5"
+ schema-utils "^2.7.0"
-html-minifier-terser@^5.0.1, html-minifier-terser@^5.0.5:
+html-minifier-terser@^5.0.1, html-minifier-terser@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054"
integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==
@@ -6725,10 +7045,10 @@ html-void-elements@^1.0.0:
resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483"
integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==
-html-webpack-plugin@^4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.3.0.tgz#53bf8f6d696c4637d5b656d3d9863d89ce8174fd"
- integrity sha512-C0fzKN8yQoVLTelcJxZfJCE+aAvQiY2VUf3UuKrR4a9k5UMWYOtpDLsaXwATbcVCnI05hUS7L9ULQHWLZhyi3w==
+html-webpack-plugin@^4.4.1:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.4.1.tgz#61ab85aa1a84ba181443345ebaead51abbb84149"
+ integrity sha512-nEtdEIsIGXdXGG7MjTTZlmhqhpHU9pJFc1OYxcP36c5/ZKP6b0BJMww2QTvJGQYA9aMxUnjDujpZdYcVOXiBCQ==
dependencies:
"@types/html-minifier-terser" "^5.0.0"
"@types/tapable" "^1.0.5"
@@ -6836,15 +7156,15 @@ humps@^2.0.1:
resolved "https://registry.yarnpkg.com/humps/-/humps-2.0.1.tgz#dd02ea6081bd0568dc5d073184463957ba9ef9aa"
integrity sha1-3QLqYIG9BWjcXQcxhEY5V7qe+ao=
-husky@^4.2.5:
- version "4.2.5"
- resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.5.tgz#2b4f7622673a71579f901d9885ed448394b5fa36"
- integrity sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ==
+husky@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/husky/-/husky-4.3.0.tgz#0b2ec1d66424e9219d359e26a51c58ec5278f0de"
+ integrity sha512-tTMeLCLqSBqnflBZnlVDhpaIMucSGaYyX6855jM4AguGeWCeSzNdb1mfyWduTZ3pe3SJVvVWGL0jO1iKZVPfTA==
dependencies:
chalk "^4.0.0"
ci-info "^2.0.0"
compare-versions "^3.6.0"
- cosmiconfig "^6.0.0"
+ cosmiconfig "^7.0.0"
find-versions "^3.2.0"
opencollective-postinstall "^2.0.2"
pkg-dir "^4.2.0"
@@ -6913,7 +7233,7 @@ import-fresh@^2.0.0:
caller-path "^2.0.0"
resolve-from "^3.0.0"
-import-fresh@^3.0.0, import-fresh@^3.1.0:
+import-fresh@^3.0.0, import-fresh@^3.2.1:
version "3.2.1"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
@@ -6941,10 +7261,10 @@ import-local@^3.0.2:
pkg-dir "^4.2.0"
resolve-cwd "^3.0.0"
-improved-yarn-audit@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/improved-yarn-audit/-/improved-yarn-audit-2.2.1.tgz#6d3d5eedc31eb9c808f244931923fff7ca8a4e42"
- integrity sha512-jfyHpHSoyKk4/xm0UULAOO32i0Q9YiHSZodZ0OIS9YMtl+idgZpmpcKrtnuAfG7VNp6KsfUv0c0mV070z8DrVQ==
+improved-yarn-audit@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/improved-yarn-audit/-/improved-yarn-audit-2.3.1.tgz#e937f32e4da250eece077693c612caef05be435b"
+ integrity sha512-jMME3sGF8RosTpQ7CMoel4F8UKJs6bvP2Dc11gkZrKynxBpulQ4bJKgGydnAyHgDavJw6NbssMrbqwVSiuw5Ug==
imurmurhash@^0.1.4:
version "0.1.4"
@@ -7036,9 +7356,9 @@ inquirer@^6.2.2:
through "^2.3.6"
inquirer@^7.3.0:
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.2.tgz#25245d2e32dc9f33dbe26eeaada231daa66e9c7c"
- integrity sha512-DF4osh1FM6l0RJc5YWYhSDB6TawiBRlbV9Cox8MWlidU218Tb7fm3lQTULyUJDfJ0tjbzl0W4q651mrCCEM55w==
+ version "7.3.3"
+ resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003"
+ integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==
dependencies:
ansi-escapes "^4.2.1"
chalk "^4.1.0"
@@ -7046,7 +7366,7 @@ inquirer@^7.3.0:
cli-width "^3.0.0"
external-editor "^3.0.3"
figures "^3.0.0"
- lodash "^4.17.16"
+ lodash "^4.17.19"
mute-stream "0.0.8"
run-async "^2.4.0"
rxjs "^6.6.0"
@@ -7152,7 +7472,7 @@ is-buffer@^1.1.4, is-buffer@^1.1.5:
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
-is-buffer@^2.0.0, is-buffer@^2.0.2, is-buffer@~2.0.4:
+is-buffer@^2.0.0, is-buffer@^2.0.2:
version "2.0.4"
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623"
integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==
@@ -7236,9 +7556,9 @@ is-directory@^0.3.1:
integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
is-docker@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b"
- integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ==
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156"
+ integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
is-extendable@^0.1.0, is-extendable@^0.1.1:
version "0.1.1"
@@ -7407,9 +7727,9 @@ is-reference@^1.1.2:
"@types/estree" "*"
is-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff"
- integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
+ integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
dependencies:
has-symbols "^1.0.1"
@@ -7429,9 +7749,9 @@ is-retry-allowed@^1.0.0:
integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
is-ssh@^1.3.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.1.tgz#f349a8cadd24e65298037a522cf7520f2e81a0f3"
- integrity sha512-0eRIASHZt1E68/ixClI8bp2YK2wmBPVWEismTs6M+M099jKgrzl/3E976zIbImSIob48N2/XGe9y7ZiYdImSlg==
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.2.tgz#a4b82ab63d73976fd8263cceee27f99a88bdae2b"
+ integrity sha512-elEw0/0c2UscLrNG+OAorbP539E3rhliKPg+hDMWN9VwrDXfYK+4PBEykDPfxlYYtQvl84TascnQyobfQLHEhQ==
dependencies:
protocols "^1.1.0"
@@ -7521,7 +7841,7 @@ is-wsl@^1.1.0:
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
-is-wsl@^2.1.1:
+is-wsl@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
@@ -7605,59 +7925,59 @@ istextorbinary@^2.2.1:
editions "^2.2.0"
textextensions "^2.5.0"
-jest-changed-files@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.1.0.tgz#de66b0f30453bca2aff98e9400f75905da495305"
- integrity sha512-HS5MIJp3B8t0NRKGMCZkcDUZo36mVRvrDETl81aqljT1S9tqiHRSpyoOvWg9ZilzZG9TDisDNaN1IXm54fLRZw==
+jest-changed-files@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.3.0.tgz#68fb2a7eb125f50839dab1f5a17db3607fe195b1"
+ integrity sha512-1C4R4nijgPltX6fugKxM4oQ18zimS7LqQ+zTTY8lMCMFPrxqBFb7KJH0Z2fRQJvw2Slbaipsqq7s1mgX5Iot+g==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
execa "^4.0.0"
throat "^5.0.0"
-jest-cli@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.1.0.tgz#eb9ec8a18cf3b6aa556d9deaa9e24be12b43ad87"
- integrity sha512-Imumvjgi3rU7stq6SJ1JUEMaV5aAgJYXIs0jPqdUnF47N/Tk83EXfmtvNKQ+SnFVI6t6mDOvfM3aA9Sg6kQPSw==
+jest-cli@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.4.2.tgz#24afc6e4dfc25cde4c7ec4226fb7db5f157c21da"
+ integrity sha512-zb+lGd/SfrPvoRSC/0LWdaWCnscXc1mGYW//NP4/tmBvRPT3VntZ2jtKUONsRi59zc5JqmsSajA9ewJKFYp8Cw==
dependencies:
- "@jest/core" "^26.1.0"
- "@jest/test-result" "^26.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/core" "^26.4.2"
+ "@jest/test-result" "^26.3.0"
+ "@jest/types" "^26.3.0"
chalk "^4.0.0"
exit "^0.1.2"
graceful-fs "^4.2.4"
import-local "^3.0.2"
is-ci "^2.0.0"
- jest-config "^26.1.0"
- jest-util "^26.1.0"
- jest-validate "^26.1.0"
+ jest-config "^26.4.2"
+ jest-util "^26.3.0"
+ jest-validate "^26.4.2"
prompts "^2.0.1"
yargs "^15.3.1"
-jest-config@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.1.0.tgz#9074f7539acc185e0113ad6d22ed589c16a37a73"
- integrity sha512-ONTGeoMbAwGCdq4WuKkMcdMoyfs5CLzHEkzFOlVvcDXufZSaIWh/OXMLa2fwKXiOaFcqEw8qFr4VOKJQfn4CVw==
+jest-config@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.4.2.tgz#da0cbb7dc2c131ffe831f0f7f2a36256e6086558"
+ integrity sha512-QBf7YGLuToiM8PmTnJEdRxyYy3mHWLh24LJZKVdXZ2PNdizSe1B/E8bVm+HYcjbEzGuVXDv/di+EzdO/6Gq80A==
dependencies:
"@babel/core" "^7.1.0"
- "@jest/test-sequencer" "^26.1.0"
- "@jest/types" "^26.1.0"
- babel-jest "^26.1.0"
+ "@jest/test-sequencer" "^26.4.2"
+ "@jest/types" "^26.3.0"
+ babel-jest "^26.3.0"
chalk "^4.0.0"
deepmerge "^4.2.2"
glob "^7.1.1"
graceful-fs "^4.2.4"
- jest-environment-jsdom "^26.1.0"
- jest-environment-node "^26.1.0"
- jest-get-type "^26.0.0"
- jest-jasmine2 "^26.1.0"
+ jest-environment-jsdom "^26.3.0"
+ jest-environment-node "^26.3.0"
+ jest-get-type "^26.3.0"
+ jest-jasmine2 "^26.4.2"
jest-regex-util "^26.0.0"
- jest-resolve "^26.1.0"
- jest-util "^26.1.0"
- jest-validate "^26.1.0"
+ jest-resolve "^26.4.0"
+ jest-util "^26.3.0"
+ jest-validate "^26.4.2"
micromatch "^4.0.2"
- pretty-format "^26.1.0"
+ pretty-format "^26.4.2"
-jest-diff@^25.1.0, jest-diff@^25.2.1, jest-diff@^25.5.0:
+jest-diff@^25.2.1:
version "25.5.0"
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9"
integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==
@@ -7667,15 +7987,15 @@ jest-diff@^25.1.0, jest-diff@^25.2.1, jest-diff@^25.5.0:
jest-get-type "^25.2.6"
pretty-format "^25.5.0"
-jest-diff@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.1.0.tgz#00a549bdc936c9691eb4dc25d1fbd78bf456abb2"
- integrity sha512-GZpIcom339y0OXznsEKjtkfKxNdg7bVbEofK8Q6MnevTIiR1jNhDWKhRX6X0SDXJlwn3dy59nZ1z55fLkAqPWg==
+jest-diff@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.4.2.tgz#a1b7b303bcc534aabdb3bd4a7caf594ac059f5aa"
+ integrity sha512-6T1XQY8U28WH0Z5rGpQ+VqZSZz8EN8rZcBtfvXaOkbwxIEeRre6qnuZQlbY1AJ4MKDxQF8EkrCvK+hL/VkyYLQ==
dependencies:
chalk "^4.0.0"
- diff-sequences "^26.0.0"
- jest-get-type "^26.0.0"
- pretty-format "^26.1.0"
+ diff-sequences "^26.3.0"
+ jest-get-type "^26.3.0"
+ pretty-format "^26.4.2"
jest-docblock@^26.0.0:
version "26.0.0"
@@ -7684,128 +8004,122 @@ jest-docblock@^26.0.0:
dependencies:
detect-newline "^3.0.0"
-jest-each@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.1.0.tgz#e35449875009a22d74d1bda183b306db20f286f7"
- integrity sha512-lYiSo4Igr81q6QRsVQq9LIkJW0hZcKxkIkHzNeTMPENYYDw/W/Raq28iJ0sLlNFYz2qxxeLnc5K2gQoFYlu2bA==
+jest-each@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.4.2.tgz#bb14f7f4304f2bb2e2b81f783f989449b8b6ffae"
+ integrity sha512-p15rt8r8cUcRY0Mvo1fpkOGYm7iI8S6ySxgIdfh3oOIv+gHwrHTy5VWCGOecWUhDsit4Nz8avJWdT07WLpbwDA==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
chalk "^4.0.0"
- jest-get-type "^26.0.0"
- jest-util "^26.1.0"
- pretty-format "^26.1.0"
-
-jest-environment-jsdom@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.1.0.tgz#9dc7313ffe1b59761dad1fedb76e2503e5d37c5b"
- integrity sha512-dWfiJ+spunVAwzXbdVqPH1LbuJW/kDL+FyqgA5YzquisHqTi0g9hquKif9xKm7c1bKBj6wbmJuDkeMCnxZEpUw==
- dependencies:
- "@jest/environment" "^26.1.0"
- "@jest/fake-timers" "^26.1.0"
- "@jest/types" "^26.1.0"
- jest-mock "^26.1.0"
- jest-util "^26.1.0"
+ jest-get-type "^26.3.0"
+ jest-util "^26.3.0"
+ pretty-format "^26.4.2"
+
+jest-environment-jsdom@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.3.0.tgz#3b749ba0f3a78e92ba2c9ce519e16e5dd515220c"
+ integrity sha512-zra8He2btIMJkAzvLaiZ9QwEPGEetbxqmjEBQwhH3CA+Hhhu0jSiEJxnJMbX28TGUvPLxBt/zyaTLrOPF4yMJA==
+ dependencies:
+ "@jest/environment" "^26.3.0"
+ "@jest/fake-timers" "^26.3.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
+ jest-mock "^26.3.0"
+ jest-util "^26.3.0"
jsdom "^16.2.2"
-jest-environment-node@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.1.0.tgz#8bb387b3eefb132eab7826f9a808e4e05618960b"
- integrity sha512-DNm5x1aQH0iRAe9UYAkZenuzuJ69VKzDCAYISFHQ5i9e+2Tbeu2ONGY7YStubCLH8a1wdKBgqScYw85+ySxqxg==
+jest-environment-node@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.3.0.tgz#56c6cfb506d1597f94ee8d717072bda7228df849"
+ integrity sha512-c9BvYoo+FGcMj5FunbBgtBnbR5qk3uky8PKyRVpSfe2/8+LrNQMiXX53z6q2kY+j15SkjQCOSL/6LHnCPLVHNw==
dependencies:
- "@jest/environment" "^26.1.0"
- "@jest/fake-timers" "^26.1.0"
- "@jest/types" "^26.1.0"
- jest-mock "^26.1.0"
- jest-util "^26.1.0"
+ "@jest/environment" "^26.3.0"
+ "@jest/fake-timers" "^26.3.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
+ jest-mock "^26.3.0"
+ jest-util "^26.3.0"
jest-get-type@^25.2.6:
version "25.2.6"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877"
integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==
-jest-get-type@^26.0.0:
- version "26.0.0"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.0.0.tgz#381e986a718998dbfafcd5ec05934be538db4039"
- integrity sha512-zRc1OAPnnws1EVfykXOj19zo2EMw5Hi6HLbFCSjpuJiXtOWAYIjNsHVSbpQ8bDX7L5BGYGI8m+HmKdjHYFF0kg==
+jest-get-type@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
+ integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
-jest-haste-map@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.1.0.tgz#ef31209be73f09b0d9445e7d213e1b53d0d1476a"
- integrity sha512-WeBS54xCIz9twzkEdm6+vJBXgRBQfdbbXD0dk8lJh7gLihopABlJmIQFdWSDDtuDe4PRiObsjZSUjbJ1uhWEpA==
+jest-haste-map@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.3.0.tgz#c51a3b40100d53ab777bfdad382d2e7a00e5c726"
+ integrity sha512-DHWBpTJgJhLLGwE5Z1ZaqLTYqeODQIZpby0zMBsCU9iRFHYyhklYqP4EiG73j5dkbaAdSZhgB938mL51Q5LeZA==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
"@types/graceful-fs" "^4.1.2"
+ "@types/node" "*"
anymatch "^3.0.3"
fb-watchman "^2.0.0"
graceful-fs "^4.2.4"
- jest-serializer "^26.1.0"
- jest-util "^26.1.0"
- jest-worker "^26.1.0"
+ jest-regex-util "^26.0.0"
+ jest-serializer "^26.3.0"
+ jest-util "^26.3.0"
+ jest-worker "^26.3.0"
micromatch "^4.0.2"
sane "^4.0.3"
walker "^1.0.7"
- which "^2.0.2"
optionalDependencies:
fsevents "^2.1.2"
-jest-jasmine2@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.1.0.tgz#4dfe349b2b2d3c6b3a27c024fd4cb57ac0ed4b6f"
- integrity sha512-1IPtoDKOAG+MeBrKvvuxxGPJb35MTTRSDglNdWWCndCB3TIVzbLThRBkwH9P081vXLgiJHZY8Bz3yzFS803xqQ==
+jest-jasmine2@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.4.2.tgz#18a9d5bec30904267ac5e9797570932aec1e2257"
+ integrity sha512-z7H4EpCldHN1J8fNgsja58QftxBSL+JcwZmaXIvV9WKIM+x49F4GLHu/+BQh2kzRKHAgaN/E82od+8rTOBPyPA==
dependencies:
"@babel/traverse" "^7.1.0"
- "@jest/environment" "^26.1.0"
- "@jest/source-map" "^26.1.0"
- "@jest/test-result" "^26.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/environment" "^26.3.0"
+ "@jest/source-map" "^26.3.0"
+ "@jest/test-result" "^26.3.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
chalk "^4.0.0"
co "^4.6.0"
- expect "^26.1.0"
+ expect "^26.4.2"
is-generator-fn "^2.0.0"
- jest-each "^26.1.0"
- jest-matcher-utils "^26.1.0"
- jest-message-util "^26.1.0"
- jest-runtime "^26.1.0"
- jest-snapshot "^26.1.0"
- jest-util "^26.1.0"
- pretty-format "^26.1.0"
+ jest-each "^26.4.2"
+ jest-matcher-utils "^26.4.2"
+ jest-message-util "^26.3.0"
+ jest-runtime "^26.4.2"
+ jest-snapshot "^26.4.2"
+ jest-util "^26.3.0"
+ pretty-format "^26.4.2"
throat "^5.0.0"
-jest-leak-detector@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.1.0.tgz#039c3a07ebcd8adfa984b6ac015752c35792e0a6"
- integrity sha512-dsMnKF+4BVOZwvQDlgn3MG+Ns4JuLv8jNvXH56bgqrrboyCbI1rQg6EI5rs+8IYagVcfVP2yZFKfWNZy0rK0Hw==
+jest-leak-detector@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.4.2.tgz#c73e2fa8757bf905f6f66fb9e0070b70fa0f573f"
+ integrity sha512-akzGcxwxtE+9ZJZRW+M2o+nTNnmQZxrHJxX/HjgDaU5+PLmY1qnQPnMjgADPGCRPhB+Yawe1iij0REe+k/aHoA==
dependencies:
- jest-get-type "^26.0.0"
- pretty-format "^26.1.0"
+ jest-get-type "^26.3.0"
+ pretty-format "^26.4.2"
-jest-matcher-utils@^25.1.0:
- version "25.5.0"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz#fbc98a12d730e5d2453d7f1ed4a4d948e34b7867"
- integrity sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==
- dependencies:
- chalk "^3.0.0"
- jest-diff "^25.5.0"
- jest-get-type "^25.2.6"
- pretty-format "^25.5.0"
-
-jest-matcher-utils@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.1.0.tgz#cf75a41bd413dda784f022de5a65a2a5c73a5c92"
- integrity sha512-PW9JtItbYvES/xLn5mYxjMd+Rk+/kIt88EfH3N7w9KeOrHWaHrdYPnVHndGbsFGRJ2d5gKtwggCvkqbFDoouQA==
+jest-matcher-utils@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.4.2.tgz#fa81f3693f7cb67e5fc1537317525ef3b85f4b06"
+ integrity sha512-KcbNqWfWUG24R7tu9WcAOKKdiXiXCbMvQYT6iodZ9k1f7065k0keUOW6XpJMMvah+hTfqkhJhRXmA3r3zMAg0Q==
dependencies:
chalk "^4.0.0"
- jest-diff "^26.1.0"
- jest-get-type "^26.0.0"
- pretty-format "^26.1.0"
+ jest-diff "^26.4.2"
+ jest-get-type "^26.3.0"
+ pretty-format "^26.4.2"
-jest-message-util@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.1.0.tgz#52573fbb8f5cea443c4d1747804d7a238a3e233c"
- integrity sha512-dY0+UlldiAJwNDJ08SF0HdF32g9PkbF2NRK/+2iMPU40O6q+iSn1lgog/u0UH8ksWoPv0+gNq8cjhYO2MFtT0g==
+jest-message-util@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.3.0.tgz#3bdb538af27bb417f2d4d16557606fd082d5841a"
+ integrity sha512-xIavRYqr4/otGOiLxLZGj3ieMmjcNE73Ui+LdSW/Y790j5acqCsAdDiLIbzHCZMpN07JOENRWX5DcU+OQ+TjTA==
dependencies:
"@babel/code-frame" "^7.0.0"
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
"@types/stack-utils" "^1.0.1"
chalk "^4.0.0"
graceful-fs "^4.2.4"
@@ -7813,14 +8127,15 @@ jest-message-util@^26.1.0:
slash "^3.0.0"
stack-utils "^2.0.2"
-jest-mock@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.1.0.tgz#80d8286da1f05a345fbad1bfd6fa49a899465d3d"
- integrity sha512-1Rm8EIJ3ZFA8yCIie92UbxZWj9SuVmUGcyhLHyAhY6WI3NIct38nVcfOPWhJteqSn8V8e3xOMha9Ojfazfpovw==
+jest-mock@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.3.0.tgz#ee62207c3c5ebe5f35b760e1267fee19a1cfdeba"
+ integrity sha512-PeaRrg8Dc6mnS35gOo/CbZovoDPKAeB1FICZiuagAgGvbWdNNyjQjkOaGUa/3N3JtpQ/Mh9P4A2D4Fv51NnP8Q==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
-jest-pnp-resolver@^1.2.1:
+jest-pnp-resolver@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
@@ -7830,147 +8145,151 @@ jest-regex-util@^26.0.0:
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28"
integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
-jest-resolve-dependencies@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.1.0.tgz#1ce36472f864a5dadf7dc82fa158e1c77955691b"
- integrity sha512-fQVEPHHQ1JjHRDxzlLU/buuQ9om+hqW6Vo928aa4b4yvq4ZHBtRSDsLdKQLuCqn5CkTVpYZ7ARh2fbA8WkRE6g==
+jest-resolve-dependencies@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.4.2.tgz#739bdb027c14befb2fe5aabbd03f7bab355f1dc5"
+ integrity sha512-ADHaOwqEcVc71uTfySzSowA/RdxUpCxhxa2FNLiin9vWLB1uLPad3we+JSSROq5+SrL9iYPdZZF8bdKM7XABTQ==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
jest-regex-util "^26.0.0"
- jest-snapshot "^26.1.0"
+ jest-snapshot "^26.4.2"
-jest-resolve@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.1.0.tgz#a530eaa302b1f6fa0479079d1561dd69abc00e68"
- integrity sha512-KsY1JV9FeVgEmwIISbZZN83RNGJ1CC+XUCikf/ZWJBX/tO4a4NvA21YixokhdR9UnmPKKAC4LafVixJBrwlmfg==
+jest-resolve@^26.4.0:
+ version "26.4.0"
+ resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.4.0.tgz#6dc0af7fb93e65b73fec0368ca2b76f3eb59a6d7"
+ integrity sha512-bn/JoZTEXRSlEx3+SfgZcJAVuTMOksYq9xe9O6s4Ekg84aKBObEaVXKOEilULRqviSLAYJldnoWV9c07kwtiCg==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
chalk "^4.0.0"
graceful-fs "^4.2.4"
- jest-pnp-resolver "^1.2.1"
- jest-util "^26.1.0"
+ jest-pnp-resolver "^1.2.2"
+ jest-util "^26.3.0"
read-pkg-up "^7.0.1"
resolve "^1.17.0"
slash "^3.0.0"
-jest-runner@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.1.0.tgz#457f7fc522afe46ca6db1dccf19f87f500b3288d"
- integrity sha512-elvP7y0fVDREnfqit0zAxiXkDRSw6dgCkzPCf1XvIMnSDZ8yogmSKJf192dpOgnUVykmQXwYYJnCx641uLTgcw==
+jest-runner@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.4.2.tgz#c3ec5482c8edd31973bd3935df5a449a45b5b853"
+ integrity sha512-FgjDHeVknDjw1gRAYaoUoShe1K3XUuFMkIaXbdhEys+1O4bEJS8Avmn4lBwoMfL8O5oFTdWYKcf3tEJyyYyk8g==
dependencies:
- "@jest/console" "^26.1.0"
- "@jest/environment" "^26.1.0"
- "@jest/test-result" "^26.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/console" "^26.3.0"
+ "@jest/environment" "^26.3.0"
+ "@jest/test-result" "^26.3.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
chalk "^4.0.0"
+ emittery "^0.7.1"
exit "^0.1.2"
graceful-fs "^4.2.4"
- jest-config "^26.1.0"
+ jest-config "^26.4.2"
jest-docblock "^26.0.0"
- jest-haste-map "^26.1.0"
- jest-jasmine2 "^26.1.0"
- jest-leak-detector "^26.1.0"
- jest-message-util "^26.1.0"
- jest-resolve "^26.1.0"
- jest-runtime "^26.1.0"
- jest-util "^26.1.0"
- jest-worker "^26.1.0"
+ jest-haste-map "^26.3.0"
+ jest-leak-detector "^26.4.2"
+ jest-message-util "^26.3.0"
+ jest-resolve "^26.4.0"
+ jest-runtime "^26.4.2"
+ jest-util "^26.3.0"
+ jest-worker "^26.3.0"
source-map-support "^0.5.6"
throat "^5.0.0"
-jest-runtime@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.1.0.tgz#45a37af42115f123ed5c51f126c05502da2469cb"
- integrity sha512-1qiYN+EZLmG1QV2wdEBRf+Ci8i3VSfIYLF02U18PiUDrMbhfpN/EAMMkJtT02jgJUoaEOpHAIXG6zS3QRMzRmA==
- dependencies:
- "@jest/console" "^26.1.0"
- "@jest/environment" "^26.1.0"
- "@jest/fake-timers" "^26.1.0"
- "@jest/globals" "^26.1.0"
- "@jest/source-map" "^26.1.0"
- "@jest/test-result" "^26.1.0"
- "@jest/transform" "^26.1.0"
- "@jest/types" "^26.1.0"
+jest-runtime@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.4.2.tgz#94ce17890353c92e4206580c73a8f0c024c33c42"
+ integrity sha512-4Pe7Uk5a80FnbHwSOk7ojNCJvz3Ks2CNQWT5Z7MJo4tX0jb3V/LThKvD9tKPNVNyeMH98J/nzGlcwc00R2dSHQ==
+ dependencies:
+ "@jest/console" "^26.3.0"
+ "@jest/environment" "^26.3.0"
+ "@jest/fake-timers" "^26.3.0"
+ "@jest/globals" "^26.4.2"
+ "@jest/source-map" "^26.3.0"
+ "@jest/test-result" "^26.3.0"
+ "@jest/transform" "^26.3.0"
+ "@jest/types" "^26.3.0"
"@types/yargs" "^15.0.0"
chalk "^4.0.0"
collect-v8-coverage "^1.0.0"
exit "^0.1.2"
glob "^7.1.3"
graceful-fs "^4.2.4"
- jest-config "^26.1.0"
- jest-haste-map "^26.1.0"
- jest-message-util "^26.1.0"
- jest-mock "^26.1.0"
+ jest-config "^26.4.2"
+ jest-haste-map "^26.3.0"
+ jest-message-util "^26.3.0"
+ jest-mock "^26.3.0"
jest-regex-util "^26.0.0"
- jest-resolve "^26.1.0"
- jest-snapshot "^26.1.0"
- jest-util "^26.1.0"
- jest-validate "^26.1.0"
+ jest-resolve "^26.4.0"
+ jest-snapshot "^26.4.2"
+ jest-util "^26.3.0"
+ jest-validate "^26.4.2"
slash "^3.0.0"
strip-bom "^4.0.0"
yargs "^15.3.1"
-jest-serializer@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.1.0.tgz#72a394531fc9b08e173dc7d297440ac610d95022"
- integrity sha512-eqZOQG/0+MHmr25b2Z86g7+Kzd5dG9dhCiUoyUNJPgiqi38DqbDEOlHcNijyfZoj74soGBohKBZuJFS18YTJ5w==
+jest-serializer@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.3.0.tgz#1c9d5e1b74d6e5f7e7f9627080fa205d976c33ef"
+ integrity sha512-IDRBQBLPlKa4flg77fqg0n/pH87tcRKwe8zxOVTWISxGpPHYkRZ1dXKyh04JOja7gppc60+soKVZ791mruVdow==
dependencies:
+ "@types/node" "*"
graceful-fs "^4.2.4"
-jest-snapshot@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.1.0.tgz#c36ed1e0334bd7bd2fe5ad07e93a364ead7e1349"
- integrity sha512-YhSbU7eMTVQO/iRbNs8j0mKRxGp4plo7sJ3GzOQ0IYjvsBiwg0T1o0zGQAYepza7lYHuPTrG5J2yDd0CE2YxSw==
+jest-snapshot@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.4.2.tgz#87d3ac2f2bd87ea8003602fbebd8fcb9e94104f6"
+ integrity sha512-N6Uub8FccKlf5SBFnL2Ri/xofbaA68Cc3MGjP/NuwgnsvWh+9hLIR/DhrxbSiKXMY9vUW5dI6EW1eHaDHqe9sg==
dependencies:
"@babel/types" "^7.0.0"
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
"@types/prettier" "^2.0.0"
chalk "^4.0.0"
- expect "^26.1.0"
+ expect "^26.4.2"
graceful-fs "^4.2.4"
- jest-diff "^26.1.0"
- jest-get-type "^26.0.0"
- jest-haste-map "^26.1.0"
- jest-matcher-utils "^26.1.0"
- jest-message-util "^26.1.0"
- jest-resolve "^26.1.0"
+ jest-diff "^26.4.2"
+ jest-get-type "^26.3.0"
+ jest-haste-map "^26.3.0"
+ jest-matcher-utils "^26.4.2"
+ jest-message-util "^26.3.0"
+ jest-resolve "^26.4.0"
natural-compare "^1.4.0"
- pretty-format "^26.1.0"
+ pretty-format "^26.4.2"
semver "^7.3.2"
-jest-util@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.1.0.tgz#80e85d4ba820decacf41a691c2042d5276e5d8d8"
- integrity sha512-rNMOwFQevljfNGvbzNQAxdmXQ+NawW/J72dmddsK0E8vgxXCMtwQ/EH0BiWEIxh0hhMcTsxwAxINt7Lh46Uzbg==
+jest-util@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.3.0.tgz#a8974b191df30e2bf523ebbfdbaeb8efca535b3e"
+ integrity sha512-4zpn6bwV0+AMFN0IYhH/wnzIQzRaYVrz1A8sYnRnj4UXDXbOVtWmlaZkO9mipFqZ13okIfN87aDoJWB7VH6hcw==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
chalk "^4.0.0"
graceful-fs "^4.2.4"
is-ci "^2.0.0"
micromatch "^4.0.2"
-jest-validate@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.1.0.tgz#942c85ad3d60f78250c488a7f85d8f11a29788e7"
- integrity sha512-WPApOOnXsiwhZtmkDsxnpye+XLb/tUISP+H6cHjfUIXvlG+eKwP+isnivsxlHCPaO9Q5wvbhloIBkdF3qUn+Nw==
+jest-validate@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.4.2.tgz#e871b0dfe97747133014dcf6445ee8018398f39c"
+ integrity sha512-blft+xDX7XXghfhY0mrsBCYhX365n8K5wNDC4XAcNKqqjEzsRUSXP44m6PL0QJEW2crxQFLLztVnJ4j7oPlQrQ==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
camelcase "^6.0.0"
chalk "^4.0.0"
- jest-get-type "^26.0.0"
+ jest-get-type "^26.3.0"
leven "^3.1.0"
- pretty-format "^26.1.0"
+ pretty-format "^26.4.2"
-jest-watcher@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.1.0.tgz#99812a0cd931f0cb3d153180426135ab83e4d8f2"
- integrity sha512-ffEOhJl2EvAIki613oPsSG11usqnGUzIiK7MMX6hE4422aXOcVEG3ySCTDFLn1+LZNXGPE8tuJxhp8OBJ1pgzQ==
+jest-watcher@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.3.0.tgz#f8ef3068ddb8af160ef868400318dc4a898eed08"
+ integrity sha512-XnLdKmyCGJ3VoF6G/p5ohbJ04q/vv5aH9ENI+i6BL0uu9WWB6Z7Z2lhQQk0d2AVZcRGp1yW+/TsoToMhBFPRdQ==
dependencies:
- "@jest/test-result" "^26.1.0"
- "@jest/types" "^26.1.0"
+ "@jest/test-result" "^26.3.0"
+ "@jest/types" "^26.3.0"
+ "@types/node" "*"
ansi-escapes "^4.2.1"
chalk "^4.0.0"
- jest-util "^26.1.0"
+ jest-util "^26.3.0"
string-length "^4.0.1"
jest-worker@^25.4.0:
@@ -7981,27 +8300,28 @@ jest-worker@^25.4.0:
merge-stream "^2.0.0"
supports-color "^7.0.0"
-jest-worker@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.1.0.tgz#65d5641af74e08ccd561c240e7db61284f82f33d"
- integrity sha512-Z9P5pZ6UC+kakMbNJn+tA2RdVdNX5WH1x+5UCBZ9MxIK24pjYtFt96fK+UwBTrjLYm232g1xz0L3eTh51OW+yQ==
+jest-worker@^26.3.0:
+ version "26.3.0"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.3.0.tgz#7c8a97e4f4364b4f05ed8bca8ca0c24de091871f"
+ integrity sha512-Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw==
dependencies:
+ "@types/node" "*"
merge-stream "^2.0.0"
supports-color "^7.0.0"
-jest@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/jest/-/jest-26.1.0.tgz#2f3aa7bcffb9bfd025473f83bbbf46a3af026263"
- integrity sha512-LIti8jppw5BcQvmNJe4w2g1N/3V68HUfAv9zDVm7v+VAtQulGhH0LnmmiVkbNE4M4I43Bj2fXPiBGKt26k9tHw==
+jest@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/jest/-/jest-26.4.2.tgz#7e8bfb348ec33f5459adeaffc1a25d5752d9d312"
+ integrity sha512-LLCjPrUh98Ik8CzW8LLVnSCfLaiY+wbK53U7VxnFSX7Q+kWC4noVeDvGWIFw0Amfq1lq2VfGm7YHWSLBV62MJw==
dependencies:
- "@jest/core" "^26.1.0"
+ "@jest/core" "^26.4.2"
import-local "^3.0.2"
- jest-cli "^26.1.0"
+ jest-cli "^26.4.2"
-jimp-compact@^0.8.0:
- version "0.8.5"
- resolved "https://registry.yarnpkg.com/jimp-compact/-/jimp-compact-0.8.5.tgz#4dd5be1df94111902a58e6e698cbbdea9bdc1e0b"
- integrity sha512-BkpiX6jZyDVLU+CleO/6yF8SFHnyZXiElPryNjZx58AK1vy+bqSFvhKeFS680TISSr8IWqHlIAwDMMA0DTQkMw==
+jimp-compact@^0.12.1:
+ version "0.12.1"
+ resolved "https://registry.yarnpkg.com/jimp-compact/-/jimp-compact-0.12.1.tgz#f35ae542f83659f7f1b2fa4f955a27869dbe15ea"
+ integrity sha512-WEIxAvP4t7ZrGTExPx4pWa28/fxP+meQ90JedM2Jtwg/6IK2gVCS24hB5ggOEXsA3cBWQAaCdFgSB8WkMYykHA==
jiti@^0.1.11:
version "0.1.11"
@@ -8009,20 +8329,20 @@ jiti@^0.1.11:
integrity sha512-zSPegl+ageMLSYcq1uAZa6V56pX2GbNl/eU3Or7PFHu10a2YhLAXj5fnHJGd6cHZTalSR8zXGH8WmyuyufMhLA==
js-base64@^2.1.8:
- version "2.6.3"
- resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.3.tgz#7afdb9b57aa7717e15d370b66e8f36a9cb835dc3"
- integrity sha512-fiUvdfCaAXoQTHdKMgTvg6IkecXDcVz6V5rlftUTclF9IKBjMizvSdQaCl/z/6TApDeby5NL+axYou3i0mu1Pg==
+ version "2.6.4"
+ resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4"
+ integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==
js-beautify@^1.6.12, js-beautify@^1.6.14:
- version "1.11.0"
- resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.11.0.tgz#afb873dc47d58986360093dcb69951e8bcd5ded2"
- integrity sha512-a26B+Cx7USQGSWnz9YxgJNMmML/QG2nqIaL7VVYPCXbqiKz8PN0waSNvroMtvAK6tY7g/wPdNWGEP+JTNIBr6A==
+ version "1.13.0"
+ resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.0.tgz#a056d5d3acfd4918549aae3ab039f9f3c51eebb2"
+ integrity sha512-/Tbp1OVzZjbwzwJQFIlYLm9eWQ+3aYbBXLSaqb1mEJzhcQAfrqMMQYtjb6io+U6KpD0ID4F+Id3/xcjH3l/sqA==
dependencies:
config-chain "^1.1.12"
editorconfig "^0.15.3"
glob "^7.1.3"
- mkdirp "~1.0.3"
- nopt "^4.0.3"
+ mkdirp "^1.0.4"
+ nopt "^5.0.0"
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
@@ -8048,9 +8368,9 @@ jsbn@~0.1.0:
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
jsdom@^16.2.2:
- version "16.3.0"
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.3.0.tgz#75690b7dac36c67be49c336dcd7219bbbed0810c"
- integrity sha512-zggeX5UuEknpdZzv15+MS1dPYG0J/TftiiNunOeNxSl3qr8Z6cIlQpN0IdJa44z9aFxZRIVqRncvEhQ7X5DtZg==
+ version "16.4.0"
+ resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb"
+ integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==
dependencies:
abab "^2.0.3"
acorn "^7.1.1"
@@ -8094,6 +8414,11 @@ json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-bet
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
+json-parse-even-better-errors@^2.3.0:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
+ integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
+
json-schema-traverse@^0.4.1:
version "0.4.1"
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
@@ -8114,13 +8439,6 @@ json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
-json5@2.1.3, json5@^2.1.2:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
- integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
- dependencies:
- minimist "^1.2.5"
-
json5@^0.5.1:
version "0.5.1"
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
@@ -8133,6 +8451,13 @@ json5@^1.0.1:
dependencies:
minimist "^1.2.0"
+json5@^2.1.2:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
+ integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
+ dependencies:
+ minimist "^1.2.5"
+
jsonfile@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66"
@@ -8205,10 +8530,10 @@ kleur@^3.0.3:
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
-klona@^1.1.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/klona/-/klona-1.1.2.tgz#a79e292518a5a5412ec8d097964bff1571a64db0"
- integrity sha512-xf88rTeHiXk+XE2Vhi6yj8Wm3gMZrygGdKjJqN8HkV+PwF/t50/LdAKHoHpPcxFAlmQszTZ1CugrK25S7qDRLA==
+klona@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.3.tgz#98274552c513583ad7a01456a789a2a0b4a2a538"
+ integrity sha512-CgPOT3ZadDpXxKcfV56lEQ9OQSZ42Mk26gnozI+uN/k39vzD8toUhRQoqsX0m9Q3eMPEfsLWmtyUpK/yqST4yg==
last-call-webpack-plugin@^3.0.0:
version "3.0.0"
@@ -8278,20 +8603,20 @@ lines-and-columns@^1.1.6:
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
-lint-staged@^10.2.11:
- version "10.2.11"
- resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.2.11.tgz#713c80877f2dc8b609b05bc59020234e766c9720"
- integrity sha512-LRRrSogzbixYaZItE2APaS4l2eJMjjf5MbclRZpLJtcQJShcvUzKXsNeZgsLIZ0H0+fg2tL4B59fU9wHIHtFIA==
+lint-staged@^10.3.0:
+ version "10.3.0"
+ resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.3.0.tgz#388c3d440590c45c339e7163f669ea69ae90b1e0"
+ integrity sha512-an3VgjHqmJk0TORB/sdQl0CTkRg4E5ybYCXTTCSJ5h9jFwZbcgKIx5oVma5e7wp/uKt17s1QYFmYqT9MGVosGw==
dependencies:
- chalk "^4.0.0"
- cli-truncate "2.1.0"
- commander "^5.1.0"
- cosmiconfig "^6.0.0"
+ chalk "^4.1.0"
+ cli-truncate "^2.1.0"
+ commander "^6.0.0"
+ cosmiconfig "^7.0.0"
debug "^4.1.1"
dedent "^0.7.0"
- enquirer "^2.3.5"
- execa "^4.0.1"
- listr2 "^2.1.0"
+ enquirer "^2.3.6"
+ execa "^4.0.3"
+ listr2 "^2.6.0"
log-symbols "^4.0.0"
micromatch "^4.0.2"
normalize-path "^3.0.0"
@@ -8299,18 +8624,18 @@ lint-staged@^10.2.11:
string-argv "0.3.1"
stringify-object "^3.3.0"
-listr2@^2.1.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.2.0.tgz#cb88631258abc578c7fb64e590fe5742f28e4aac"
- integrity sha512-Q8qbd7rgmEwDo1nSyHaWQeztfGsdL6rb4uh7BA+Q80AZiDET5rVntiU1+13mu2ZTDVaBVbvAD1Db11rnu3l9sg==
+listr2@^2.6.0:
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.6.2.tgz#4912eb01e1e2dd72ec37f3895a56bf2622d6f36a"
+ integrity sha512-6x6pKEMs8DSIpA/tixiYY2m/GcbgMplMVmhQAaLFxEtNSKLeWTGjtmU57xvv6QCm2XcqzyNXL/cTSVf4IChCRA==
dependencies:
- chalk "^4.0.0"
+ chalk "^4.1.0"
cli-truncate "^2.1.0"
figures "^3.2.0"
indent-string "^4.0.0"
log-update "^4.0.0"
p-map "^4.0.0"
- rxjs "^6.5.5"
+ rxjs "^6.6.2"
through "^2.3.8"
load-json-file@^1.0.0:
@@ -8450,10 +8775,10 @@ lodash.uniq@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
-lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.16, lodash@^4.17.19, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@~4.17.10:
- version "4.17.19"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
- integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
+lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@~4.17.10:
+ version "4.17.20"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
+ integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
log-symbols@^2.1.0, log-symbols@^2.2.0:
version "2.2.0"
@@ -8479,6 +8804,11 @@ log-update@^4.0.0:
slice-ansi "^4.0.0"
wrap-ansi "^6.2.0"
+loglevel@^1.6.2:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.0.tgz#728166855a740d59d38db01cf46f042caa041bb0"
+ integrity sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ==
+
loose-envify@^1.0.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
@@ -8644,13 +8974,6 @@ mdast-squeeze-paragraphs@^4.0.0:
dependencies:
unist-util-remove "^2.0.0"
-mdast-util-definitions@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-2.0.1.tgz#2c931d8665a96670639f17f98e32c3afcfee25f3"
- integrity sha512-Co+DQ6oZlUzvUR7JCpP249PcexxygiaKk9axJh+eRzHDZJk2julbIdKB4PXHVxdBuLzvJ1Izb+YDpj2deGMOuA==
- dependencies:
- unist-util-visit "^2.0.0"
-
mdast-util-definitions@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-3.0.1.tgz#06af6c49865fc63d6d7d30125569e2f7ae3d0a86"
@@ -8658,18 +8981,15 @@ mdast-util-definitions@^3.0.0:
dependencies:
unist-util-visit "^2.0.0"
-mdast-util-to-hast@^9.1.0:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-9.1.0.tgz#6ef121dd3cd3b006bf8650b1b9454da0faf79ffe"
- integrity sha512-Akl2Vi9y9cSdr19/Dfu58PVwifPXuFt1IrHe7l+Crme1KvgUT+5z+cHLVcQVGCiNTZZcdqjnuv9vPkGsqWytWA==
+mdast-util-to-hast@^9.1.0, mdast-util-to-hast@^9.1.1:
+ version "9.1.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-9.1.1.tgz#953ff12aed57464b11d7e5549a45913e561909fa"
+ integrity sha512-vpMWKFKM2mnle+YbNgDXxx95vv0CoLU0v/l3F5oFAG5DV7qwkZVWA206LsAdOnEVyf5vQcLnb3cWJywu7mUxsQ==
dependencies:
"@types/mdast" "^3.0.0"
"@types/unist" "^2.0.3"
- collapse-white-space "^1.0.0"
- detab "^2.0.0"
mdast-util-definitions "^3.0.0"
mdurl "^1.0.0"
- trim-lines "^1.0.0"
unist-builder "^2.0.0"
unist-util-generated "^1.0.0"
unist-util-position "^3.0.0"
@@ -8701,9 +9021,9 @@ media-typer@0.3.0:
integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
mem@^6.0.1:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/mem/-/mem-6.1.0.tgz#846eca0bd4708a8f04b9c3f3cd769e194ae63c5c"
- integrity sha512-RlbnLQgRHk5lwqTtpEkBTQ2ll/CG/iB+J4Hy2Wh97PjgZgXgWJWrFF+XXujh3UUVLvR4OOTgZzcWMMwnehlEUg==
+ version "6.1.1"
+ resolved "https://registry.yarnpkg.com/mem/-/mem-6.1.1.tgz#ea110c2ebc079eca3022e6b08c85a795e77f6318"
+ integrity sha512-Ci6bIfq/UgcxPTYa8dQQ5FY3BzKkT894bwXWXxC/zqs0XgMO2cT20CGkOqda7gZNkmK5VP4x89IGZ6K7hfbn3Q==
dependencies:
map-age-cleaner "^0.1.3"
mimic-fn "^3.0.0"
@@ -8756,17 +9076,15 @@ meow@^4.0.0:
trim-newlines "^2.0.0"
meow@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/meow/-/meow-7.0.1.tgz#1ed4a0a50b3844b451369c48362eb0515f04c1dc"
- integrity sha512-tBKIQqVrAHqwit0vfuFPY3LlzJYkEOFyKa3bPgxzNl6q/RtN8KQ+ALYEASYuFayzSAsjlhXj/JZ10rH85Q6TUw==
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/meow/-/meow-7.1.1.tgz#7c01595e3d337fcb0ec4e8eed1666ea95903d306"
+ integrity sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==
dependencies:
"@types/minimist" "^1.2.0"
- arrify "^2.0.1"
- camelcase "^6.0.0"
camelcase-keys "^6.2.2"
decamelize-keys "^1.1.0"
hard-rejection "^2.1.0"
- minimist-options "^4.0.2"
+ minimist-options "4.1.0"
normalize-package-data "^2.5.0"
read-pkg-up "^7.0.1"
redent "^3.0.0"
@@ -8874,9 +9192,9 @@ mimic-fn@^2.1.0:
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
mimic-fn@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.0.0.tgz#76044cfa8818bbf6999c5c9acadf2d3649b14b4b"
- integrity sha512-PiVO95TKvhiwgSwg1IdLYlCTdul38yZxZMIcnDSFIBUm4BNZha2qpQ4GpJ++15bHoKDtrW2D69lMfFwdFYtNZQ==
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.1.0.tgz#65755145bbf3e36954b949c16450427451d5ca74"
+ integrity sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==
min-indent@^1.0.0:
version "1.0.1"
@@ -8900,15 +9218,7 @@ minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2:
dependencies:
brace-expansion "^1.1.7"
-minimist-options@^3.0.1:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
- integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==
- dependencies:
- arrify "^1.0.1"
- is-plain-obj "^1.1.0"
-
-minimist-options@^4.0.2:
+minimist-options@4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
@@ -8917,6 +9227,14 @@ minimist-options@^4.0.2:
is-plain-obj "^1.1.0"
kind-of "^6.0.3"
+minimist-options@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
+ integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==
+ dependencies:
+ arrify "^1.0.1"
+ is-plain-obj "^1.1.0"
+
minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
version "1.2.5"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
@@ -8937,9 +9255,9 @@ minipass-flush@^1.0.5:
minipass "^3.0.0"
minipass-pipeline@^1.2.2:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34"
- integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ==
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
+ integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
dependencies:
minipass "^3.0.0"
@@ -9013,7 +9331,7 @@ mixin-deep@^1.2.0:
dependencies:
minimist "^1.2.5"
-mkdirp@^1.0.4, mkdirp@~1.0.3:
+mkdirp@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
@@ -9076,9 +9394,9 @@ nanoid@^2.1.0:
integrity sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==
nanoid@^3.1.10:
- version "3.1.10"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.10.tgz#69a8a52b77892de0d11cede96bc9762852145bc4"
- integrity sha512-iZFMXKeXWkxzlfmMfM91gw7YhN2sdJtixY+eZh9V6QWJWTOiurhpKhBMgr82pfzgSqglQgqYSCowEYsz8D++6w==
+ version "3.1.12"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.12.tgz#6f7736c62e8d39421601e4a0c77623a97ea69654"
+ integrity sha512-1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A==
nanomatch@^1.2.9:
version "1.2.13"
@@ -9107,7 +9425,7 @@ negotiator@0.6.2:
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
-neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1:
+neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1, neo-async@^2.6.2:
version "2.6.2"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
@@ -9161,10 +9479,10 @@ node-fetch-npm@^2.0.2:
json-parse-better-errors "^1.0.0"
safe-buffer "^5.1.1"
-node-fetch@^2.6.0:
- version "2.6.0"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd"
- integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==
+node-fetch@^2.6.0, node-fetch@^2.6.1:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
+ integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
node-gyp@^3.8.0:
version "3.8.0"
@@ -9230,16 +9548,16 @@ node-modules-regexp@^1.0.0:
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
-node-notifier@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-7.0.1.tgz#a355e33e6bebacef9bf8562689aed0f4230ca6f9"
- integrity sha512-VkzhierE7DBmQEElhTGJIoiZa1oqRijOtgOlsXg32KrJRXsPy0NXFBqWGW/wTswnJlDCs5viRYaqWguqzsKcmg==
+node-notifier@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.0.tgz#a7eee2d51da6d0f7ff5094bc7108c911240c1620"
+ integrity sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA==
dependencies:
growly "^1.3.0"
- is-wsl "^2.1.1"
- semver "^7.2.1"
+ is-wsl "^2.2.0"
+ semver "^7.3.2"
shellwords "^0.1.1"
- uuid "^7.0.3"
+ uuid "^8.3.0"
which "^2.0.2"
node-object-hash@^1.2.0:
@@ -9247,10 +9565,10 @@ node-object-hash@^1.2.0:
resolved "https://registry.yarnpkg.com/node-object-hash/-/node-object-hash-1.4.2.tgz#385833d85b229902b75826224f6077be969a9e94"
integrity sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ==
-node-releases@^1.1.58:
- version "1.1.59"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.59.tgz#4d648330641cec704bff10f8e4fe28e453ab8e8e"
- integrity sha512-H3JrdUczbdiwxN5FuJPyCHnGHIFqQ0wWxo+9j1kAXAzqNMAHlo+4I/sYYxpyK0irQ73HgdiyzD32oqQDcU2Osw==
+node-releases@^1.1.60:
+ version "1.1.60"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084"
+ integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==
node-req@^2.1.2:
version "2.1.2"
@@ -9305,13 +9623,12 @@ node-sass@^4.14.1:
dependencies:
abbrev "1"
-nopt@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48"
- integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==
+nopt@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
+ integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
dependencies:
abbrev "1"
- osenv "^0.1.4"
normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5, normalize-package-data@^2.4.0, normalize-package-data@^2.5.0:
version "2.5.0"
@@ -9419,21 +9736,21 @@ number-is-nan@^1.0.0:
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
-nuxt@^2.14.0:
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-2.14.0.tgz#2938600c93dbcc4f9628b61c1183468f01cef951"
- integrity sha512-WDGkNh/Qp0AFCrHOvCQ3fIexdYQvzmWgQNvzhJR1CcSai8vjd+02M0O/eugYkL1sQX5295B7o/0LuTBKBmXrDA==
+nuxt@^2.14.5:
+ version "2.14.5"
+ resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-2.14.5.tgz#d4da8ed7dd03cf199cf3981637377ab1fe682187"
+ integrity sha512-VAOlQNfDdxxCdrkOAWO5ErkvhMAZHdRJVMWH+gwjIWT+yh9uAXoFxm/WZcxCnJ6jEoUgvOZ6/DFKC01T96+0pg==
dependencies:
- "@nuxt/builder" "2.14.0"
- "@nuxt/cli" "2.14.0"
- "@nuxt/components" "^1.0.7"
- "@nuxt/core" "2.14.0"
- "@nuxt/generator" "2.14.0"
+ "@nuxt/builder" "2.14.5"
+ "@nuxt/cli" "2.14.5"
+ "@nuxt/components" "^1.1.0"
+ "@nuxt/core" "2.14.5"
+ "@nuxt/generator" "2.14.5"
"@nuxt/loading-screen" "^2.0.2"
"@nuxt/opencollective" "^0.3.0"
"@nuxt/static" "^1.0.0"
- "@nuxt/telemetry" "^1.2.2"
- "@nuxt/webpack" "2.14.0"
+ "@nuxt/telemetry" "^1.2.3"
+ "@nuxt/webpack" "2.14.5"
nwsapi@^2.2.0:
version "2.2.0"
@@ -9546,9 +9863,9 @@ onetime@^2.0.0:
mimic-fn "^1.0.0"
onetime@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5"
- integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
+ integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
dependencies:
mimic-fn "^2.1.0"
@@ -9564,15 +9881,15 @@ opencollective-postinstall@^2.0.2:
resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259"
integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==
-opener@1.5.1, opener@^1.5.1:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.1.tgz#6d2f0e77f1a0af0032aca716c2c1fbb8e7e8abed"
- integrity sha512-goYSy5c2UXE4Ra1xixabeVh1guIX/ZV/YokJksb6q2lubWu6UbvPQ20p542/sFIll1nl8JnCyK9oBaOcCWXwvA==
+opener@1.5.2, opener@^1.5.1:
+ version "1.5.2"
+ resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
+ integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
-optimize-css-assets-webpack-plugin@^5.0.3:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz#e2f1d4d94ad8c0af8967ebd7cf138dcb1ef14572"
- integrity sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA==
+optimize-css-assets-webpack-plugin@^5.0.4:
+ version "5.0.4"
+ resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz#85883c6528aaa02e30bbad9908c92926bb52dc90"
+ integrity sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==
dependencies:
cssnano "^4.1.10"
last-call-webpack-plugin "^3.0.0"
@@ -9703,10 +10020,10 @@ p-map@^4.0.0:
dependencies:
aggregate-error "^3.0.0"
-p-queue@6.6.0:
- version "6.6.0"
- resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.0.tgz#263f2b73add4cefca81d8d6b2696ee74b326de2f"
- integrity sha512-zPHXPNy9jZsiym0PpJjvnHQysx1fSd/QdaNVwiDRLU2KFChD6h9CkCB6b8i3U8lBwJyA+mHgNZCzcy77glUssQ==
+p-queue@6.6.1:
+ version "6.6.1"
+ resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.1.tgz#578891ada028a61371ec2692b26614d1b7d2b10a"
+ integrity sha512-miQiSxLYPYBxGkrldecZC18OTLjdUqnlRebGzPRiVxB8mco7usCmm7hFuxiTvp93K18JnLtE4KMMycjAu/cQQg==
dependencies:
eventemitter3 "^4.0.4"
p-timeout "^3.1.0"
@@ -9802,13 +10119,12 @@ parent-module@^1.0.0:
callsites "^3.0.0"
parse-asn1@^5.0.0, parse-asn1@^5.1.5:
- version "5.1.5"
- resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e"
- integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
+ integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
dependencies:
- asn1.js "^4.0.0"
+ asn1.js "^5.2.0"
browserify-aes "^1.0.0"
- create-hash "^1.1.0"
evp_bytestokey "^1.0.0"
pbkdf2 "^3.0.3"
safe-buffer "^5.1.1"
@@ -9883,13 +10199,13 @@ parse-json@^4.0.0:
json-parse-better-errors "^1.0.1"
parse-json@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
- integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646"
+ integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==
dependencies:
"@babel/code-frame" "^7.0.0"
error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
+ json-parse-even-better-errors "^2.3.0"
lines-and-columns "^1.1.6"
parse-passwd@^1.0.0:
@@ -9898,22 +10214,17 @@ parse-passwd@^1.0.0:
integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
parse-path@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.1.tgz#0ec769704949778cb3b8eda5e994c32073a1adff"
- integrity sha512-d7yhga0Oc+PwNXDvQ0Jv1BuWkLVPXcAoQ/WREgd6vNNoKYaW52KI+RdOFjI63wjkmps9yUE8VS4veP+AgpQ/hA==
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.2.tgz#ef14f0d3d77bae8dd4bc66563a4c151aac9e65aa"
+ integrity sha512-HSqVz6iuXSiL8C1ku5Gl1Z5cwDd9Wo0q8CoffdAghP6bz8pJa1tcMC+m4N+z6VAS8QdksnIGq1TB6EgR4vPR6w==
dependencies:
is-ssh "^1.3.0"
protocols "^1.4.0"
-parse-srcset@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1"
- integrity sha1-8r0iH2zJcKk42IVWq8WJyqqiveE=
-
parse-url@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-5.0.1.tgz#99c4084fc11be14141efa41b3d117a96fcb9527f"
- integrity sha512-flNUPP27r3vJpROi0/R3/2efgKkyXqnXwyP1KQ2U0SfFRgdizOdWfvrrvJg1LuOoxs7GQhmxJlq23IpQ/BkByg==
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-5.0.2.tgz#856a3be1fcdf78dc93fc8b3791f169072d898b59"
+ integrity sha512-Czj+GIit4cdWtxo3ISZCvLiUjErSo0iI3wJ+q9Oi3QuMYTI6OZu+7cewMWZ+C1YAnKhYTk6/TLuhIgCypLthPA==
dependencies:
is-ssh "^1.3.0"
normalize-url "^3.3.0"
@@ -10150,24 +10461,24 @@ postcss-attribute-case-insensitive@^4.0.1:
postcss-selector-parser "^6.0.2"
postcss-calc@^7.0.1:
- version "7.0.2"
- resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1"
- integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ==
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.4.tgz#5e177ddb417341e6d4a193c5d9fd8ada79094f8b"
+ integrity sha512-0I79VRAd1UTkaHzY9w83P39YGO/M3bG7/tNLrHGEunBolfoGM0hSjrGvjoeaj0JE/zIw5GsI2KZ0UwDJqv5hjw==
dependencies:
postcss "^7.0.27"
postcss-selector-parser "^6.0.2"
postcss-value-parser "^4.0.2"
-postcss-cli@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-7.1.1.tgz#260f9546be260b2149bf32e28d785a0d79c9aab8"
- integrity sha512-bYQy5ydAQJKCMSpvaMg0ThPBeGYqhQXumjbFOmWnL4u65CYXQ16RfS6afGQpit0dGv/fNzxbdDtx8dkqOhhIbg==
+postcss-cli@^7.1.2:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-7.1.2.tgz#ba8d5d918b644bd18e80ad2c698064d4c0da51cd"
+ integrity sha512-3mlEmN1v2NVuosMWZM2tP8bgZn7rO5PYxRRrXtdSyL5KipcgBDjJ9ct8/LKxImMCJJi3x5nYhCGFJOkGyEqXBQ==
dependencies:
chalk "^4.0.0"
chokidar "^3.3.0"
dependency-graph "^0.9.0"
fs-extra "^9.0.0"
- get-stdin "^7.0.0"
+ get-stdin "^8.0.0"
globby "^11.0.0"
postcss "^7.0.0"
postcss-load-config "^2.0.0"
@@ -10484,14 +10795,14 @@ postcss-modules-extract-imports@^2.0.0:
postcss "^7.0.5"
postcss-modules-local-by-default@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915"
- integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"
+ integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==
dependencies:
icss-utils "^4.1.1"
- postcss "^7.0.16"
+ postcss "^7.0.32"
postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.0.0"
+ postcss-value-parser "^4.1.0"
postcss-modules-scope@^2.2.0:
version "2.2.0"
@@ -10794,7 +11105,7 @@ postcss-value-parser@^3.0.0, postcss-value-parser@^3.2.3:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
-postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
+postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
@@ -10808,7 +11119,7 @@ postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
indexes-of "^1.0.1"
uniq "^1.0.1"
-postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6, postcss@^7.0.7:
+postcss@7.x.x, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6, postcss@^7.0.7:
version "7.0.32"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d"
integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==
@@ -10849,10 +11160,10 @@ prettier@^1.18.2:
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
-pretty-bytes@^5.3.0:
- version "5.3.0"
- resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.3.0.tgz#f2849e27db79fb4d6cfe24764fc4134f165989f2"
- integrity sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg==
+pretty-bytes@^5.4.1:
+ version "5.4.1"
+ resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.4.1.tgz#cd89f79bbcef21e3d21eb0da68ffe93f803e884b"
+ integrity sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA==
pretty-error@^2.1.1:
version "2.1.1"
@@ -10872,12 +11183,12 @@ pretty-format@^25.2.1, pretty-format@^25.5.0:
ansi-styles "^4.0.0"
react-is "^16.12.0"
-pretty-format@^26.1.0:
- version "26.1.0"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.1.0.tgz#272b9cd1f1a924ab5d443dc224899d7a65cb96ec"
- integrity sha512-GmeO1PEYdM+non4BKCj+XsPJjFOJIPnsLewqhDVoqY1xo0yNmDas7tC2XwpMrRAHR3MaE2hPo37deX5OisJ2Wg==
+pretty-format@^26.4.2:
+ version "26.4.2"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.4.2.tgz#d081d032b398e801e2012af2df1214ef75a81237"
+ integrity sha512-zK6Gd8zDsEiVydOCGLkoBoZuqv8VTiHyAbKznXe/gaph/DAeZOmit9yMfgIz5adIgAMMs5XfoYSwAX3jcCO1tA==
dependencies:
- "@jest/types" "^26.1.0"
+ "@jest/types" "^26.3.0"
ansi-regex "^5.0.0"
ansi-styles "^4.0.0"
react-is "^16.12.0"
@@ -10901,10 +11212,10 @@ pretty@^2.0.0:
extend-shallow "^2.0.1"
js-beautify "^1.6.12"
-prismjs@^1.20.0:
- version "1.20.0"
- resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.20.0.tgz#9b685fc480a3514ee7198eac6a3bf5024319ff03"
- integrity sha512-AEDjSrVNkynnw6A+B1DsFkd6AVdTnp+/WoUixFRULlCLZVRZlVQMVWio/16jv7G1FscUxQxOQhWwApgbnxr6kQ==
+prismjs@^1.21.0:
+ version "1.21.0"
+ resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.21.0.tgz#36c086ec36b45319ec4218ee164c110f9fc015a3"
+ integrity sha512-uGdSIu1nk3kej2iZsLyDoJ7e9bnPzIgY0naW/HdknGj61zScaprVEVGHrPoXqI+M9sP0NDnTK2jpkvmldpuqDw==
optionalDependencies:
clipboard "^2.0.0"
@@ -10953,7 +11264,7 @@ proper-lockfile@^4.1.1:
retry "^0.12.0"
signal-exit "^3.0.2"
-property-information@^5.0.0, property-information@^5.3.0:
+property-information@^5.0.0, property-information@^5.3.0, property-information@^5.5.0:
version "5.5.0"
resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.5.0.tgz#4dc075d493061a82e2b7d096f406e076ed859943"
integrity sha512-RgEbCx2HLa1chNgvChcx+rrCWD0ctBmGSE0M7lVm1yyv4UbvbrWoXp/BkVLZefzjrRBGW8/Js6uh/BnlHXFyjA==
@@ -10966,9 +11277,9 @@ proto-list@~1.2.1:
integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
protocols@^1.1.0, protocols@^1.4.0:
- version "1.4.7"
- resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.7.tgz#95f788a4f0e979b291ffefcf5636ad113d037d32"
- integrity sha512-Fx65lf9/YDn3hUX08XUc0J8rSux36rEsyiv21ZGUC1mOyeM3lTRpZLcrm8aAolzS4itwVfm7TAPyxC2E5zd6xg==
+ version "1.4.8"
+ resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.8.tgz#48eea2d8f58d9644a4a32caae5d5db290a075ce8"
+ integrity sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==
protoduck@^4.0.0:
version "4.0.0"
@@ -11326,9 +11637,9 @@ regenerator-runtime@^0.11.0:
integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
regenerator-runtime@^0.13.4:
- version "0.13.5"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
- integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
+ version "0.13.7"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
+ integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
regenerator-transform@^0.14.2:
version "0.14.5"
@@ -11425,21 +11736,21 @@ remark-autolink-headings@^6.0.1:
extend "^3.0.0"
unist-util-visit "^2.0.0"
-remark-external-links@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-6.1.0.tgz#1a545b3cf896eae00ec1732d90f595f75a329abe"
- integrity sha512-dJr+vhe3wuh1+E9jltQ+efRMqtMDOOnfFkhtoArOmhnBcPQX6THttXMkc/H0kdnAvkXTk7f2QdOYm5qo/sGqdw==
+remark-external-links@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-7.0.0.tgz#f9415a622e2d965c4017c0dde7e659a061bd8b5c"
+ integrity sha512-Iihlg28wFTWyGyTquKolM6nHLkgrRnRXp/QSwjbWGThwIFVKIMHZLAkCii26aTGDEiKr6p1QfMt4oltBIIngug==
dependencies:
extend "^3.0.0"
is-absolute-url "^3.0.0"
- mdast-util-definitions "^2.0.0"
+ mdast-util-definitions "^3.0.0"
space-separated-tokens "^1.0.0"
unist-util-visit "^2.0.0"
-remark-footnotes@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-1.0.0.tgz#9c7a97f9a89397858a50033373020b1ea2aad011"
- integrity sha512-X9Ncj4cj3/CIvLI2Z9IobHtVi8FVdUrdJkCNaL9kdX8ohfsi18DXHsCVd/A7ssARBdccdDb5ODnt62WuEWaM/g==
+remark-footnotes@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f"
+ integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==
remark-parse@^5.0.0:
version "5.0.0"
@@ -11559,19 +11870,19 @@ replace-ext@1.0.0:
resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
-request-promise-core@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9"
- integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==
+request-promise-core@1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f"
+ integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==
dependencies:
- lodash "^4.17.15"
+ lodash "^4.17.19"
request-promise-native@^1.0.8:
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36"
- integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
+ integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
dependencies:
- request-promise-core "1.1.3"
+ request-promise-core "1.1.4"
stealthy-require "^1.1.1"
tough-cookie "^2.3.3"
@@ -11777,10 +12088,10 @@ rollup-pluginutils@^2.8.1:
dependencies:
estree-walker "^0.6.1"
-rollup@^2.23.0:
- version "2.23.0"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.23.0.tgz#b7ab1fee0c0e60132fd0553c4df1e9cdacfada9d"
- integrity sha512-vLNmZFUGVwrnqNAJ/BvuLk1MtWzu4IuoqsH9UWK5AIdO3rt8/CSiJNvPvCIvfzrbNsqKbNzPAG1V2O4eTe2XZg==
+rollup@^2.26.11:
+ version "2.26.11"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.26.11.tgz#4fc31de9c7b83d50916fc8395f8c3d24730cdaae"
+ integrity sha512-xyfxxhsE6hW57xhfL1I+ixH8l2bdoIMaAecdQiWF3N7IgJEMu99JG+daBiSZQjnBpzFxa0/xZm+3pbCdAQehHw==
optionalDependencies:
fsevents "~2.1.2"
@@ -11806,10 +12117,10 @@ run-queue@^1.0.0, run-queue@^1.0.3:
dependencies:
aproba "^1.1.1"
-rxjs@^6.4.0, rxjs@^6.5.5, rxjs@^6.6.0:
- version "6.6.0"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz#af2901eedf02e3a83ffa7f886240ff9018bbec84"
- integrity sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg==
+rxjs@^6.4.0, rxjs@^6.6.0, rxjs@^6.6.2:
+ version "6.6.3"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552"
+ integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
dependencies:
tslib "^1.9.0"
@@ -11860,15 +12171,15 @@ sass-graph@2.2.5:
scss-tokenizer "^0.2.3"
yargs "^13.3.2"
-sass-loader@^9.0.2:
- version "9.0.2"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-9.0.2.tgz#847c9b4c95328ddc8c7d35cf28c9d6e54e59a90b"
- integrity sha512-nphcum3jNI442njnrZ5wJgSNX5lfEOHOKHCLf+PrTIaleploKqAMUuT9CVKjf+lyi6c2MCGPHh1vb9nGsjnZJA==
+sass-loader@^10.0.2:
+ version "10.0.2"
+ resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.0.2.tgz#c7b73010848b264792dd45372eea0b87cba4401e"
+ integrity sha512-wV6NDUVB8/iEYMalV/+139+vl2LaRFlZGEd5/xmdcdzQcgmis+npyco6NsDTVOlNA3y2NV9Gcz+vHyFMIT+ffg==
dependencies:
- klona "^1.1.1"
+ klona "^2.0.3"
loader-utils "^2.0.0"
- neo-async "^2.6.1"
- schema-utils "^2.7.0"
+ neo-async "^2.6.2"
+ schema-utils "^2.7.1"
semver "^7.3.2"
sax@>=0.6.0, sax@^1.2.4, sax@~1.2.4:
@@ -11892,14 +12203,14 @@ schema-utils@^1.0.0:
ajv-errors "^1.0.0"
ajv-keywords "^3.1.0"
-schema-utils@^2.0.0, schema-utils@^2.5.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7"
- integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==
+schema-utils@^2.0.0, schema-utils@^2.5.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0, schema-utils@^2.7.1:
+ version "2.7.1"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
+ integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
dependencies:
- "@types/json-schema" "^7.0.4"
- ajv "^6.12.2"
- ajv-keywords "^3.4.1"
+ "@types/json-schema" "^7.0.5"
+ ajv "^6.12.4"
+ ajv-keywords "^3.5.2"
scss-tokenizer@^0.2.3:
version "0.2.3"
@@ -11992,11 +12303,6 @@ sentence-case@^3.0.3:
tslib "^1.10.0"
upper-case-first "^2.0.1"
-serialize-javascript@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
- integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
-
serialize-javascript@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea"
@@ -12011,6 +12317,13 @@ serialize-javascript@^4.0.0:
dependencies:
randombytes "^2.1.0"
+serialize-javascript@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4"
+ integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
+ dependencies:
+ randombytes "^2.1.0"
+
serve-placeholder@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/serve-placeholder/-/serve-placeholder-1.2.2.tgz#034960945b5950f873b2be4e4ea3a4653b9e33e5"
@@ -12451,16 +12764,16 @@ stackframe@^1.1.1:
resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303"
integrity sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==
-standard-version@^8.0.2:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-8.0.2.tgz#02ed7131f83046bd04358dc54f97d42c4b2fd828"
- integrity sha512-L8X9KFq2SmVmaeZgUmWHFJMOsEWpjgFAwqic6yIIoveM1kdw1vH4Io03WWxUDjypjGqGU6qUtcJoR8UvOv5w3g==
+standard-version@^9.0.0:
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-9.0.0.tgz#814055add91eec8679a773768927f927183fc818"
+ integrity sha512-eRR04IscMP3xW9MJTykwz13HFNYs8jS33AGuDiBKgfo5YrO0qX0Nxb4rjupVwT5HDYL/aR+MBEVLjlmVFmFEDQ==
dependencies:
chalk "^2.4.2"
- conventional-changelog "3.1.21"
+ conventional-changelog "3.1.23"
conventional-changelog-config-spec "2.1.0"
- conventional-changelog-conventionalcommits "4.3.0"
- conventional-recommended-bump "6.0.9"
+ conventional-changelog-conventionalcommits "4.4.0"
+ conventional-recommended-bump "6.0.10"
detect-indent "^6.0.0"
detect-newline "^3.1.0"
dotgitignore "^2.1.0"
@@ -12722,7 +13035,7 @@ strip-json-comments@^2.0.0, strip-json-comments@~2.0.1:
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
-strip-json-comments@^3.1.0:
+strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
@@ -12773,9 +13086,9 @@ supports-color@^6.1.0:
has-flag "^3.0.0"
supports-color@^7.0.0, supports-color@^7.1.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
- integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
dependencies:
has-flag "^4.0.0"
@@ -12884,36 +13197,36 @@ terminal-link@^2.0.0:
supports-hyperlinks "^2.0.0"
terser-webpack-plugin@^1.4.3:
- version "1.4.4"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.4.tgz#2c63544347324baafa9a56baaddf1634c8abfc2f"
- integrity sha512-U4mACBHIegmfoEe5fdongHESNJWqsGU+W0S/9+BmYGVQDw1+c2Ow05TpMhxjPK1sRb7cuYq1BPl1e5YHJMTCqA==
+ version "1.4.5"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
+ integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
dependencies:
cacache "^12.0.2"
find-cache-dir "^2.1.0"
is-wsl "^1.1.0"
schema-utils "^1.0.0"
- serialize-javascript "^3.1.0"
+ serialize-javascript "^4.0.0"
source-map "^0.6.1"
terser "^4.1.2"
webpack-sources "^1.4.0"
worker-farm "^1.7.0"
terser-webpack-plugin@^2.3.5:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.7.tgz#4910ff5d1a872168cc7fa6cd3749e2b0d60a8a0b"
- integrity sha512-xzYyaHUNhzgaAdBsXxk2Yvo/x1NJdslUaussK3fdpBbvttm1iIwU+c26dj9UxJcwk2c5UWt5F55MUTIA8BE7Dg==
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz#894764a19b0743f2f704e7c2a848c5283a696724"
+ integrity sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==
dependencies:
cacache "^13.0.1"
find-cache-dir "^3.3.1"
jest-worker "^25.4.0"
p-limit "^2.3.0"
schema-utils "^2.6.6"
- serialize-javascript "^3.1.0"
+ serialize-javascript "^4.0.0"
source-map "^0.6.1"
terser "^4.6.12"
webpack-sources "^1.4.3"
-terser@^4.1.2, terser@^4.6.12, terser@^4.6.3, terser@^4.8.0:
+terser@^4.1.2, terser@^4.3.9, terser@^4.6.12, terser@^4.6.3:
version "4.8.0"
resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
@@ -12922,6 +13235,15 @@ terser@^4.1.2, terser@^4.6.12, terser@^4.6.3, terser@^4.8.0:
source-map "~0.6.1"
source-map-support "~0.5.12"
+terser@^5.3.1:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.3.1.tgz#f50fe20ab48b15234fe9bdd86b10148ad5fca787"
+ integrity sha512-yD80f4hdwCWTH5mojzxe1q8bN1oJbsK/vfJGLcPZM/fl+/jItIVNKhFIHqqR71OipFWMLgj3Kc+GIp6CeIqfnA==
+ dependencies:
+ commander "^2.20.0"
+ source-map "~0.6.1"
+ source-map-support "~0.5.12"
+
test-exclude@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
@@ -13101,11 +13423,6 @@ tr46@^2.0.2:
dependencies:
punycode "^2.1.1"
-trim-lines@^1.0.0:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-1.1.3.tgz#839514be82428fd9e7ec89e35081afe8f6f93115"
- integrity sha512-E0ZosSWYK2mkSu+KEtQ9/KqarVjA9HztOSX+9FDdNacRAq29RRV6ZQNgob3iuW8Htar9vAfEa6yyt5qBAHZDBA==
-
trim-newlines@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
@@ -13267,9 +13584,9 @@ ua-parser-js@^0.7.21:
integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==
uglify-js@^3.1.4, uglify-js@^3.5.1:
- version "3.10.0"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.0.tgz#397a7e6e31ce820bfd1cb55b804ee140c587a9e7"
- integrity sha512-Esj5HG5WAyrLIdYU74Z3JdG2PxdIusvj6IWHMtlyESxc7kcDz7zYlYjpnSokn1UbpV0d/QX9fan7gkCNd/9BQA==
+ version "3.10.4"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.4.tgz#dd680f5687bc0d7a93b14a3482d16db6eba2bfbb"
+ integrity sha512-kBFT3U4Dcj4/pJ52vfjCSfyLyvG9VYYuGYPmrPvAxRw/i7xHiT4VvCev+uiEMcEEiu6UNB6KgWmGtSUYIWScbw==
unfetch@^4.1.0:
version "4.1.0"
@@ -13319,10 +13636,10 @@ unified@^6.1.2:
vfile "^2.0.0"
x-is-string "^0.1.0"
-unified@^9.1.0:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/unified/-/unified-9.1.0.tgz#7ba82e5db4740c47a04e688a9ca8335980547410"
- integrity sha512-VXOv7Ic6twsKGJDeZQ2wwPqXs2hM0KNu5Hkg9WgAZbSD1pxhZ7p8swqg583nw1Je2fhwHy6U8aEjiI79x1gvag==
+unified@^9.2.0:
+ version "9.2.0"
+ resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8"
+ integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==
dependencies:
bail "^1.0.0"
extend "^3.0.0"
@@ -13372,7 +13689,7 @@ unique-string@^1.0.0:
dependencies:
crypto-random-string "^1.0.0"
-unist-builder@^2.0.0:
+unist-builder@^2.0.0, unist-builder@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436"
integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==
@@ -13535,9 +13852,9 @@ upper-case@^2.0.1:
tslib "^1.10.0"
uri-js@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
- integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602"
+ integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==
dependencies:
punycode "^2.1.0"
@@ -13639,20 +13956,20 @@ uuid@^3.3.2:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
-uuid@^7.0.3:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b"
- integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==
+uuid@^8.3.0:
+ version "8.3.0"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea"
+ integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ==
v8-compile-cache@^2.0.3:
version "2.1.1"
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745"
integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==
-v8-to-istanbul@^4.1.3:
- version "4.1.4"
- resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6"
- integrity sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==
+v8-to-istanbul@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-5.0.1.tgz#0608f5b49a481458625edb058488607f25498ba5"
+ integrity sha512-mbDNjuDajqYe3TXFk5qxcQy8L1msXNE37WTlLoqqpBfRsimbNcrlhQlDPntmECEcUvdC+AQ8CyMMf6EUx1r74Q==
dependencies:
"@types/istanbul-lib-coverage" "^2.0.1"
convert-source-map "^1.6.0"
@@ -13698,9 +14015,9 @@ vfile-location@^2.0.0:
integrity sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==
vfile-location@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.0.1.tgz#d78677c3546de0f7cd977544c367266764d31bb3"
- integrity sha512-yYBO06eeN/Ki6Kh1QAkgzYpWT1d3Qln+ZCtSbJqFExPl1S3y2qqotJQXoh6qEvl/jDlgpUJolBn3PItVnnZRqQ==
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.1.0.tgz#81cd8a04b0ac935185f4fce16f270503fc2f692f"
+ integrity sha512-FCZ4AN9xMcjFIG1oGmZKo61PjwJHRVA+0/tPUP2ul4uIwjGGndIxavEMRpWn5p4xwm/ZsdXp9YNygf1ZyE4x8g==
vfile-message@^1.0.0:
version "1.1.1"
@@ -13728,9 +14045,9 @@ vfile@^2.0.0:
vfile-message "^1.0.0"
vfile@^4.0.0:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.1.1.tgz#282d28cebb609183ac51703001bc18b3e3f17de9"
- integrity sha512-lRjkpyDGjVlBA7cDQhQ+gNcvB1BGaTHYuSOcY3S7OhDmBtnzX95FhtZZDecSTDm6aajFymyve6S5DN4ZHGezdQ==
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.0.tgz#26c78ac92eb70816b01d4565e003b7e65a2a0e01"
+ integrity sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==
dependencies:
"@types/unist" "^2.0.0"
is-buffer "^2.0.0"
@@ -13815,15 +14132,15 @@ vue-no-ssr@^1.1.1:
resolved "https://registry.yarnpkg.com/vue-no-ssr/-/vue-no-ssr-1.1.1.tgz#875f3be6fb0ae41568a837f3ac1a80eaa137b998"
integrity sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g==
-vue-router@^3.3.4:
- version "3.3.4"
- resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-3.3.4.tgz#4e38abc34a11c41b6c3d8244449a2e363ba6250b"
- integrity sha512-SdKRBeoXUjaZ9R/8AyxsdTqkOfMcI5tWxPZOUX5Ie1BTL5rPSZ0O++pbiZCeYeythiZIdLEfkDiQPKIaWk5hDg==
+vue-router@^3.4.3:
+ version "3.4.3"
+ resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-3.4.3.tgz#fa93768616ee338aa174f160ac965167fa572ffa"
+ integrity sha512-BADg1mjGWX18Dpmy6bOGzGNnk7B/ZA0RxuA6qedY/YJwirMfKXIDzcccmHbQI0A6k5PzMdMloc0ElHfyOoX35A==
-vue-server-renderer@^2.6.11:
- version "2.6.11"
- resolved "https://registry.yarnpkg.com/vue-server-renderer/-/vue-server-renderer-2.6.11.tgz#be8c9abc6aacc309828a755c021a05fc474b4bc3"
- integrity sha512-V3faFJHr2KYfdSIalL+JjinZSHYUhlrvJ9pzCIjjwSh77+pkrsXpK4PucdPcng57+N77pd1LrKqwbqjQdktU1A==
+vue-server-renderer@^2.6.12:
+ version "2.6.12"
+ resolved "https://registry.yarnpkg.com/vue-server-renderer/-/vue-server-renderer-2.6.12.tgz#a8cb9c49439ef205293cb41c35d0d2b0541653a5"
+ integrity sha512-3LODaOsnQx7iMFTBLjki8xSyOxhCtbZ+nQie0wWY4iOVeEtTg1a3YQAjd82WvKxrWHHTshjvLb7OXMc2/dYuxw==
dependencies:
chalk "^1.1.3"
hash-sum "^1.0.2"
@@ -13831,7 +14148,7 @@ vue-server-renderer@^2.6.11:
lodash.template "^4.5.0"
lodash.uniq "^4.5.0"
resolve "^1.2.0"
- serialize-javascript "^2.1.2"
+ serialize-javascript "^3.1.0"
source-map "0.5.6"
vue-style-loader@^4.1.0:
@@ -13842,10 +14159,10 @@ vue-style-loader@^4.1.0:
hash-sum "^1.0.2"
loader-utils "^1.0.2"
-vue-template-compiler@^2.6.11:
- version "2.6.11"
- resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.11.tgz#c04704ef8f498b153130018993e56309d4698080"
- integrity sha512-KIq15bvQDrcCjpGjrAhx4mUlyyHfdmTaoNfeoATHLAiWB+MU3cx4lOzMwrnUh9cCxy0Lt1T11hAFY6TQgroUAA==
+vue-template-compiler@^2.6.12:
+ version "2.6.12"
+ resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz#947ed7196744c8a5285ebe1233fe960437fcc57e"
+ integrity sha512-OzzZ52zS41YUbkCBfdXShQTe69j1gQDZ9HIX8miuC9C3rBCk9wIRjLiZZLrmX9V+Ftq/YEyv1JaVr5Y/hNtByg==
dependencies:
de-indent "^1.0.2"
he "^1.1.0"
@@ -13855,10 +14172,10 @@ vue-template-es2015-compiler@^1.6.0, vue-template-es2015-compiler@^1.9.0:
resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825"
integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
-vue@^2.6.11:
- version "2.6.11"
- resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.11.tgz#76594d877d4b12234406e84e35275c6d514125c5"
- integrity sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ==
+vue@^2.6.12:
+ version "2.6.12"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.12.tgz#f5ebd4fa6bd2869403e29a896aed4904456c9123"
+ integrity sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==
vuex@^3.5.1:
version "3.5.1"
@@ -13980,10 +14297,10 @@ webpack-log@^2.0.0:
ansi-colors "^3.0.0"
uuid "^3.3.2"
-webpack-node-externals@^2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/webpack-node-externals/-/webpack-node-externals-2.5.0.tgz#8d50f3289c71bc2b921a8da228e0b652acc503f1"
- integrity sha512-g7/Z7Q/gsP8GkJkKZuJggn6RSb5PvxW1YD5vvmRZIxaSxAzkqjfL5n9CslVmNYlSqBVCyiqFgOqVS2IOObCSRg==
+webpack-node-externals@^2.5.2:
+ version "2.5.2"
+ resolved "https://registry.yarnpkg.com/webpack-node-externals/-/webpack-node-externals-2.5.2.tgz#178e017a24fec6015bc9e672c77958a6afac861d"
+ integrity sha512-aHdl/y2N7PW2Sx7K+r3AxpJO+aDMcYzMQd60Qxefq3+EwhewSbTBqNumOsCE1JsCUNoyfGj5465N0sSf6hc/5w==
webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
version "1.4.3"
@@ -13993,10 +14310,10 @@ webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-
source-list-map "^2.0.0"
source-map "~0.6.1"
-webpack@^4.44.0:
- version "4.44.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.0.tgz#3b08f88a89470175f036f4a9496b8a0428668802"
- integrity sha512-wAuJxK123sqAw31SpkPiPW3iKHgFUiKvO7E7UZjtdExcsRe3fgav4mvoMM7vvpjLHVoJ6a0Mtp2fzkoA13e0Zw==
+webpack@^4.44.1:
+ version "4.44.1"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.1.tgz#17e69fff9f321b8f117d1fda714edfc0b939cc21"
+ integrity sha512-4UOGAohv/VGUNQJstzEywwNxqX417FnjZgZJpJQegddzPmTvph37eBIRbRTfdySXzVtJXLJfbMN3mMYhM6GdmQ==
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/helper-module-context" "1.9.0"
@@ -14049,13 +14366,13 @@ whatwg-mimetype@^2.3.0:
integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
whatwg-url@^8.0.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.1.0.tgz#c628acdcf45b82274ce7281ee31dd3c839791771"
- integrity sha512-vEIkwNi9Hqt4TV9RdnaBPNt+E2Sgmo3gePebCRgZ1R7g6d23+53zCTnuB0amKI4AXq6VM8jj2DUAa0S1vjJxkw==
+ version "8.2.2"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.2.2.tgz#85e7f9795108b53d554cec640b2e8aee2a0d4bfd"
+ integrity sha512-PcVnO6NiewhkmzV0qn7A+UZ9Xx4maNTI+O+TShmfE4pqjoCMwUMjkvoNhNHPTvgR7QH9Xt3R13iHuWy2sToFxQ==
dependencies:
lodash.sortby "^4.7.0"
tr46 "^2.0.2"
- webidl-conversions "^5.0.0"
+ webidl-conversions "^6.1.0"
which-module@^2.0.0:
version "2.0.0"
@@ -14124,10 +14441,10 @@ wordwrap@^1.0.0:
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
-workbox-cdn@^4.3.1:
- version "4.3.1"
- resolved "https://registry.yarnpkg.com/workbox-cdn/-/workbox-cdn-4.3.1.tgz#f1ffed5368c20291048498ba0744baf27dbd7294"
- integrity sha512-Adkgo+/7S+bBsDTzdeH0xxQCrfBM1EiyZlvu1tMh0cJ/ipC6TtA8KDr12PBREdbL0zO9hG+7OSzvi2NLchPAEg==
+workbox-cdn@^5.1.3:
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/workbox-cdn/-/workbox-cdn-5.1.3.tgz#9904716a54684f146e1f596da7e70f01daede8fe"
+ integrity sha512-eYkQeCO1p/78MkTbV1Ruy7KuHK5vSGtr0igXfzBQFBVRmF7+7GrMSrYiw1Ya91Tb9pjXFYYNZlspBfeWUbLMUw==
worker-farm@^1.7.0:
version "1.7.0"
@@ -14289,7 +14606,7 @@ yallist@^4.0.0:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
-yaml@^1.7.2:
+yaml@^1.10.0:
version "1.10.0"
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==