').html(value).text()
+ }
}
if (typeof value === 'string' || typeof value === 'number') {
@@ -1510,33 +1514,13 @@ class BootstrapTable {
// eslint-disable-next-line no-unused-vars
initRow (item, i, data, trFragments) {
- const html = []
- let style = {}
- const csses = []
- let data_ = ''
- let attributes = {}
- const htmlAttributes = []
-
if (Utils.findIndex(this.hiddenRows, item) > -1) {
return
}
-
- style = Utils.calculateObjectValue(this.options, this.options.rowStyle, [item, i], style)
-
- if (style && style.css) {
- for (const [key, value] of Object.entries(style.css)) {
- csses.push(`${key}: ${value}`)
- }
- }
-
- attributes = Utils.calculateObjectValue(this.options,
- this.options.rowAttributes, [item, i], attributes)
-
- if (attributes) {
- for (const [key, value] of Object.entries(attributes)) {
- htmlAttributes.push(`${key}="${Utils.escapeHTML(value)}"`)
- }
- }
+ const style = Utils.calculateObjectValue(this.options, this.options.rowStyle, [item, i], {})
+ const attributes = Utils.calculateObjectValue(this.options,
+ this.options.rowAttributes, [item, i], {})
+ const data_ = {}
if (item._data && !Utils.isEmptyObject(item._data)) {
for (const [k, v] of Object.entries(item._data)) {
@@ -1544,61 +1528,46 @@ class BootstrapTable {
if (k === 'index') {
return
}
- data_ += ` data-${k}='${typeof v === 'object' ? JSON.stringify(v) : v}'`
+ data_[`data-${k}`] = typeof v === 'object' ? JSON.stringify(v) : v
}
}
-
- html.push('
'
- )
-
- if (this.options.cardView) {
- html.push(``)
- }
-
+ const tr = Utils.h('tr', {
+ ...attributes,
+ id: Array.isArray(item) ? undefined : item._id,
+ class: style && style.classes || (Array.isArray(item) ? undefined : item._class),
+ style: style && style.css || (Array.isArray(item) ? undefined : item._style),
+ 'data-index': i,
+ 'data-uniqueid': Utils.getItemField(item, this.options.uniqueId, false),
+ 'data-has-detail-view': this.options.detailView &&
+ Utils.calculateObjectValue(null, this.options.detailFilter, [i, item]) ? 'true' : undefined,
+ ...data_
+ })
+ const trChildren = []
let detailViewTemplate = ''
if (Utils.hasDetailViewIcon(this.options)) {
- detailViewTemplate = ' '
+ detailViewTemplate = Utils.h('td')
if (Utils.calculateObjectValue(null, this.options.detailFilter, [i, item])) {
- detailViewTemplate += `
-
- ${Utils.sprintf(this.constants.html.icon, this.options.iconsPrefix, this.options.icons.detailOpen)}
-
- `
+ detailViewTemplate.append(Utils.h('a', {
+ class: 'detail-icon',
+ href: '#',
+ html: Utils.sprintf(this.constants.html.icon, this.options.iconsPrefix, this.options.icons.detailOpen)
+ }))
}
-
- detailViewTemplate += ' | '
}
if (detailViewTemplate && this.options.detailViewAlign !== 'right') {
- html.push(detailViewTemplate)
+ trChildren.push(detailViewTemplate)
}
- this.header.fields.forEach((field, j) => {
+ const tds = this.header.fields.map((field, j) => {
const column = this.columns[j]
- let text = ''
const value_ = Utils.getItemField(item, field, this.options.escape, column.escape)
let value = ''
- let type = ''
- let cellStyle = {}
- let id_ = ''
- let class_ = this.header.classes[j]
- let style_ = ''
- let styleToAdd_ = ''
- let data_ = ''
- let rowspan_ = ''
- let colspan_ = ''
- let title_ = ''
+ const attrs = {
+ style: []
+ }
if ((this.fromHtml || this.autoMergeCells) && typeof value_ === 'undefined') {
if (!column.checkbox && !column.radio) {
@@ -1614,47 +1583,21 @@ class BootstrapTable {
return
}
- // Style concat
- if (csses.concat([this.header.styles[j]]).length) {
- styleToAdd_ += `${csses.concat([this.header.styles[j]]).join('; ')}`
- }
- if (item[`_${field}_style`]) {
- styleToAdd_ += `${item[`_${field}_style`]}`
+ // handle id and class of td
+ for (const item of ['id', 'class', 'rowspan', 'colspan', 'title']) {
+ attrs[item] = item[`_${field}_${item}`] || undefined
}
- if (styleToAdd_) {
- style_ = ` style="${styleToAdd_}"`
- }
- // Style concat
+ attrs.style.push(this.header.styles[j], item[`_${field}_style`])
+ const cellStyle = Utils.calculateObjectValue(this.header,
+ this.header.cellStyles[j], [value_, item, i, field], {})
- // handle id and class of td
- if (item[`_${field}_id`]) {
- id_ = Utils.sprintf(' id="%s"', item[`_${field}_id`])
- }
- if (item[`_${field}_class`]) {
- class_ = Utils.sprintf(' class="%s"', item[`_${field}_class`])
- }
- if (item[`_${field}_rowspan`]) {
- rowspan_ = Utils.sprintf(' rowspan="%s"', item[`_${field}_rowspan`])
- }
- if (item[`_${field}_colspan`]) {
- colspan_ = Utils.sprintf(' colspan="%s"', item[`_${field}_colspan`])
- }
- if (item[`_${field}_title`]) {
- title_ = Utils.sprintf(' title="%s"', item[`_${field}_title`])
- }
- cellStyle = Utils.calculateObjectValue(this.header,
- this.header.cellStyles[j], [value_, item, i, field], cellStyle)
if (cellStyle.classes) {
- class_ = ` class="${cellStyle.classes}"`
+ attrs.class = attrs.class || []
+ attrs.class.push(cellStyle.classes)
}
if (cellStyle.css) {
- const csses_ = []
-
- for (const [key, value] of Object.entries(cellStyle.css)) {
- csses_.push(`${key}: ${value}`)
- }
- style_ = ` style="${csses_.concat(this.header.styles[j]).join('; ')}"`
+ attrs.style.push(cellStyle.css)
}
value = Utils.calculateObjectValue(column,
@@ -1673,7 +1616,7 @@ class BootstrapTable {
) {
let searchText = this.searchText.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
- if (this.options.searchAccentNeutralise) {
+ if (this.options.searchAccentNeutralise && typeof value === 'string') {
const indexRegex = new RegExp(`${Utils.normalizeAccent(searchText)}`, 'gmi')
const match = indexRegex.exec(Utils.normalizeAccent(value))
@@ -1694,64 +1637,80 @@ class BootstrapTable {
if (k === 'index') {
return
}
- data_ += ` data-${k}="${v}"`
+ attrs[`data-${k}`] = v
}
}
if (column.checkbox || column.radio) {
- type = column.checkbox ? 'checkbox' : type
- type = column.radio ? 'radio' : type
-
- const c = column['class'] || ''
+ const type = column.checkbox ? 'checkbox' : 'radio'
const isChecked = Utils.isObject(value) && value.hasOwnProperty('checked') ?
value.checked : (value === true || value_) && value !== false
const isDisabled = !column.checkboxEnabled || value && value.disabled
-
- text = [
- this.options.cardView ?
- ` ` :
- ` `,
- ``,
- this.header.formatters[j] && typeof value === 'string' ? value : '',
- this.options.cardView ? '' : ' | '
- ].join('')
+ const valueNodes = this.header.formatters[j] && (
+ typeof value === 'string' || value instanceof Node || value instanceof $) ? Utils.htmlToNodes(value) : []
item[this.header.stateField] = value === true || (!!value_ || value && value.checked)
- } else if (this.options.cardView) {
- const cardTitle = this.options.showHeader ?
- ` ${Utils.getFieldTitle(this.columns, field)}` : ''
- text = ` ${cardTitle}${value} `
+ return Utils.h(this.options.cardView ? 'div' : 'td', {
+ class: [this.options.cardView ? 'card-view' : 'bs-checkbox', column.class],
+ style: this.options.cardView ? undefined : attrs.style
+ }, [
+ Utils.h('label', {}, [
+ Utils.h('input', {
+ 'data-index': i,
+ name: this.options.selectItemName,
+ type,
+ value: item[this.options.idField],
+ checked: isChecked ? 'checked' : undefined,
+ disabled: isDisabled ? 'disabled' : undefined
+ }),
+ Utils.h('span')
+ ]),
+ ...valueNodes
+ ])
+ }
+ if (this.options.cardView) {
if (this.options.smartDisplay && value === '') {
- text = ' '
+ return Utils.h('div', { class: 'card-view' })
}
- } else {
- text = ` ${value} | `
+
+ const cardTitle = this.options.showHeader ?
+ Utils.h('span', {
+ class: ['card-view-title', cellStyle.classes],
+ style: attrs.style,
+ html: Utils.getFieldTitle(this.columns, field)
+ }) : ''
+
+ return Utils.h('div', { class: 'card-view' }, [
+ cardTitle,
+ Utils.h('span', {
+ class: ['card-view-value', cellStyle.classes],
+ style: attrs.style
+ }, [...Utils.htmlToNodes(value)])
+ ])
}
- html.push(text)
- })
+ return Utils.h('td', attrs, [...Utils.htmlToNodes(value)])
+ }).filter(x => x)
+
+ trChildren.push(...tds)
if (detailViewTemplate && this.options.detailViewAlign === 'right') {
- html.push(detailViewTemplate)
+ trChildren.push(detailViewTemplate)
}
if (this.options.cardView) {
- html.push(' | ')
+ tr.append(Utils.h('td', {
+ colspan: this.header.fields.length
+ }, [
+ Utils.h('div', { class: 'card-views' }, trChildren)
+ ]))
+ } else {
+ tr.append(...trChildren)
}
- html.push('
')
- return html.join('')
+ return tr
}
initBody (fixedScroll, updatedUid) {
@@ -1779,12 +1738,13 @@ class BootstrapTable {
for (let i = this.pageFrom - 1; i < this.pageTo; i++) {
const item = data[i]
- let tr = this.initRow(item, i, data, trFragments)
+ const tr = this.initRow(item, i, data, trFragments)
hasTr = hasTr || !!tr
- if (tr && typeof tr === 'string') {
+ if (tr && tr instanceof Node) {
const uniqueId = this.options.uniqueId
+ const toAppend = [tr]
if (uniqueId && item.hasOwnProperty(uniqueId)) {
const itemUniqueId = item[uniqueId]
@@ -1797,15 +1757,15 @@ class BootstrapTable {
toExpand.push(i)
if (!updatedUid || itemUniqueId !== updatedUid) {
- tr += oldTrNext[0].outerHTML
+ toAppend.push(oldTrNext[0])
}
}
}
if (!this.options.virtualScroll) {
- trFragments.append(tr)
+ trFragments.append(toAppend)
} else {
- rows.push(tr)
+ rows.push($('
').html(toAppend).html())
}
}
}
@@ -2291,7 +2251,10 @@ class BootstrapTable {
let detailTemplate = ''
if (Utils.hasDetailViewIcon(this.options)) {
- detailTemplate = '
| '
+ detailTemplate = Utils.h('th', { class: 'detail' }, [
+ Utils.h('div', { class: 'th-inner' }),
+ Utils.h('div', { class: 'fht-cell' })
+ ])
}
if (detailTemplate && this.options.detailViewAlign !== 'right') {
@@ -2299,15 +2262,11 @@ class BootstrapTable {
}
for (const column of this.columns) {
- let falign = ''
- let valign = ''
- const csses = []
- let style = {}
- let class_ = Utils.sprintf(' class="%s"', column['class'])
+ const hasData = this.footerData && this.footerData.length > 0
if (
!column.visible ||
- this.footerData && this.footerData.length > 0 && !(column.field in this.footerData[0])
+ hasData && !(column.field in this.footerData[0])
) {
continue
}
@@ -2316,46 +2275,28 @@ class BootstrapTable {
return
}
- falign = Utils.sprintf('text-align: %s; ', column.falign ? column.falign : column.align)
- valign = Utils.sprintf('vertical-align: %s; ', column.valign)
+ const style = Utils.calculateObjectValue(null, column.footerStyle || this.options.footerStyle, [column])
+ const csses = style && style.css || {}
+ const colspan = hasData && this.footerData[0][`_${column.field}_colspan`] || 0
+ let value = hasData && this.footerData[0][column.field] || ''
- style = Utils.calculateObjectValue(null, column.footerStyle || this.options.footerStyle, [column])
-
- if (style && style.css) {
- for (const [key, value] of Object.entries(style.css)) {
- csses.push(`${key}: ${value}`)
- }
- }
- if (style && style.classes) {
- class_ = Utils.sprintf(' class="%s"', column['class'] ?
- [column['class'], style.classes].join(' ') : style.classes)
- }
-
- html.push('
0) {
- colspan = this.footerData[0][`_${column.field}_colspan`] || 0
- }
- if (colspan) {
- html.push(` colspan="${colspan}" `)
- }
-
- html.push('>')
- html.push(' ')
-
- let value = ''
-
- if (this.footerData && this.footerData.length > 0) {
- value = this.footerData[0][column.field] || ''
- }
- html.push(Utils.calculateObjectValue(column, column.footerFormatter,
- [data, value], value))
+ value = Utils.calculateObjectValue(column, column.footerFormatter,
+ [data, value], value)
- html.push(' ')
- html.push('')
- html.push('')
- html.push(' | ')
+ html.push(Utils.h('th', {
+ class: [column['class'], style && style.classes],
+ style: {
+ 'text-align': column.falign ? column.falign : column.align,
+ 'vertical-align': column.valign,
+ ...csses
+ },
+ colspan: colspan || undefined
+ }, [
+ Utils.h('div', {
+ class: 'th-inner'
+ }, [...Utils.htmlToNodes(value)]),
+ Utils.h('div', { class: 'fht-cell' })
+ ]))
}
if (detailTemplate && this.options.detailViewAlign === 'right') {
@@ -2371,7 +2312,7 @@ class BootstrapTable {
this.$tableFooter.html('
')
}
- this.$tableFooter.find('tr').html(html.join(''))
+ this.$tableFooter.find('tr').html(html)
this.trigger('post-footer', this.$tableFooter)
}
diff --git a/src/extensions/print/bootstrap-table-print.js b/src/extensions/print/bootstrap-table-print.js
index ea7c73ae6..646d908b9 100644
--- a/src/extensions/print/bootstrap-table-print.js
+++ b/src/extensions/print/bootstrap-table-print.js
@@ -148,7 +148,7 @@ $.BootstrapTable = class extends $.BootstrapTable {
[value_, row, i], value_)
return typeof value === 'undefined' || value === null ?
- this.options.undefinedText : value
+ this.options.undefinedText : $('
').html(value).html()
}
const buildTable = (data, columnsArray) => {
diff --git a/src/extensions/toolbar/bootstrap-table-toolbar.js b/src/extensions/toolbar/bootstrap-table-toolbar.js
index 37c78735a..a5fcd0bfd 100644
--- a/src/extensions/toolbar/bootstrap-table-toolbar.js
+++ b/src/extensions/toolbar/bootstrap-table-toolbar.js
@@ -350,6 +350,10 @@ $.BootstrapTable = class extends $.BootstrapTable {
value = Utils.calculateObjectValue(this.header,
this.header.formatters[index], [value, item, i], value)
+ if (this.header.formatters[index]) {
+ // search innerText
+ value = $('
').html(value).text()
+ }
if (
!(index !== -1 &&
diff --git a/src/utils/index.js b/src/utils/index.js
index c3b472759..018bfa26f 100644
--- a/src/utils/index.js
+++ b/src/utils/index.js
@@ -668,24 +668,161 @@ export default {
},
replaceSearchMark (html, searchText) {
- const node = document.createElement('div')
- const replaceMark = (node, searchText) => {
- const regExp = new RegExp(searchText, 'gim')
+ const isDom = html instanceof Element
+ const node = isDom ? html : document.createElement('div')
+ const regExp = new RegExp(searchText, 'gim')
+ const replaceTextWithDom = (text, regExp) => {
+ const result = []
+ let match
+ let lastIndex = 0
+
+ while ((match = regExp.exec(text)) !== null) {
+ if (lastIndex !== match.index) {
+ result.push(document.createTextNode(text.substring(lastIndex, match.index)))
+ }
+ const mark = document.createElement('mark')
+
+ mark.innerText = match[0]
+ result.push(mark)
+ lastIndex = match.index + match[0].length
+ }
+ if (!result.length) {
+ // no match
+ return
+ }
+ if (lastIndex !== text.length) {
+ result.push(document.createTextNode(text.substring(lastIndex)))
+ }
+ return result
+ }
+ const replaceMark = node => {
+ for (let i = 0; i < node.childNodes.length; i++) {
+ const child = node.childNodes[i]
- for (const child of node.childNodes) {
if (child.nodeType === document.TEXT_NODE) {
- child.data = child.data.replace(regExp, match => `___${match}___`)
+ const elements = replaceTextWithDom(child.data, regExp)
+
+ if (elements) {
+ for (const el of elements) {
+ node.insertBefore(el, child)
+ }
+ node.removeChild(child)
+ i += elements.length - 1
+ }
}
if (child.nodeType === document.ELEMENT_NODE) {
- replaceMark(child, searchText)
+ replaceMark(child)
+ }
+ }
+ }
+
+ if (!isDom) {
+ node.innerHTML = html
+ }
+ replaceMark(node)
+ return isDom ? node : node.innerHTML
+ },
+
+ classToString (class_) {
+ if (typeof class_ === 'string') {
+ return class_
+ }
+ if (Array.isArray(class_)) {
+ return class_.map(x => this.classToString(x)).filter(x => x).join(' ')
+ }
+ if (class_ && typeof class_ === 'object') {
+ return Object.entries(class_).map(([k, v]) => v ? k : '').filter(x => x).join(' ')
+ }
+ return ''
+ },
+
+ parseStyle (dom, style) {
+ if (!style) {
+ return dom
+ }
+ if (typeof style === 'string') {
+ style.split(';').forEach(i => {
+ const index = i.indexOf(':')
+
+ if (index > 0) {
+ const k = i.substring(0, index).trim()
+ const v = i.substring(index + 1).trim()
+
+ dom.style.setProperty(k, v)
+ }
+ })
+ } else if (Array.isArray(style)) {
+ for (const item of style) {
+ this.parseStyle(item)
+ }
+ } else if (typeof style === 'object') {
+ for (const [k, v] of Object.entries(style)) {
+ dom.style.setProperty(k, v)
+ }
+ }
+ return dom
+ },
+
+ h (element, attrs, children) {
+ const el = element instanceof HTMLElement ? element : document.createElement(element)
+ const _attrs = attrs || {}
+ const _children = children || []
+
+ // default attributes
+ if (el.tagName === 'A') {
+ el.href = 'javascript:'
+ }
+
+ for (const [k, v] of Object.entries(_attrs)) {
+ if (v === undefined) {
+ continue
+ }
+ if (['text', 'innerText'].includes(k)) {
+ el.innerText = v
+ } else if (['html', 'innerHTML'].includes(k)) {
+ el.innerHTML = v
+ } else if (k === 'children') {
+ _children.push(...v)
+ } else if (k === 'class') {
+ el.setAttribute('class', this.classToString(v))
+ } else if (k === 'style') {
+ if (typeof v === 'string') {
+ el.setAttribute('style', v)
+ } else {
+ this.parseStyle(el, v)
}
+ } else if (k.startsWith('@') || k.startsWith('on')) {
+ // event handlers
+ const event = k.startsWith('@') ? k.substring(1) : k.substring(2).toLowerCase()
+ const args = Array.isArray(v) ? v : [v]
+
+ el.addEventListener(event, ...args)
+ } else if (k.startsWith('.')) {
+ // set property
+ el[k.substring(1)] = v
+ } else {
+ el.setAttribute(k, v)
}
}
+ if (_children.length) {
+ el.append(..._children)
+ }
+ return el
+ },
- node.innerHTML = html
- replaceMark(node, searchText)
+ htmlToNodes (html) {
+ if (html instanceof $) {
+ return html.get()
+ }
+ if (html instanceof Node) {
+ return [html]
+ }
+ if (typeof html !== 'string') {
+ html = new String(html).toString()
+ }
+ const d = document.createElement('div')
- return node.innerHTML.replace(new RegExp(`___${searchText}___`, 'gim'),
- match => `
${match.slice(3, -3)}`)
+ d.innerHTML = html
+ return d.childNodes
}
}
From cc913a37ae4ee0bd3e5ed112534cc39aae147604 Mon Sep 17 00:00:00 2001
From: weibangtuo
Date: Fri, 2 Aug 2024 11:50:48 +0800
Subject: [PATCH 19/67] Update doc for column options data-formatter and
data-footer-formatter
---
CHANGELOG.md | 6 ++++++
site/docs/api/column-options.md | 4 +++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6dc164239..a05f908ab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
ChangeLog
---------
+### 1.23.3
+
+### Core
+
+- **New:** Added support for column options `formatter` and `footerFormatter` methods returning type `jQuery`, `HTMLElement`.
+
### 1.23.2
### Core
diff --git a/site/docs/api/column-options.md b/site/docs/api/column-options.md
index 978786676..1d4ded0d5 100644
--- a/site/docs/api/column-options.md
+++ b/site/docs/api/column-options.md
@@ -230,7 +230,7 @@ The column options is defined in `jQuery.fn.bootstrapTable.columnDefaults`.
* `data`: Array of all the data rows.
* `value`: If footer data is set, the value of the footer column.
- The function should return a string with the text to show in the footer cell.
+ The expected return data type is `jQuery`, `String` or `HTMLElement`. Other types will be forced to the `String` type.
If you fetch data from a server and set the footer value from the server response, please use the `footerField` Option.
@@ -282,6 +282,8 @@ The column options is defined in `jQuery.fn.bootstrapTable.columnDefaults`.
* `index`: the row index.
* `field`: the row field.
+ The expected return data type is `jQuery`, `String` or `HTMLElement`. Other types will be forced to the `String` type.
+
- **Default:** `undefined`
- **Example:** [Column Formatter](https://examples.bootstrap-table.com/#column-options/formatter.html)
From 40ae97ec497ba7bc03f5b92421cd86cacd12233b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 5 Aug 2024 21:54:38 +0000
Subject: [PATCH 20/67] Bump core-js from 3.37.1 to 3.38.0
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.37.1 to 3.38.0.
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.38.0/packages/core-js)
---
updated-dependencies:
- dependency-name: core-js
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a1147329f..31b42e921 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2671,9 +2671,9 @@ core-js-compat@^3.36.1, core-js-compat@^3.37.1:
browserslist "^4.23.0"
core-js@^3.37.1:
- version "3.37.1"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.37.1.tgz#d21751ddb756518ac5a00e4d66499df981a62db9"
- integrity sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==
+ version "3.38.0"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.38.0.tgz#8acb7c050bf2ccbb35f938c0d040132f6110f636"
+ integrity sha512-XPpwqEodRljce9KswjZShh95qJ1URisBeKCjUdq27YdenkslVe7OO0ZJhlYXAChW7OhXaRLl8AAba7IBfoIHug==
core-util-is@1.0.2:
version "1.0.2"
From 111cca55df619e8798fd0847fc7ae0bbe4380662 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 5 Aug 2024 21:54:54 +0000
Subject: [PATCH 21/67] Bump rollup from 4.19.2 to 4.20.0
Bumps [rollup](https://github.com/rollup/rollup) from 4.19.2 to 4.20.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.19.2...v4.20.0)
---
updated-dependencies:
- dependency-name: rollup
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 196 +++++++++++++++++++++++++++---------------------------
1 file changed, 98 insertions(+), 98 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a1147329f..7be396d1a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1799,85 +1799,85 @@
estree-walker "^2.0.2"
picomatch "^2.3.1"
-"@rollup/rollup-android-arm-eabi@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.19.2.tgz#6b991cb44bf69e50163528ea85bed545330ba821"
- integrity sha512-OHflWINKtoCFSpm/WmuQaWW4jeX+3Qt3XQDepkkiFTsoxFc5BpF3Z5aDxFZgBqRjO6ATP5+b1iilp4kGIZVWlA==
-
-"@rollup/rollup-android-arm64@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.19.2.tgz#5d3c8c2f9742d62ba258cc378bd2d4720f0c431c"
- integrity sha512-k0OC/b14rNzMLDOE6QMBCjDRm3fQOHAL8Ldc9bxEWvMo4Ty9RY6rWmGetNTWhPo+/+FNd1lsQYRd0/1OSix36A==
-
-"@rollup/rollup-darwin-arm64@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.19.2.tgz#8eac8682a34a705bb6a57eb3e739fd6bbedfabed"
- integrity sha512-IIARRgWCNWMTeQH+kr/gFTHJccKzwEaI0YSvtqkEBPj7AshElFq89TyreKNFAGh5frLfDCbodnq+Ye3dqGKPBw==
-
-"@rollup/rollup-darwin-x64@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.19.2.tgz#70a9953fc624bd7f645901f4250f6b5807ac7e92"
- integrity sha512-52udDMFDv54BTAdnw+KXNF45QCvcJOcYGl3vQkp4vARyrcdI/cXH8VXTEv/8QWfd6Fru8QQuw1b2uNersXOL0g==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.19.2.tgz#8f6c4ff4c4972413ff94345080380d4e3caa3c69"
- integrity sha512-r+SI2t8srMPYZeoa1w0o/AfoVt9akI1ihgazGYPQGRilVAkuzMGiTtexNZkrPkQsyFrvqq/ni8f3zOnHw4hUbA==
-
-"@rollup/rollup-linux-arm-musleabihf@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.19.2.tgz#5d3c0fe5ea5ddf2feb511b3cb031df17eaa7e33d"
- integrity sha512-+tYiL4QVjtI3KliKBGtUU7yhw0GMcJJuB9mLTCEauHEsqfk49gtUBXGtGP3h1LW8MbaTY6rSFIQV1XOBps1gBA==
-
-"@rollup/rollup-linux-arm64-gnu@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.19.2.tgz#b7f104388b2f5624d9f8adfff10ba59af8ab8ed1"
- integrity sha512-OR5DcvZiYN75mXDNQQxlQPTv4D+uNCUsmSCSY2FolLf9W5I4DSoJyg7z9Ea3TjKfhPSGgMJiey1aWvlWuBzMtg==
-
-"@rollup/rollup-linux-arm64-musl@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.19.2.tgz#6d5ca6d3904309bec285ea5202d589cebb93dee4"
- integrity sha512-Hw3jSfWdUSauEYFBSFIte6I8m6jOj+3vifLg8EU3lreWulAUpch4JBjDMtlKosrBzkr0kwKgL9iCfjA8L3geoA==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.19.2.tgz#4df9be1396ea9eb0ca99fd0f2e858008d7f063e3"
- integrity sha512-rhjvoPBhBwVnJRq/+hi2Q3EMiVF538/o9dBuj9TVLclo9DuONqt5xfWSaE6MYiFKpo/lFPJ/iSI72rYWw5Hc7w==
-
-"@rollup/rollup-linux-riscv64-gnu@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.19.2.tgz#80d63c5562915a2f8616a04251fcaee0218112b0"
- integrity sha512-EAz6vjPwHHs2qOCnpQkw4xs14XJq84I81sDRGPEjKPFVPBw7fwvtwhVjcZR6SLydCv8zNK8YGFblKWd/vRmP8g==
-
-"@rollup/rollup-linux-s390x-gnu@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.19.2.tgz#ef62e9bc5cc3b84fcfe96ec0a42d1989691217b3"
- integrity sha512-IJSUX1xb8k/zN9j2I7B5Re6B0NNJDJ1+soezjNojhT8DEVeDNptq2jgycCOpRhyGj0+xBn7Cq+PK7Q+nd2hxLA==
-
-"@rollup/rollup-linux-x64-gnu@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.19.2.tgz#6a275282a0080fee98ddd9fda0de23c4c6bafd48"
- integrity sha512-OgaToJ8jSxTpgGkZSkwKE+JQGihdcaqnyHEFOSAU45utQ+yLruE1dkonB2SDI8t375wOKgNn8pQvaWY9kPzxDQ==
-
-"@rollup/rollup-linux-x64-musl@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.19.2.tgz#64f0c704107e6b45b26dd8c2e1ff64246e4a1251"
- integrity sha512-5V3mPpWkB066XZZBgSd1lwozBk7tmOkKtquyCJ6T4LN3mzKENXyBwWNQn8d0Ci81hvlBw5RoFgleVpL6aScLYg==
-
-"@rollup/rollup-win32-arm64-msvc@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.19.2.tgz#bada17b0c5017ff58d0feba401c43ff5a646c693"
- integrity sha512-ayVstadfLeeXI9zUPiKRVT8qF55hm7hKa+0N1V6Vj+OTNFfKSoUxyZvzVvgtBxqSb5URQ8sK6fhwxr9/MLmxdA==
-
-"@rollup/rollup-win32-ia32-msvc@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.19.2.tgz#a716d862f6ac39d88bdb825e27f63aeb0387cd66"
- integrity sha512-Mda7iG4fOLHNsPqjWSjANvNZYoW034yxgrndof0DwCy0D3FvTjeNo+HGE6oGWgvcLZNLlcp0hLEFcRs+UGsMLg==
-
-"@rollup/rollup-win32-x64-msvc@4.19.2":
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.19.2.tgz#d67206c5f2e4b2832ce360bbbde194e96d16dc51"
- integrity sha512-DPi0ubYhSow/00YqmG1jWm3qt1F8aXziHc/UNy8bo9cpCacqhuWu+iSq/fp2SyEQK7iYTZ60fBU9cat3MXTjIQ==
+"@rollup/rollup-android-arm-eabi@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.20.0.tgz#c3f5660f67030c493a981ac1d34ee9dfe1d8ec0f"
+ integrity sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==
+
+"@rollup/rollup-android-arm64@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.20.0.tgz#64161f0b67050023a3859e723570af54a82cff5c"
+ integrity sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==
+
+"@rollup/rollup-darwin-arm64@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.20.0.tgz#25f3d57b1da433097cfebc89341b355901615763"
+ integrity sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==
+
+"@rollup/rollup-darwin-x64@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.20.0.tgz#d8ddaffb636cc2f59222c50316e27771e48966df"
+ integrity sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.20.0.tgz#41bd4fcffa20fb84f3dbac6c5071638f46151885"
+ integrity sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==
+
+"@rollup/rollup-linux-arm-musleabihf@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.20.0.tgz#842077c5113a747eb5686f19f2f18c33ecc0acc8"
+ integrity sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==
+
+"@rollup/rollup-linux-arm64-gnu@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.20.0.tgz#65d1d5b6778848f55b7823958044bf3e8737e5b7"
+ integrity sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==
+
+"@rollup/rollup-linux-arm64-musl@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.20.0.tgz#50eef7d6e24d0fe3332200bb666cad2be8afcf86"
+ integrity sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.20.0.tgz#8837e858f53c84607f05ad0602943e96d104c6b4"
+ integrity sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==
+
+"@rollup/rollup-linux-riscv64-gnu@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.20.0.tgz#c894ade2300caa447757ddf45787cca246e816a4"
+ integrity sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==
+
+"@rollup/rollup-linux-s390x-gnu@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.20.0.tgz#5841e5390d4c82dd5cdf7b2c95a830e3c2f47dd3"
+ integrity sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==
+
+"@rollup/rollup-linux-x64-gnu@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.20.0.tgz#cc1f26398bf777807a99226dc13f47eb0f6c720d"
+ integrity sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==
+
+"@rollup/rollup-linux-x64-musl@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.20.0.tgz#1507465d9056e0502a590d4c1a00b4d7b1fda370"
+ integrity sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==
+
+"@rollup/rollup-win32-arm64-msvc@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.20.0.tgz#86a221f01a2c248104dd0defb4da119f2a73642e"
+ integrity sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==
+
+"@rollup/rollup-win32-ia32-msvc@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.20.0.tgz#8bc8f77e02760aa664694b4286d6fbea7f1331c5"
+ integrity sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==
+
+"@rollup/rollup-win32-x64-msvc@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.20.0.tgz#601fffee719a1e8447f908aca97864eec23b2784"
+ integrity sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==
"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0":
version "1.0.5"
@@ -5200,28 +5200,28 @@ rollup-plugin-copy@^3.5.0:
is-plain-object "^3.0.0"
rollup@^4.13.0, rollup@^4.18.1:
- version "4.19.2"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.19.2.tgz#4985cd2028965157e8d674a70e49f33aca9038eb"
- integrity sha512-6/jgnN1svF9PjNYJ4ya3l+cqutg49vOZ4rVgsDKxdl+5gpGPnByFXWGyfH9YGx9i3nfBwSu1Iyu6vGwFFA0BdQ==
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.20.0.tgz#f9d602161d29e178f0bf1d9f35f0a26f83939492"
+ integrity sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==
dependencies:
"@types/estree" "1.0.5"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.19.2"
- "@rollup/rollup-android-arm64" "4.19.2"
- "@rollup/rollup-darwin-arm64" "4.19.2"
- "@rollup/rollup-darwin-x64" "4.19.2"
- "@rollup/rollup-linux-arm-gnueabihf" "4.19.2"
- "@rollup/rollup-linux-arm-musleabihf" "4.19.2"
- "@rollup/rollup-linux-arm64-gnu" "4.19.2"
- "@rollup/rollup-linux-arm64-musl" "4.19.2"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.19.2"
- "@rollup/rollup-linux-riscv64-gnu" "4.19.2"
- "@rollup/rollup-linux-s390x-gnu" "4.19.2"
- "@rollup/rollup-linux-x64-gnu" "4.19.2"
- "@rollup/rollup-linux-x64-musl" "4.19.2"
- "@rollup/rollup-win32-arm64-msvc" "4.19.2"
- "@rollup/rollup-win32-ia32-msvc" "4.19.2"
- "@rollup/rollup-win32-x64-msvc" "4.19.2"
+ "@rollup/rollup-android-arm-eabi" "4.20.0"
+ "@rollup/rollup-android-arm64" "4.20.0"
+ "@rollup/rollup-darwin-arm64" "4.20.0"
+ "@rollup/rollup-darwin-x64" "4.20.0"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.20.0"
+ "@rollup/rollup-linux-arm-musleabihf" "4.20.0"
+ "@rollup/rollup-linux-arm64-gnu" "4.20.0"
+ "@rollup/rollup-linux-arm64-musl" "4.20.0"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.20.0"
+ "@rollup/rollup-linux-riscv64-gnu" "4.20.0"
+ "@rollup/rollup-linux-s390x-gnu" "4.20.0"
+ "@rollup/rollup-linux-x64-gnu" "4.20.0"
+ "@rollup/rollup-linux-x64-musl" "4.20.0"
+ "@rollup/rollup-win32-arm64-msvc" "4.20.0"
+ "@rollup/rollup-win32-ia32-msvc" "4.20.0"
+ "@rollup/rollup-win32-x64-msvc" "4.20.0"
fsevents "~2.3.2"
run-parallel@^1.1.9:
From 09088fdd260f2ab850252e01688080c659e8ee5f Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 6 Aug 2024 21:26:31 +0000
Subject: [PATCH 22/67] Bump vue from 3.4.35 to 3.4.36
Bumps [vue](https://github.com/vuejs/core) from 3.4.35 to 3.4.36.
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.4.35...v3.4.36)
---
updated-dependencies:
- dependency-name: vue
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 134 +++++++++++++++++++++++++++---------------------------
1 file changed, 67 insertions(+), 67 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a1147329f..be8365a3b 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1943,85 +1943,85 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.2.tgz#f11091e0130eca6c1ca8cfb85ee71ea53b255d31"
integrity sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==
-"@vue/compiler-core@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.35.tgz#421922a75ecabf1aabc6b7a2ce98b5acb2fc2d65"
- integrity sha512-gKp0zGoLnMYtw4uS/SJRRO7rsVggLjvot3mcctlMXunYNsX+aRJDqqw/lV5/gHK91nvaAAlWFgdVl020AW1Prg==
+"@vue/compiler-core@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.36.tgz#4e28dfcbaa8a85e135f7a94c44372b6d52329e42"
+ integrity sha512-qBkndgpwFKdupmOPoiS10i7oFdN7a+4UNDlezD0GlQ1kuA1pNrscg9g12HnB5E8hrWSuEftRsbJhL1HI2zpJhg==
dependencies:
"@babel/parser" "^7.24.7"
- "@vue/shared" "3.4.35"
- entities "^4.5.0"
+ "@vue/shared" "3.4.36"
+ entities "^5.0.0"
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-dom@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.35.tgz#cd0881f1b4ed655cd96367bce4845f87023a5a2d"
- integrity sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==
+"@vue/compiler-dom@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.36.tgz#32f5f65d1fb242211df2ddc65a336779cd8b974c"
+ integrity sha512-eEIjy4GwwZTFon/Y+WO8tRRNGqylaRlA79T1RLhUpkOzJ7EtZkkb8MurNfkqY6x6Qiu0R7ESspEF7GkPR/4yYg==
dependencies:
- "@vue/compiler-core" "3.4.35"
- "@vue/shared" "3.4.35"
+ "@vue/compiler-core" "3.4.36"
+ "@vue/shared" "3.4.36"
-"@vue/compiler-sfc@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.35.tgz#16f87dd3bdab64cef14d3a6fcf53f8673e404071"
- integrity sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==
+"@vue/compiler-sfc@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.36.tgz#887809183a273dc0ef8337d5e84ef6a781727ccc"
+ integrity sha512-rhuHu7qztt/rNH90dXPTzhB7hLQT2OC4s4GrPVqmzVgPY4XBlfWmcWzn4bIPEWNImt0CjO7kfHAf/1UXOtx3vw==
dependencies:
"@babel/parser" "^7.24.7"
- "@vue/compiler-core" "3.4.35"
- "@vue/compiler-dom" "3.4.35"
- "@vue/compiler-ssr" "3.4.35"
- "@vue/shared" "3.4.35"
+ "@vue/compiler-core" "3.4.36"
+ "@vue/compiler-dom" "3.4.36"
+ "@vue/compiler-ssr" "3.4.36"
+ "@vue/shared" "3.4.36"
estree-walker "^2.0.2"
magic-string "^0.30.10"
postcss "^8.4.40"
source-map-js "^1.2.0"
-"@vue/compiler-ssr@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.35.tgz#0774c9a0afed74d71615209904b38f3fa9711adb"
- integrity sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==
+"@vue/compiler-ssr@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.36.tgz#5881f9303ad6a4fdf04fb4238ebb483caf040707"
+ integrity sha512-Wt1zyheF0zVvRJyhY74uxQbnkXV2Le/JPOrAxooR4rFYKC7cFr+cRqW6RU3cM/bsTy7sdZ83IDuy/gLPSfPGng==
dependencies:
- "@vue/compiler-dom" "3.4.35"
- "@vue/shared" "3.4.35"
+ "@vue/compiler-dom" "3.4.36"
+ "@vue/shared" "3.4.36"
-"@vue/reactivity@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.35.tgz#dfbb4f5371da1290ac86e3313d0e9a68bb0ab38d"
- integrity sha512-Ggtz7ZZHakriKioveJtPlStYardwQH6VCs9V13/4qjHSQb/teE30LVJNrbBVs4+aoYGtTQKJbTe4CWGxVZrvEw==
+"@vue/reactivity@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.36.tgz#f0797308b1639db7f303e91fdd20577ad538a817"
+ integrity sha512-wN1aoCwSoqrt1yt8wO0gc13QaC+Vk1o6AoSt584YHNnz6TGDhh1NCMUYgAnvp4HEIkLdGsaC1bvu/P+wpoDEXw==
dependencies:
- "@vue/shared" "3.4.35"
+ "@vue/shared" "3.4.36"
-"@vue/runtime-core@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.35.tgz#c036013a7b1bbe0d14a6b76eb4355dae6690d2e6"
- integrity sha512-D+BAjFoWwT5wtITpSxwqfWZiBClhBbR+bm0VQlWYFOadUUXFo+5wbe9ErXhLvwguPiLZdEF13QAWi2vP3ZD5tA==
+"@vue/runtime-core@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.36.tgz#7d956671800b2567deebf4a5f92cb476404dfa94"
+ integrity sha512-9+TR14LAVEerZWLOm/N/sG2DVYhrH2bKgFrbH/FVt/Q8Jdw4OtdcGMRC6Tx8VAo0DA1eqAqrZaX0fbOaOxxZ4A==
dependencies:
- "@vue/reactivity" "3.4.35"
- "@vue/shared" "3.4.35"
+ "@vue/reactivity" "3.4.36"
+ "@vue/shared" "3.4.36"
-"@vue/runtime-dom@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.35.tgz#74254c7c327163d692e1d7d2b6d9e92463744e90"
- integrity sha512-yGOlbos+MVhlS5NWBF2HDNgblG8e2MY3+GigHEyR/dREAluvI5tuUUgie3/9XeqhPE4LF0i2wjlduh5thnfOqw==
+"@vue/runtime-dom@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.36.tgz#e4eeeba2cb2b9645de45eebd023939a35fff5e30"
+ integrity sha512-2Qe2fKkLxgZBVvHrG0QMNLL4bsx7Ae88pyXebY2WnQYABpOnGYvA+axMbcF9QwM4yxnsv+aELbC0eiNVns7mGw==
dependencies:
- "@vue/reactivity" "3.4.35"
- "@vue/runtime-core" "3.4.35"
- "@vue/shared" "3.4.35"
+ "@vue/reactivity" "3.4.36"
+ "@vue/runtime-core" "3.4.36"
+ "@vue/shared" "3.4.36"
csstype "^3.1.3"
-"@vue/server-renderer@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.35.tgz#188e94e82d8e729ba7b40dd91d10678b85f77c6b"
- integrity sha512-iZ0e/u9mRE4T8tNhlo0tbA+gzVkgv8r5BX6s1kRbOZqfpq14qoIvCZ5gIgraOmYkMYrSEZgkkojFPr+Nyq/Mnw==
+"@vue/server-renderer@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.36.tgz#352138e6a31a5eeabcbb75e66f6919f607f8c870"
+ integrity sha512-2XW90Rq8+Y7S1EIsAuubZVLm0gCU8HYb5mRAruFdwfC3XSOU5/YKePz29csFzsch8hXaY5UHh7ZMddmi1XTJEA==
dependencies:
- "@vue/compiler-ssr" "3.4.35"
- "@vue/shared" "3.4.35"
+ "@vue/compiler-ssr" "3.4.36"
+ "@vue/shared" "3.4.36"
-"@vue/shared@3.4.35":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.35.tgz#5432f4b1c79e763fcf78cc830faf59ff01248968"
- integrity sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==
+"@vue/shared@3.4.36":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.36.tgz#7551f41684966acb6a307152b49a8308e7f69203"
+ integrity sha512-fdPLStwl1sDfYuUftBaUVn2pIrVFDASYerZSrlBvVBfylObPA1gtcWJHy5Ox8jLEJ524zBibss488Q3SZtU1uA==
acorn-jsx@^5.3.2:
version "5.3.2"
@@ -3072,10 +3072,10 @@ enquirer@^2.3.6:
ansi-colors "^4.1.1"
strip-ansi "^6.0.1"
-entities@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
- integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
+entities@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-5.0.0.tgz#b2ab51fe40d995817979ec79dd621154c3c0f62b"
+ integrity sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==
env-paths@^2.2.1:
version "2.2.1"
@@ -5996,15 +5996,15 @@ vscode-uri@^3.0.8:
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
vue@^3.4.31:
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.35.tgz#9ad23525919eece40153fdf8675d07ddd879eb33"
- integrity sha512-+fl/GLmI4GPileHftVlCdB7fUL4aziPcqTudpTGXCT8s+iZWuOCeNEB5haX6Uz2IpRrbEXOgIFbe+XciCuGbNQ==
- dependencies:
- "@vue/compiler-dom" "3.4.35"
- "@vue/compiler-sfc" "3.4.35"
- "@vue/runtime-dom" "3.4.35"
- "@vue/server-renderer" "3.4.35"
- "@vue/shared" "3.4.35"
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.36.tgz#b2d9af110c8e9afdf08f4eec0d9196949877447c"
+ integrity sha512-mIFvbLgjODfx3Iy1SrxOsiPpDb8Bo3EU+87ioimOZzZTOp15IEdAels70IjBOLO3ZFlLW5AhdwY4dWbXVQKYow==
+ dependencies:
+ "@vue/compiler-dom" "3.4.36"
+ "@vue/compiler-sfc" "3.4.36"
+ "@vue/runtime-dom" "3.4.36"
+ "@vue/server-renderer" "3.4.36"
+ "@vue/shared" "3.4.36"
which-boxed-primitive@^1.0.2:
version "1.0.2"
From ce2dcf5d1c0ec4da643986e1ba87d2e824dc2b1a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 7 Aug 2024 22:00:44 +0000
Subject: [PATCH 23/67] Bump vite from 5.3.5 to 5.4.0
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.3.5 to 5.4.0.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/create-vite@5.4.0/packages/vite)
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 711fb4bcf..df343f176 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4959,7 +4959,7 @@ postcss-value-parser@^4.2.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@^8.4.39, postcss@^8.4.40:
+postcss@^8.4.40:
version "8.4.40"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.40.tgz#eb81f2a4dd7668ed869a6db25999e02e9ad909d8"
integrity sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==
@@ -5975,12 +5975,12 @@ verror@1.10.0:
extsprintf "^1.2.0"
vite@^5.3.3:
- version "5.3.5"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.3.5.tgz#b847f846fb2b6cb6f6f4ed50a830186138cb83d8"
- integrity sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==
+ version "5.4.0"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.0.tgz#11dca8a961369ba8b5cae42d068c7ad684d5370f"
+ integrity sha512-5xokfMX0PIiwCMCMb9ZJcMyh5wbBun0zUzKib+L65vAZ8GY9ePZMXxFrHbr/Kyll2+LSCY7xtERPpxkBDKngwg==
dependencies:
esbuild "^0.21.3"
- postcss "^8.4.39"
+ postcss "^8.4.40"
rollup "^4.13.0"
optionalDependencies:
fsevents "~2.3.3"
From 844aa5d15d5f1e53c98555ae3d543503bd8a5d0c Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 8 Aug 2024 21:13:22 +0000
Subject: [PATCH 24/67] Bump vue from 3.4.36 to 3.4.37
Bumps [vue](https://github.com/vuejs/core) from 3.4.36 to 3.4.37.
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.4.36...v3.4.37)
---
updated-dependencies:
- dependency-name: vue
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 124 +++++++++++++++++++++++++++---------------------------
1 file changed, 62 insertions(+), 62 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 711fb4bcf..f170a5393 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1943,85 +1943,85 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.2.tgz#f11091e0130eca6c1ca8cfb85ee71ea53b255d31"
integrity sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==
-"@vue/compiler-core@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.36.tgz#4e28dfcbaa8a85e135f7a94c44372b6d52329e42"
- integrity sha512-qBkndgpwFKdupmOPoiS10i7oFdN7a+4UNDlezD0GlQ1kuA1pNrscg9g12HnB5E8hrWSuEftRsbJhL1HI2zpJhg==
+"@vue/compiler-core@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.37.tgz#55db3900e09424c65c39111a05a3c6e698f371e3"
+ integrity sha512-ZDDT/KiLKuCRXyzWecNzC5vTcubGz4LECAtfGPENpo0nrmqJHwuWtRLxk/Sb9RAKtR9iFflFycbkjkY+W/PZUQ==
dependencies:
"@babel/parser" "^7.24.7"
- "@vue/shared" "3.4.36"
+ "@vue/shared" "3.4.37"
entities "^5.0.0"
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-dom@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.36.tgz#32f5f65d1fb242211df2ddc65a336779cd8b974c"
- integrity sha512-eEIjy4GwwZTFon/Y+WO8tRRNGqylaRlA79T1RLhUpkOzJ7EtZkkb8MurNfkqY6x6Qiu0R7ESspEF7GkPR/4yYg==
+"@vue/compiler-dom@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.37.tgz#a1fcf79e287cb828545082ff1afa8630480a3044"
+ integrity sha512-rIiSmL3YrntvgYV84rekAtU/xfogMUJIclUMeIKEtVBFngOL3IeZHhsH3UaFEgB5iFGpj6IW+8YuM/2Up+vVag==
dependencies:
- "@vue/compiler-core" "3.4.36"
- "@vue/shared" "3.4.36"
+ "@vue/compiler-core" "3.4.37"
+ "@vue/shared" "3.4.37"
-"@vue/compiler-sfc@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.36.tgz#887809183a273dc0ef8337d5e84ef6a781727ccc"
- integrity sha512-rhuHu7qztt/rNH90dXPTzhB7hLQT2OC4s4GrPVqmzVgPY4XBlfWmcWzn4bIPEWNImt0CjO7kfHAf/1UXOtx3vw==
+"@vue/compiler-sfc@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.37.tgz#8afaf1a86cb849422c765d4369ba1e85fffe0234"
+ integrity sha512-vCfetdas40Wk9aK/WWf8XcVESffsbNkBQwS5t13Y/PcfqKfIwJX2gF+82th6dOpnpbptNMlMjAny80li7TaCIg==
dependencies:
"@babel/parser" "^7.24.7"
- "@vue/compiler-core" "3.4.36"
- "@vue/compiler-dom" "3.4.36"
- "@vue/compiler-ssr" "3.4.36"
- "@vue/shared" "3.4.36"
+ "@vue/compiler-core" "3.4.37"
+ "@vue/compiler-dom" "3.4.37"
+ "@vue/compiler-ssr" "3.4.37"
+ "@vue/shared" "3.4.37"
estree-walker "^2.0.2"
magic-string "^0.30.10"
postcss "^8.4.40"
source-map-js "^1.2.0"
-"@vue/compiler-ssr@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.36.tgz#5881f9303ad6a4fdf04fb4238ebb483caf040707"
- integrity sha512-Wt1zyheF0zVvRJyhY74uxQbnkXV2Le/JPOrAxooR4rFYKC7cFr+cRqW6RU3cM/bsTy7sdZ83IDuy/gLPSfPGng==
+"@vue/compiler-ssr@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.37.tgz#b75e1c76c3184f86fa9f0ba4d61d13bc6afcbf8a"
+ integrity sha512-TyAgYBWrHlFrt4qpdACh8e9Ms6C/AZQ6A6xLJaWrCL8GCX5DxMzxyeFAEMfU/VFr4tylHm+a2NpfJpcd7+20XA==
dependencies:
- "@vue/compiler-dom" "3.4.36"
- "@vue/shared" "3.4.36"
+ "@vue/compiler-dom" "3.4.37"
+ "@vue/shared" "3.4.37"
-"@vue/reactivity@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.36.tgz#f0797308b1639db7f303e91fdd20577ad538a817"
- integrity sha512-wN1aoCwSoqrt1yt8wO0gc13QaC+Vk1o6AoSt584YHNnz6TGDhh1NCMUYgAnvp4HEIkLdGsaC1bvu/P+wpoDEXw==
+"@vue/reactivity@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.37.tgz#5a199563eaab51ed9f94ddf0a82f9179bcc01676"
+ integrity sha512-UmdKXGx0BZ5kkxPqQr3PK3tElz6adTey4307NzZ3whZu19i5VavYal7u2FfOmAzlcDVgE8+X0HZ2LxLb/jgbYw==
dependencies:
- "@vue/shared" "3.4.36"
+ "@vue/shared" "3.4.37"
-"@vue/runtime-core@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.36.tgz#7d956671800b2567deebf4a5f92cb476404dfa94"
- integrity sha512-9+TR14LAVEerZWLOm/N/sG2DVYhrH2bKgFrbH/FVt/Q8Jdw4OtdcGMRC6Tx8VAo0DA1eqAqrZaX0fbOaOxxZ4A==
+"@vue/runtime-core@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.37.tgz#3fe734a666db7842bea4185a13f7697a2102b719"
+ integrity sha512-MNjrVoLV/sirHZoD7QAilU1Ifs7m/KJv4/84QVbE6nyAZGQNVOa1HGxaOzp9YqCG+GpLt1hNDC4RbH+KtanV7w==
dependencies:
- "@vue/reactivity" "3.4.36"
- "@vue/shared" "3.4.36"
+ "@vue/reactivity" "3.4.37"
+ "@vue/shared" "3.4.37"
-"@vue/runtime-dom@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.36.tgz#e4eeeba2cb2b9645de45eebd023939a35fff5e30"
- integrity sha512-2Qe2fKkLxgZBVvHrG0QMNLL4bsx7Ae88pyXebY2WnQYABpOnGYvA+axMbcF9QwM4yxnsv+aELbC0eiNVns7mGw==
+"@vue/runtime-dom@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.37.tgz#219f84577027103de6ddc71351d8237c7c16adac"
+ integrity sha512-Mg2EwgGZqtwKrqdL/FKMF2NEaOHuH+Ks9TQn3DHKyX//hQTYOun+7Tqp1eo0P4Ds+SjltZshOSRq6VsU0baaNg==
dependencies:
- "@vue/reactivity" "3.4.36"
- "@vue/runtime-core" "3.4.36"
- "@vue/shared" "3.4.36"
+ "@vue/reactivity" "3.4.37"
+ "@vue/runtime-core" "3.4.37"
+ "@vue/shared" "3.4.37"
csstype "^3.1.3"
-"@vue/server-renderer@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.36.tgz#352138e6a31a5eeabcbb75e66f6919f607f8c870"
- integrity sha512-2XW90Rq8+Y7S1EIsAuubZVLm0gCU8HYb5mRAruFdwfC3XSOU5/YKePz29csFzsch8hXaY5UHh7ZMddmi1XTJEA==
+"@vue/server-renderer@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.37.tgz#d341425bb5395a3f6ed70572ea5c3edefab92f28"
+ integrity sha512-jZ5FAHDR2KBq2FsRUJW6GKDOAG9lUTX8aBEGq4Vf6B/35I9fPce66BornuwmqmKgfiSlecwuOb6oeoamYMohkg==
dependencies:
- "@vue/compiler-ssr" "3.4.36"
- "@vue/shared" "3.4.36"
+ "@vue/compiler-ssr" "3.4.37"
+ "@vue/shared" "3.4.37"
-"@vue/shared@3.4.36":
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.36.tgz#7551f41684966acb6a307152b49a8308e7f69203"
- integrity sha512-fdPLStwl1sDfYuUftBaUVn2pIrVFDASYerZSrlBvVBfylObPA1gtcWJHy5Ox8jLEJ524zBibss488Q3SZtU1uA==
+"@vue/shared@3.4.37":
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.37.tgz#4f4c08a2e73da512a77b47165cf59ffbc1b5ade8"
+ integrity sha512-nIh8P2fc3DflG8+5Uw8PT/1i17ccFn0xxN/5oE9RfV5SVnd7G0XEFRwakrnNFE/jlS95fpGXDVG5zDETS26nmg==
acorn-jsx@^5.3.2:
version "5.3.2"
@@ -5996,15 +5996,15 @@ vscode-uri@^3.0.8:
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
vue@^3.4.31:
- version "3.4.36"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.36.tgz#b2d9af110c8e9afdf08f4eec0d9196949877447c"
- integrity sha512-mIFvbLgjODfx3Iy1SrxOsiPpDb8Bo3EU+87ioimOZzZTOp15IEdAels70IjBOLO3ZFlLW5AhdwY4dWbXVQKYow==
- dependencies:
- "@vue/compiler-dom" "3.4.36"
- "@vue/compiler-sfc" "3.4.36"
- "@vue/runtime-dom" "3.4.36"
- "@vue/server-renderer" "3.4.36"
- "@vue/shared" "3.4.36"
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.37.tgz#64ce0eeb8de16a29fb74e504777ee8c0c1cf229e"
+ integrity sha512-3vXvNfkKTBsSJ7JP+LyR7GBuwQuckbWvuwAid3xbqK9ppsKt/DUvfqgZ48fgOLEfpy1IacL5f8QhUVl77RaI7A==
+ dependencies:
+ "@vue/compiler-dom" "3.4.37"
+ "@vue/compiler-sfc" "3.4.37"
+ "@vue/runtime-dom" "3.4.37"
+ "@vue/server-renderer" "3.4.37"
+ "@vue/shared" "3.4.37"
which-boxed-primitive@^1.0.2:
version "1.0.2"
From 0ff25be75fb52dfcd7a45f045966fc1b55e3b8d8 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 12 Aug 2024 21:45:03 +0000
Subject: [PATCH 25/67] Bump cspell from 8.13.1 to 8.13.3
Bumps [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) from 8.13.1 to 8.13.3.
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.13.3/packages/cspell)
---
updated-dependencies:
- dependency-name: cspell
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 292 +++++++++++++++++++++++++++---------------------------
1 file changed, 146 insertions(+), 146 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 711fb4bcf..8b829177c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1031,15 +1031,15 @@
resolved "https://registry.yarnpkg.com/@colors%2fcolors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
-"@cspell/cspell-bundled-dicts@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.13.1.tgz#02ae096ff69841f9f8570ffab2b7a9584d9e551d"
- integrity sha512-ylAwnIdxBMJ9v6BHpFAQFZM+5zbybLtqVQJG7zQePts4e0/Qr2xjYFbC3F+fovZqyXPIx24BR+S6gFJNO1OdAw==
+"@cspell/cspell-bundled-dicts@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.13.3.tgz#7b214ae6eb6442ef6391765f98c1b9294e3c455e"
+ integrity sha512-OfCxUBMyayxKyeDaUZG3LQpiyH8MFUbg9nbIZCGh2x8U6N0fHaP9uR6R+gPzdi/bJp32Kr+RC/Yebojd+AQCGA==
dependencies:
"@cspell/dict-ada" "^4.0.2"
"@cspell/dict-aws" "^4.0.3"
"@cspell/dict-bash" "^4.1.3"
- "@cspell/dict-companies" "^3.1.3"
+ "@cspell/dict-companies" "^3.1.4"
"@cspell/dict-cpp" "^5.1.12"
"@cspell/dict-cryptocurrencies" "^5.0.0"
"@cspell/dict-csharp" "^4.0.2"
@@ -1049,7 +1049,7 @@
"@cspell/dict-docker" "^1.1.7"
"@cspell/dict-dotnet" "^5.0.2"
"@cspell/dict-elixir" "^4.0.3"
- "@cspell/dict-en-common-misspellings" "^2.0.3"
+ "@cspell/dict-en-common-misspellings" "^2.0.4"
"@cspell/dict-en-gb" "1.1.33"
"@cspell/dict-en_us" "^4.3.23"
"@cspell/dict-filetypes" "^3.0.4"
@@ -1076,47 +1076,47 @@
"@cspell/dict-php" "^4.0.8"
"@cspell/dict-powershell" "^5.0.5"
"@cspell/dict-public-licenses" "^2.0.7"
- "@cspell/dict-python" "^4.2.3"
+ "@cspell/dict-python" "^4.2.4"
"@cspell/dict-r" "^2.0.1"
"@cspell/dict-ruby" "^5.0.2"
"@cspell/dict-rust" "^4.0.5"
"@cspell/dict-scala" "^5.0.3"
- "@cspell/dict-software-terms" "^4.0.3"
- "@cspell/dict-sql" "^2.1.3"
+ "@cspell/dict-software-terms" "^4.0.6"
+ "@cspell/dict-sql" "^2.1.5"
"@cspell/dict-svelte" "^1.0.2"
"@cspell/dict-swift" "^2.0.1"
"@cspell/dict-terraform" "^1.0.0"
"@cspell/dict-typescript" "^3.1.6"
"@cspell/dict-vue" "^3.0.0"
-"@cspell/cspell-json-reporter@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.13.1.tgz#ea37676d20763027d6be2d7e74c910fed3dfcfc2"
- integrity sha512-vYZTBRkYjpNBifGNbYQsgIXesDEdUa9QAwllDcLZGKbhh5mY/C1ygPnAVpYDYiJNt1WCeIqW286DUyjRjkmHeA==
+"@cspell/cspell-json-reporter@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.13.3.tgz#dbce6f3b1104ba1dca15c645f2a005a228104ef0"
+ integrity sha512-QrHxWkm0cfD+rTjFOxm5lpE4+wBANDzMIM8NOeQC6v8Dc1L8PUkm6hF6CsEv2tKmuwvdVr+jy6GilDMkPXalCg==
dependencies:
- "@cspell/cspell-types" "8.13.1"
+ "@cspell/cspell-types" "8.13.3"
-"@cspell/cspell-pipe@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.13.1.tgz#5aa705e6722a1009a552c11bb9ece25752f9bb22"
- integrity sha512-acLWTQv3yWfeWXMds/cfQKZapslOrLHVL4VDp4rFyL/EnfgaCr7Ew9hQ7zAIARY3r/n0dByqWbOt2HKthdhx/g==
+"@cspell/cspell-pipe@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.13.3.tgz#eca94cd30a97fcea6abffd6189db916505acbce0"
+ integrity sha512-6a9Zd+fDltgXoJ0fosWqEMx0UdXBXZ7iakhslMNPRmv7GhVAoHBoIXzMVilOE4kYT2Mh/9NM/QW/NbNEpneZIQ==
-"@cspell/cspell-resolver@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.13.1.tgz#3da1bf1b19a40cb65efeb98031cdc40187732dd8"
- integrity sha512-EGdb7KLYCklV3sLxf/895b7s6sExh8DCHZFpDos2hjKwMt+F4ynsu1+ceybQtqoUF/MsyLoJXrrmPvV2uGVmUQ==
+"@cspell/cspell-resolver@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.13.3.tgz#423c96b7834aa33b8f487412e82083652d05406a"
+ integrity sha512-vlwtMTEWsPPtWfktzT75eGQ0n+0M+9kN+89eSvUUYdCfvY9XAS6z+bTmhS2ULJgntgWtX6gUjABQK0PYYVedOg==
dependencies:
global-directory "^4.0.1"
-"@cspell/cspell-service-bus@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.13.1.tgz#e9570c2e85ea75b25498ccf91e0067ae31580a6f"
- integrity sha512-oLFJfxuB1rwGXn3eD5qSF9nf0lHu6YjO0JcrjWhAZQ0r3AsO97gsX50wwCFCw6szVU3rd1cTUktW0KYEZUY6dA==
+"@cspell/cspell-service-bus@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.13.3.tgz#058121ff78c25afc7bc6218233e6b15e660dbfd5"
+ integrity sha512-mFkeWXwGQSDxRiN6Kez77GaMNGNgG7T6o9UE42jyXEgf/bLJTpefbUy4fY5pU3p2mA0eoMzmnJX8l+TC5YJpbA==
-"@cspell/cspell-types@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.13.1.tgz#ca5e689d29542f75a85a26450fe478f58b9600ff"
- integrity sha512-9dJdmyXLXJVesCJa/DWgwKsEC9p2RRFc6KORcLhNvtm1tE9TvCXiu5jV47sOmYXd6Hwan8IurBXXTz82CLVjPQ==
+"@cspell/cspell-types@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.13.3.tgz#180fcebfd1ca21cf09986470de0898b8c7893545"
+ integrity sha512-lA5GbhLOL6FlKCWNMbooRFgNGfTsM6NJnHz60+EEN7XD9OgpFc7w+MBcK4aHsVCxcrIvnejIc8xQDqPnrdmN3w==
"@cspell/dict-ada@^4.0.2":
version "4.0.2"
@@ -1133,10 +1133,10 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-bash/-/dict-bash-4.1.3.tgz#25fba40825ac10083676ab2c777e471c3f71b36e"
integrity sha512-tOdI3QVJDbQSwPjUkOiQFhYcu2eedmX/PtEpVWg0aFps/r6AyjUQINtTgpqMYnYuq8O1QUIQqnpx21aovcgZCw==
-"@cspell/dict-companies@^3.1.3":
- version "3.1.3"
- resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-3.1.3.tgz#ff10372b2bd1b12b239f62a76d3bed50f2e61a19"
- integrity sha512-qaAmfKtQLA7Sbe9zfFVpcwyG92cx6+EiWIpPURv11Ng2QMv2PKhYcterUJBooAvgqD0/qq+AsLN8MREloY5Mdw==
+"@cspell/dict-companies@^3.1.4":
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-3.1.4.tgz#2e7094416432b8547ec335683f5aac9a49dce47e"
+ integrity sha512-y9e0amzEK36EiiKx3VAA+SHQJPpf2Qv5cCt5eTUSggpTkiFkCh6gRKQ97rVlrKh5GJrqinDwYIJtTsxuh2vy2Q==
"@cspell/dict-cpp@^5.1.12":
version "5.1.12"
@@ -1188,10 +1188,10 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-elixir/-/dict-elixir-4.0.3.tgz#57c25843e46cf3463f97da72d9ef8e37c818296f"
integrity sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==
-"@cspell/dict-en-common-misspellings@^2.0.3":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.3.tgz#705d7a271fbd35f9ee3ce5bd5ff0d38454a61927"
- integrity sha512-8nF1z9nUiSgMyikL66HTbDO7jCGtB24TxKBasXIBwkBKMDZgA2M883iXdeByy6m1JJUcCGFkSftVYp2W0bUgjw==
+"@cspell/dict-en-common-misspellings@^2.0.4":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.4.tgz#725c5b2c83faff71fcd2183dd04a154c78eed674"
+ integrity sha512-lvOiRjV/FG4pAGZL3PN2GCVHSTCE92cwhfLGGkOsQtxSmef6WCHfHwp9auafkBlX0yFQSKDfq6/TlpQbjbJBtQ==
"@cspell/dict-en-gb@1.1.33":
version "1.1.33"
@@ -1323,10 +1323,10 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-public-licenses/-/dict-public-licenses-2.0.7.tgz#ccd67a91a6bd5ed4b5117c2f34e9361accebfcb7"
integrity sha512-KlBXuGcN3LE7tQi/GEqKiDewWGGuopiAD0zRK1QilOx5Co8XAvs044gk4MNIQftc8r0nHeUI+irJKLGcR36DIQ==
-"@cspell/dict-python@^4.2.3":
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/@cspell/dict-python/-/dict-python-4.2.3.tgz#cb37a04f2e92beaca8a99cef320a74caf3502d92"
- integrity sha512-C1CPX9wwEGgcHv/p7KfjuIOp1G6KNyx5gWYweAd6/KPv+ZpeM1v572zFUTmpO8WDuAfKFf00nqYL8/GmCENWBw==
+"@cspell/dict-python@^4.2.4":
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-python/-/dict-python-4.2.4.tgz#add81749939c6f123dbd0662385153506be951e0"
+ integrity sha512-sCtLBqMreb+8zRW2bXvFsfSnRUVU6IFm4mT6Dc4xbz0YajprbaPPh/kOUTw5IJRP8Uh+FFb7Xp2iH03CNWRq/A==
dependencies:
"@cspell/dict-data-science" "^2.0.1"
@@ -1350,15 +1350,15 @@
resolved "https://registry.yarnpkg.com/@cspell/dict-scala/-/dict-scala-5.0.3.tgz#85a469b2d139766b6307befc89243928e3d82b39"
integrity sha512-4yGb4AInT99rqprxVNT9TYb1YSpq58Owzq7zi3ZS5T0u899Y4VsxsBiOgHnQ/4W+ygi+sp+oqef8w8nABR2lkg==
-"@cspell/dict-software-terms@^4.0.3":
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/@cspell/dict-software-terms/-/dict-software-terms-4.0.3.tgz#c6de88baca8f35869b96240656cd5461aa2a0b1a"
- integrity sha512-65QAVMc3YlcI7PcqWRY5ox53tTWC8aktUZdJYCVs4VDBPUCTSDnTSmSreeg4F5Z468clv9KF/S0PkxbLjgW72A==
+"@cspell/dict-software-terms@^4.0.6":
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-software-terms/-/dict-software-terms-4.0.6.tgz#df1efb809a50ae4292f85a90d1481dafcc13b414"
+ integrity sha512-UDhUzNSf7GN529a0Ip9hlSoGbpscz0YlUYBEJmZBXi8otpkrbCJqs50T74Ppd+SWqNil04De8urv4af2c6SY5Q==
-"@cspell/dict-sql@^2.1.3":
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-sql/-/dict-sql-2.1.3.tgz#8d9666a82e35b310d0be4064032c0d891fbd2702"
- integrity sha512-SEyTNKJrjqD6PAzZ9WpdSu6P7wgdNtGV2RV8Kpuw1x6bV+YsSptuClYG+JSdRExBTE6LwIe1bTklejUp3ZP8TQ==
+"@cspell/dict-sql@^2.1.5":
+ version "2.1.5"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-sql/-/dict-sql-2.1.5.tgz#068c7a8840d75418fd46a0b062c0ed2d5742f2b8"
+ integrity sha512-FmxanytHXss7GAWAXmgaxl3icTCW7YxlimyOSPNfm+njqeUDjw3kEv4mFNDDObBJv8Ec5AWCbUDkWIpkE3IpKg==
"@cspell/dict-svelte@^1.0.2":
version "1.0.2"
@@ -1385,22 +1385,22 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-vue/-/dict-vue-3.0.0.tgz#68ccb432ad93fcb0fd665352d075ae9a64ea9250"
integrity sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==
-"@cspell/dynamic-import@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.13.1.tgz#2a4bbb383d65db99708df00653683d1d470dc15a"
- integrity sha512-jMqJHWmQy+in99JMSFlaGV9P033gCx7DCZvGO/ZSeZ2EatrUTanJk3oTG1TZknZydb0nnxr1mgTWXN7PCAAXDg==
+"@cspell/dynamic-import@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.13.3.tgz#6809ae3c5f46766145ae7f615889a1e1686d59ac"
+ integrity sha512-YN83CFWnMkt9B0q0RBadfEoptUaDRqBikh8b91MOQ0haEnUo6t57j4jAaLnbIEP4ynzMhgruWFKpIC/QaEtCuA==
dependencies:
import-meta-resolve "^4.1.0"
-"@cspell/strong-weak-map@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.13.1.tgz#20c8a1b7998d21ce7e590efe0dee4c10017373f4"
- integrity sha512-ga1ibI9ZLJWNszfP7e6qQ8gnoQOP9rE/clALMAim9ssO6cmMhEEm+i1ROH4nsDfThd6sVlUJ0IOtx5dEqPmWxw==
+"@cspell/strong-weak-map@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.13.3.tgz#069f5e95f70d884415feec1bf53a1c20854b33f9"
+ integrity sha512-/QYUEthesPuDarOHa6kcWKJmVq0HIotjPrmAWQ5QpH+dDik1Qin4G/9QdnWX75ueR4DC4WFjBNBU14C4TVSwHQ==
-"@cspell/url@8.13.1":
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.13.1.tgz#9737eb575cab923c3a87d8b4e3bf27d26af2c617"
- integrity sha512-cCyojz5ovgGCexhez2urle4Q1UOEsp96lvl4pDmWNDHa/6n8dqiIn60SVzQIsAHzJ4yEV077RSaIrTlq/T+oSQ==
+"@cspell/url@8.13.3":
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.13.3.tgz#2c400e581570fe2fb95197a2e6c64ceeeb6ceb8b"
+ integrity sha512-hsxoTnZHwtdR2x9QEE6yfDBB1LUwAj67o1GyKTvI8A2OE/AfzAttirZs+9sxgOGWoBdTOxM9sMLtqB3SxtDB3A==
"@csstools/css-parser-algorithms@^2.7.1":
version "2.7.1"
@@ -2632,10 +2632,10 @@ commander@^6.2.1:
resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
integrity sha1-B5LraC37wyWZm7K4T93duhEKxzw=
-comment-json@^4.2.4:
- version "4.2.4"
- resolved "https://registry.yarnpkg.com/comment-json/-/comment-json-4.2.4.tgz#7d1cfe2e934f0c55ae3c2c2cc0436ba4e8901083"
- integrity sha512-E5AjpSW+O+N5T2GsOQMHLLsJvrYw6G/AFt9GvU6NguEAfzKShh7hRiLtVo6S9KbRpFMGqE5ojo0/hE+sdteWvQ==
+comment-json@^4.2.5:
+ version "4.2.5"
+ resolved "https://registry.yarnpkg.com/comment-json/-/comment-json-4.2.5.tgz#482e085f759c2704b60bc6f97f55b8c01bc41e70"
+ integrity sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==
dependencies:
array-timsort "^1.0.3"
core-util-is "^1.0.3"
@@ -2727,79 +2727,79 @@ crypt@0.0.2:
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
-cspell-config-lib@8.13.1:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.13.1.tgz#a8f3ec8f8bb1061753589b2a389ce8c748743a14"
- integrity sha512-sXUFOyxvk+qDkoQdFkVEqj1hfQWzMi+tbi6ksiotQaqpm7r+YitZLSgwJjN4xgDO/rTLyP70k9fagdZ67MVZbw==
+cspell-config-lib@8.13.3:
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.13.3.tgz#06e574328d701dc34410f4b8fd14e8fd07b4d152"
+ integrity sha512-dzVdar8Kenwxho0PnUxOxwjUvyFYn6Q9mQAMHcQNXQrvo32bdpoF+oNtWC/5FfrQgUgyl19CVQ607bRigYWoOQ==
dependencies:
- "@cspell/cspell-types" "8.13.1"
- comment-json "^4.2.4"
+ "@cspell/cspell-types" "8.13.3"
+ comment-json "^4.2.5"
yaml "^2.5.0"
-cspell-dictionary@8.13.1:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.13.1.tgz#07512304cbf03889bde7b2db9ccf7dae70041900"
- integrity sha512-Z0T4J4ahOJaHmWq83w24KXGik1zeauO5WvDRyzDyaSgpbA5MN2hN98LvxaIx72g3I+trtRK77XFcKginuME9EA==
+cspell-dictionary@8.13.3:
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.13.3.tgz#622798ef6f8575d9ceb21dba20e8eace4177f74b"
+ integrity sha512-DQ3Tee7LIoy+9Mu52ht32O/MNBZ6i4iUeSTY2sMDDwogno3361BLRyfEjyiYNo3Fqf0Pcnt5MqY2DqIhrF/H/Q==
dependencies:
- "@cspell/cspell-pipe" "8.13.1"
- "@cspell/cspell-types" "8.13.1"
- cspell-trie-lib "8.13.1"
+ "@cspell/cspell-pipe" "8.13.3"
+ "@cspell/cspell-types" "8.13.3"
+ cspell-trie-lib "8.13.3"
fast-equals "^5.0.1"
-cspell-gitignore@8.13.1:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.13.1.tgz#b5b93304a87bf798634aa8458e5f29df8d8b9c05"
- integrity sha512-XyZ3X5d6x0gkWtNXSAQRcPMG41bEdLx9cTgZCYCJhEZCesU1VpNm60F3oc11dMLkO+BqPH3An+AO/YEIiaje3A==
+cspell-gitignore@8.13.3:
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.13.3.tgz#d9bb175feb86899ed2e2af1bd714785f02b08aaa"
+ integrity sha512-0OZXuP33CXV4P95ySHGNqhq3VR5RaLwpyo0nGvLHOjPm3mCsQSjURLBKHvyQ3r2M7LWsGV1Xc81FfTx30FBZLg==
dependencies:
- "@cspell/url" "8.13.1"
- cspell-glob "8.13.1"
- cspell-io "8.13.1"
+ "@cspell/url" "8.13.3"
+ cspell-glob "8.13.3"
+ cspell-io "8.13.3"
find-up-simple "^1.0.0"
-cspell-glob@8.13.1:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.13.1.tgz#308b82921734d5de78c58aafe20715e83c4bdb07"
- integrity sha512-rW1A3t7YvPXxcC4z1pp1m9coeWzUVUmRjUw3vMNGlEDC2zecB39KKbEqesziBqnBceNAY7O5itllIGFKr03vqA==
+cspell-glob@8.13.3:
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.13.3.tgz#7533828ac52eb7ae87e8d58869ffc6fb9299a24e"
+ integrity sha512-+jGIMYyKDLmoOJIxNPXRdI7utcvw+9FMSmj1ApIdEff5dCkehi0gtzK4H7orXGYEvRdKQvfaXiyduVi79rXsZQ==
dependencies:
- "@cspell/url" "8.13.1"
+ "@cspell/url" "8.13.3"
micromatch "^4.0.7"
-cspell-grammar@8.13.1:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.13.1.tgz#86577f70b537bfc4e7e1aca7961ec37555c1f7f4"
- integrity sha512-HUkd24bulvBwee1UNBurxGlPUOiywb9pB34iXXoxFWuloHohZ/DuFlE8B/31ZtjW48ffEYIu3QZfWhcnD8e81w==
- dependencies:
- "@cspell/cspell-pipe" "8.13.1"
- "@cspell/cspell-types" "8.13.1"
-
-cspell-io@8.13.1:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.13.1.tgz#27bf534e1cb18c0a1cd4050680ef9f6816eece63"
- integrity sha512-t2sgZuWGBzPSOAStfvz/U3KoFEfDxEt1cXZj0Kd0Vs36v2uoLktm6ihMe7XNFu7zIdOFSajsYQ8Bi4RSLPGPxQ==
- dependencies:
- "@cspell/cspell-service-bus" "8.13.1"
- "@cspell/url" "8.13.1"
-
-cspell-lib@8.13.1:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.13.1.tgz#3e9b2a34d02dd0e9d962c016aef1d0a04a4d4a73"
- integrity sha512-H1HHG1pmATSeAaY0KmQ0xnkbSqJLvh9QpXWARDLWKUBvtE+/l44H4yVhIp/No3rM7PKMmb82GuSJzMaoIhHFLQ==
- dependencies:
- "@cspell/cspell-bundled-dicts" "8.13.1"
- "@cspell/cspell-pipe" "8.13.1"
- "@cspell/cspell-resolver" "8.13.1"
- "@cspell/cspell-types" "8.13.1"
- "@cspell/dynamic-import" "8.13.1"
- "@cspell/strong-weak-map" "8.13.1"
- "@cspell/url" "8.13.1"
+cspell-grammar@8.13.3:
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.13.3.tgz#147e97a54ad2c8e4925bd84ae2afed7ff14960e2"
+ integrity sha512-xPSgKk9HY5EsI8lkMPC9hiZCeAUs+RY/IVliUBW1xEicAJhP4RZIGRdIwtDNNJGwKfNXazjqYhcS4LS0q7xPAQ==
+ dependencies:
+ "@cspell/cspell-pipe" "8.13.3"
+ "@cspell/cspell-types" "8.13.3"
+
+cspell-io@8.13.3:
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.13.3.tgz#9f2323aa7ea6edce84c16964c95ee4c83b5b880e"
+ integrity sha512-AeMIkz7+4VuJaPKO/v1pUpyUSOOTyLOAfzeTRRAXEt+KRKOUe36MyUmBMza6gzNcX2yD04VgJukRL408TY9ntw==
+ dependencies:
+ "@cspell/cspell-service-bus" "8.13.3"
+ "@cspell/url" "8.13.3"
+
+cspell-lib@8.13.3:
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.13.3.tgz#4d2516bbb09148079d634f73c65ffa05a62ae02c"
+ integrity sha512-aEqxIILeqDtNoCa47/oSl5c926b50ue3PobYs4usn0Ymf0434RopCP+DCGsF7BPtog4j4XWnEmvkcJs57DYWDg==
+ dependencies:
+ "@cspell/cspell-bundled-dicts" "8.13.3"
+ "@cspell/cspell-pipe" "8.13.3"
+ "@cspell/cspell-resolver" "8.13.3"
+ "@cspell/cspell-types" "8.13.3"
+ "@cspell/dynamic-import" "8.13.3"
+ "@cspell/strong-weak-map" "8.13.3"
+ "@cspell/url" "8.13.3"
clear-module "^4.1.2"
- comment-json "^4.2.4"
- cspell-config-lib "8.13.1"
- cspell-dictionary "8.13.1"
- cspell-glob "8.13.1"
- cspell-grammar "8.13.1"
- cspell-io "8.13.1"
- cspell-trie-lib "8.13.1"
+ comment-json "^4.2.5"
+ cspell-config-lib "8.13.3"
+ cspell-dictionary "8.13.3"
+ cspell-glob "8.13.3"
+ cspell-grammar "8.13.3"
+ cspell-io "8.13.3"
+ cspell-trie-lib "8.13.3"
env-paths "^3.0.0"
fast-equals "^5.0.1"
gensequence "^7.0.0"
@@ -2809,33 +2809,33 @@ cspell-lib@8.13.1:
vscode-uri "^3.0.8"
xdg-basedir "^5.1.0"
-cspell-trie-lib@8.13.1:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.13.1.tgz#7987ca712429898c8b0f4d8eeca8f2c9f1478744"
- integrity sha512-2moCsIYDmMT7hp5Non3CvWatfXptFWCuxjbXQGDNvWJ2Cj3oso/oBe4802GJv5GEenv9QBWmEtum/E7rFcx4JA==
+cspell-trie-lib@8.13.3:
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.13.3.tgz#3fe376106faef310c3874685fc6e2ddaa2551066"
+ integrity sha512-Z0iLGi9HI+Vf+WhVVeru6dYgQdtaYCKWRlc1SayLfAZhw9BcjrXL8KTXDfAfv/lUgnRu6xwP1isLlDNZECsKVQ==
dependencies:
- "@cspell/cspell-pipe" "8.13.1"
- "@cspell/cspell-types" "8.13.1"
+ "@cspell/cspell-pipe" "8.13.3"
+ "@cspell/cspell-types" "8.13.3"
gensequence "^7.0.0"
cspell@^8.10.4:
- version "8.13.1"
- resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.13.1.tgz#779c10caf86f609a70eb1fa21fdb8ebb42e6c9a8"
- integrity sha512-Bqppilpwx9xt3jZPaYcqe1JPteNmfKhx9pw9YglZEePDUzdiJQNVIfs31589GAnXjgdqqctR8N87ffLcaBNPXw==
- dependencies:
- "@cspell/cspell-json-reporter" "8.13.1"
- "@cspell/cspell-pipe" "8.13.1"
- "@cspell/cspell-types" "8.13.1"
- "@cspell/dynamic-import" "8.13.1"
- "@cspell/url" "8.13.1"
+ version "8.13.3"
+ resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.13.3.tgz#cebe77faeed2d6d3e0a6dc244d5c1c3fad5b3ad5"
+ integrity sha512-2wv4Eby7g8wDB553fI8IoZjyitoKrD2kmtdeoYUN2EjVs3RMpIOver3fL+0VaFAaN0uLfAoeAAIB5xJEakvZYQ==
+ dependencies:
+ "@cspell/cspell-json-reporter" "8.13.3"
+ "@cspell/cspell-pipe" "8.13.3"
+ "@cspell/cspell-types" "8.13.3"
+ "@cspell/dynamic-import" "8.13.3"
+ "@cspell/url" "8.13.3"
chalk "^5.3.0"
chalk-template "^1.1.0"
commander "^12.1.0"
- cspell-dictionary "8.13.1"
- cspell-gitignore "8.13.1"
- cspell-glob "8.13.1"
- cspell-io "8.13.1"
- cspell-lib "8.13.1"
+ cspell-dictionary "8.13.3"
+ cspell-gitignore "8.13.3"
+ cspell-glob "8.13.3"
+ cspell-io "8.13.3"
+ cspell-lib "8.13.3"
fast-glob "^3.3.2"
fast-json-stable-stringify "^2.1.0"
file-entry-cache "^9.0.0"
From 278f0709a11510eaa4499112c30be3da8038339a Mon Sep 17 00:00:00 2001
From: zhixin
Date: Wed, 14 Aug 2024 10:36:36 +0800
Subject: [PATCH 26/67] Fixed build css base script error
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index d4b3e459d..28979784b 100644
--- a/package.json
+++ b/package.json
@@ -58,7 +58,7 @@
"js:build:vue": "vite build && mv dist/bootstrap-table-vue.umd.cjs dist/bootstrap-table-vue.umd.js",
"js:build": "run-s js:build:*",
"css:build:src": "sass --no-source-map -I node_modules src:src",
- "css:build:base": "sass --no-source-map -I node_modules -s compressed src:dist",
+ "css:build:base": "sass --no-source-map -I node_modules src:dist",
"css:build:min": "foreach -g \"dist/**/*.css\" -x \"cleancss #{path} -o #{dir}/#{name}.min.css\"",
"css:build:banner": "foreach -g \"dist/**/*.min.css\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
"css:build": "run-s css:build:*",
From dc615b608ed3942461fc9547b69f09f9fff50f80 Mon Sep 17 00:00:00 2001
From: zhixin
Date: Wed, 14 Aug 2024 10:42:32 +0800
Subject: [PATCH 27/67] Fixed build scss warning
---
src/themes/_theme.scss | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/themes/_theme.scss b/src/themes/_theme.scss
index 31fdc8a01..36f82e3ea 100644
--- a/src/themes/_theme.scss
+++ b/src/themes/_theme.scss
@@ -327,6 +327,8 @@
li.page-intermediate {
a {
+ color: #c8c8c8;
+
&::before {
content: "\2B05";
}
@@ -334,8 +336,6 @@
&::after {
content: "\27A1";
}
-
- color: #c8c8c8;
}
}
From 13a6935948a70795df4e77db271011445b616a2d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 14 Aug 2024 21:04:49 +0000
Subject: [PATCH 28/67] Bump cypress from 13.13.2 to 13.13.3
Bumps [cypress](https://github.com/cypress-io/cypress) from 13.13.2 to 13.13.3.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/cypress-io/cypress/compare/v13.13.2...v13.13.3)
---
updated-dependencies:
- dependency-name: cypress
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index e52f4fcbb..76864720e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2867,9 +2867,9 @@ csstype@^3.1.3:
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
cypress@^13.13.0:
- version "13.13.2"
- resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.13.2.tgz#c71f8d92056c430b1b879e5313f6de25ccce0eda"
- integrity sha512-PvJQU33933NvS1StfzEb8/mu2kMy4dABwCF+yd5Bi7Qly1HOVf+Bufrygee/tlmty/6j5lX+KIi8j9Q3JUMbhA==
+ version "13.13.3"
+ resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.13.3.tgz#21ee054bb4e00b3858f2e33b4f8f4e69128470a9"
+ integrity sha512-hUxPrdbJXhUOTzuML+y9Av7CKoYznbD83pt8g3klgpioEha0emfx4WNIuVRx0C76r0xV2MIwAW9WYiXfVJYFQw==
dependencies:
"@cypress/request" "^3.0.1"
"@cypress/xvfb" "^1.2.4"
From af999f573b085c4e035bda7d4cbd75bccae538f0 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 15 Aug 2024 21:33:47 +0000
Subject: [PATCH 29/67] Bump stylelint from 16.8.1 to 16.8.2
Bumps [stylelint](https://github.com/stylelint/stylelint) from 16.8.1 to 16.8.2.
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/stylelint/stylelint/compare/16.8.1...16.8.2)
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 88 +++++++++++++++++++++++++++----------------------------
1 file changed, 44 insertions(+), 44 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index e52f4fcbb..dcb3b6b85 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1402,25 +1402,25 @@
resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.13.3.tgz#2c400e581570fe2fb95197a2e6c64ceeeb6ceb8b"
integrity sha512-hsxoTnZHwtdR2x9QEE6yfDBB1LUwAj67o1GyKTvI8A2OE/AfzAttirZs+9sxgOGWoBdTOxM9sMLtqB3SxtDB3A==
-"@csstools/css-parser-algorithms@^2.7.1":
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.7.1.tgz#6d93a8f7d8aeb7cd9ed0868f946e46f021b6aa70"
- integrity sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==
+"@csstools/css-parser-algorithms@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.0.tgz#dd428c4569caea7185716fbba174202a4ba41fda"
+ integrity sha512-20hEErXV9GEx15qRbsJVzB91ryayx1F2duHPBrfZXQAHz/dJG0u/611URpr28+sFjm3EI7U17Pj9SVA9NSAGJA==
-"@csstools/css-tokenizer@^2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.4.1.tgz#1d8b2e200197cf5f35ceb07ca2dade31f3a00ae8"
- integrity sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==
+"@csstools/css-tokenizer@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-3.0.0.tgz#9a8a1ea564dd92b8b567e0507c29f74252e01e04"
+ integrity sha512-efZvfJyYrqH9hPCKtOBywlTsCXnEzAI9sLHFzUsDpBb+1bQ+bxJnwL9V2bRKv9w4cpIp75yxGeZRaVKoMQnsEg==
-"@csstools/media-query-list-parser@^2.1.13":
- version "2.1.13"
- resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.13.tgz#f00be93f6bede07c14ddf51a168ad2748e4fe9e5"
- integrity sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==
+"@csstools/media-query-list-parser@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.0.tgz#a4388fa58e0981d705b8286fa3376e71c5954faa"
+ integrity sha512-W0JlkUFwXjo703wt06AcaWuUcS+6x6IEDyxV6W65Sw+vLCYp+uPsrps+PXTiIfN0V1Pqj5snPzN7EYLmbz1zjg==
-"@csstools/selector-specificity@^3.1.1":
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/@csstools%2fselector-specificity/-/selector-specificity-3.1.1.tgz#63085d2995ca0f0e55aa8b8a07d69bfd48b844fe"
- integrity sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==
+"@csstools/selector-specificity@^4.0.0":
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-4.0.0.tgz#7dfccb9df5499e627e7bfdbb4021a06813a45dba"
+ integrity sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==
"@cypress/request@^3.0.1":
version "3.0.1"
@@ -3912,10 +3912,10 @@ ieee754@^1.1.13:
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
integrity sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=
-ignore@^5.1.1, ignore@^5.2.0, ignore@^5.3.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
- integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
+ignore@^5.1.1, ignore@^5.2.0, ignore@^5.3.2:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
+ integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
immutable@^4.0.0:
version "4.3.6"
@@ -4931,10 +4931,10 @@ postcss-media-query-parser@^0.2.3:
resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244"
integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=
-postcss-resolve-nested-selector@^0.1.1, postcss-resolve-nested-selector@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.4.tgz#0068767902fb40f0e6cd7b24faee4fa4bc14a5da"
- integrity sha512-R6vHqZWgVnTAPq0C+xjyHfEZqfIYboCBVSy24MjxEDm+tIh1BU4O6o7DP7AA7kHzf136d+Qc5duI4tlpHjixDw==
+postcss-resolve-nested-selector@^0.1.1, postcss-resolve-nested-selector@^0.1.6:
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz#3d84dec809f34de020372c41b039956966896686"
+ integrity sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==
postcss-safe-parser@^7.0.0:
version "7.0.0"
@@ -4946,10 +4946,10 @@ postcss-scss@^4.0.9:
resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.9.tgz#a03c773cd4c9623cb04ce142a52afcec74806685"
integrity sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==
-postcss-selector-parser@^6.1.0, postcss-selector-parser@^6.1.1:
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz#5be94b277b8955904476a2400260002ce6c56e38"
- integrity sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==
+postcss-selector-parser@^6.1.0, postcss-selector-parser@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de"
+ integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
@@ -4959,10 +4959,10 @@ postcss-value-parser@^4.2.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@^8.4.40:
- version "8.4.40"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.40.tgz#eb81f2a4dd7668ed869a6db25999e02e9ad909d8"
- integrity sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==
+postcss@^8.4.40, postcss@^8.4.41:
+ version "8.4.41"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681"
+ integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==
dependencies:
nanoid "^3.3.7"
picocolors "^1.0.1"
@@ -5629,14 +5629,14 @@ stylelint-scss@^6.0.0:
postcss-value-parser "^4.2.0"
stylelint@^16.7.0:
- version "16.8.1"
- resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-16.8.1.tgz#7d4b2d7922771dd0514446a66f04e954f1dfa444"
- integrity sha512-O8aDyfdODSDNz/B3gW2HQ+8kv8pfhSu7ZR7xskQ93+vI6FhKKGUJMQ03Ydu+w3OvXXE0/u4hWU4hCPNOyld+OA==
- dependencies:
- "@csstools/css-parser-algorithms" "^2.7.1"
- "@csstools/css-tokenizer" "^2.4.1"
- "@csstools/media-query-list-parser" "^2.1.13"
- "@csstools/selector-specificity" "^3.1.1"
+ version "16.8.2"
+ resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-16.8.2.tgz#7fda18b919a36e206e897417d4720baceb3af122"
+ integrity sha512-fInKATippQhcSm7AB+T32GpI+626yohrg33GkFT/5jzliUw5qhlwZq2UQQwgl3HsHrf09oeARi0ZwgY/UWEv9A==
+ dependencies:
+ "@csstools/css-parser-algorithms" "^3.0.0"
+ "@csstools/css-tokenizer" "^3.0.0"
+ "@csstools/media-query-list-parser" "^3.0.0"
+ "@csstools/selector-specificity" "^4.0.0"
"@dual-bundle/import-meta-resolve" "^4.1.0"
balanced-match "^2.0.0"
colord "^2.9.3"
@@ -5651,7 +5651,7 @@ stylelint@^16.7.0:
globby "^11.1.0"
globjoin "^0.1.4"
html-tags "^3.3.1"
- ignore "^5.3.1"
+ ignore "^5.3.2"
imurmurhash "^0.1.4"
is-plain-object "^5.0.0"
known-css-properties "^0.34.0"
@@ -5660,10 +5660,10 @@ stylelint@^16.7.0:
micromatch "^4.0.7"
normalize-path "^3.0.0"
picocolors "^1.0.1"
- postcss "^8.4.40"
- postcss-resolve-nested-selector "^0.1.4"
+ postcss "^8.4.41"
+ postcss-resolve-nested-selector "^0.1.6"
postcss-safe-parser "^7.0.0"
- postcss-selector-parser "^6.1.1"
+ postcss-selector-parser "^6.1.2"
postcss-value-parser "^4.2.0"
resolve-from "^5.0.0"
string-width "^4.2.3"
From 109ea2eb5f04f7fdd5aea8ff5d329684f91928a4 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 15 Aug 2024 21:33:59 +0000
Subject: [PATCH 30/67] Bump vite from 5.4.0 to 5.4.1
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.0 to 5.4.1.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.1/packages/vite)
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index e52f4fcbb..b88d4f73a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4959,10 +4959,10 @@ postcss-value-parser@^4.2.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@^8.4.40:
- version "8.4.40"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.40.tgz#eb81f2a4dd7668ed869a6db25999e02e9ad909d8"
- integrity sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==
+postcss@^8.4.40, postcss@^8.4.41:
+ version "8.4.41"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681"
+ integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==
dependencies:
nanoid "^3.3.7"
picocolors "^1.0.1"
@@ -5975,12 +5975,12 @@ verror@1.10.0:
extsprintf "^1.2.0"
vite@^5.3.3:
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.0.tgz#11dca8a961369ba8b5cae42d068c7ad684d5370f"
- integrity sha512-5xokfMX0PIiwCMCMb9ZJcMyh5wbBun0zUzKib+L65vAZ8GY9ePZMXxFrHbr/Kyll2+LSCY7xtERPpxkBDKngwg==
+ version "5.4.1"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.1.tgz#2aa72370de824d23f53658affd807e4c9905b058"
+ integrity sha512-1oE6yuNXssjrZdblI9AfBbHCC41nnyoVoEZxQnID6yvQZAFBzxxkqoFLtHUMkYunL8hwOLEjgTuxpkRxvba3kA==
dependencies:
esbuild "^0.21.3"
- postcss "^8.4.40"
+ postcss "^8.4.41"
rollup "^4.13.0"
optionalDependencies:
fsevents "~2.3.3"
From 09046fa4da64254d36fa4272eccaa96f1992df76 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 15 Aug 2024 21:34:08 +0000
Subject: [PATCH 31/67] Bump vue from 3.4.37 to 3.4.38
Bumps [vue](https://github.com/vuejs/core) from 3.4.37 to 3.4.38.
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/v3.4.38/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.4.37...v3.4.38)
---
updated-dependencies:
- dependency-name: vue
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 134 +++++++++++++++++++++++++++---------------------------
1 file changed, 67 insertions(+), 67 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index e52f4fcbb..e8248147f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1943,85 +1943,85 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.2.tgz#f11091e0130eca6c1ca8cfb85ee71ea53b255d31"
integrity sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==
-"@vue/compiler-core@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.37.tgz#55db3900e09424c65c39111a05a3c6e698f371e3"
- integrity sha512-ZDDT/KiLKuCRXyzWecNzC5vTcubGz4LECAtfGPENpo0nrmqJHwuWtRLxk/Sb9RAKtR9iFflFycbkjkY+W/PZUQ==
+"@vue/compiler-core@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.38.tgz#326dfe3c92fa2b0f1dc9b39a948a231980253496"
+ integrity sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==
dependencies:
"@babel/parser" "^7.24.7"
- "@vue/shared" "3.4.37"
- entities "^5.0.0"
+ "@vue/shared" "3.4.38"
+ entities "^4.5.0"
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-dom@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.37.tgz#a1fcf79e287cb828545082ff1afa8630480a3044"
- integrity sha512-rIiSmL3YrntvgYV84rekAtU/xfogMUJIclUMeIKEtVBFngOL3IeZHhsH3UaFEgB5iFGpj6IW+8YuM/2Up+vVag==
+"@vue/compiler-dom@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz#90348fac1130e0bbd408b650635cb626b3b9df06"
+ integrity sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==
dependencies:
- "@vue/compiler-core" "3.4.37"
- "@vue/shared" "3.4.37"
+ "@vue/compiler-core" "3.4.38"
+ "@vue/shared" "3.4.38"
-"@vue/compiler-sfc@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.37.tgz#8afaf1a86cb849422c765d4369ba1e85fffe0234"
- integrity sha512-vCfetdas40Wk9aK/WWf8XcVESffsbNkBQwS5t13Y/PcfqKfIwJX2gF+82th6dOpnpbptNMlMjAny80li7TaCIg==
+"@vue/compiler-sfc@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.38.tgz#954c3f6777bbbcca28771ba59b795f12f76ef188"
+ integrity sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==
dependencies:
"@babel/parser" "^7.24.7"
- "@vue/compiler-core" "3.4.37"
- "@vue/compiler-dom" "3.4.37"
- "@vue/compiler-ssr" "3.4.37"
- "@vue/shared" "3.4.37"
+ "@vue/compiler-core" "3.4.38"
+ "@vue/compiler-dom" "3.4.38"
+ "@vue/compiler-ssr" "3.4.38"
+ "@vue/shared" "3.4.38"
estree-walker "^2.0.2"
magic-string "^0.30.10"
postcss "^8.4.40"
source-map-js "^1.2.0"
-"@vue/compiler-ssr@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.37.tgz#b75e1c76c3184f86fa9f0ba4d61d13bc6afcbf8a"
- integrity sha512-TyAgYBWrHlFrt4qpdACh8e9Ms6C/AZQ6A6xLJaWrCL8GCX5DxMzxyeFAEMfU/VFr4tylHm+a2NpfJpcd7+20XA==
+"@vue/compiler-ssr@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz#9ded18f6d9c8b2440039a58492cfff36fa1a7774"
+ integrity sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==
dependencies:
- "@vue/compiler-dom" "3.4.37"
- "@vue/shared" "3.4.37"
+ "@vue/compiler-dom" "3.4.38"
+ "@vue/shared" "3.4.38"
-"@vue/reactivity@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.37.tgz#5a199563eaab51ed9f94ddf0a82f9179bcc01676"
- integrity sha512-UmdKXGx0BZ5kkxPqQr3PK3tElz6adTey4307NzZ3whZu19i5VavYal7u2FfOmAzlcDVgE8+X0HZ2LxLb/jgbYw==
+"@vue/reactivity@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.38.tgz#ec2d549f4b831cd03d0baabf7d77e840b8536000"
+ integrity sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==
dependencies:
- "@vue/shared" "3.4.37"
+ "@vue/shared" "3.4.38"
-"@vue/runtime-core@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.37.tgz#3fe734a666db7842bea4185a13f7697a2102b719"
- integrity sha512-MNjrVoLV/sirHZoD7QAilU1Ifs7m/KJv4/84QVbE6nyAZGQNVOa1HGxaOzp9YqCG+GpLt1hNDC4RbH+KtanV7w==
+"@vue/runtime-core@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.38.tgz#bead9085e9a1c5a446e27d74ffb450f9261cf097"
+ integrity sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==
dependencies:
- "@vue/reactivity" "3.4.37"
- "@vue/shared" "3.4.37"
+ "@vue/reactivity" "3.4.38"
+ "@vue/shared" "3.4.38"
-"@vue/runtime-dom@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.37.tgz#219f84577027103de6ddc71351d8237c7c16adac"
- integrity sha512-Mg2EwgGZqtwKrqdL/FKMF2NEaOHuH+Ks9TQn3DHKyX//hQTYOun+7Tqp1eo0P4Ds+SjltZshOSRq6VsU0baaNg==
+"@vue/runtime-dom@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.38.tgz#52678ba0b85f94400a0a9c8dd23ddef4dd65657d"
+ integrity sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==
dependencies:
- "@vue/reactivity" "3.4.37"
- "@vue/runtime-core" "3.4.37"
- "@vue/shared" "3.4.37"
+ "@vue/reactivity" "3.4.38"
+ "@vue/runtime-core" "3.4.38"
+ "@vue/shared" "3.4.38"
csstype "^3.1.3"
-"@vue/server-renderer@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.37.tgz#d341425bb5395a3f6ed70572ea5c3edefab92f28"
- integrity sha512-jZ5FAHDR2KBq2FsRUJW6GKDOAG9lUTX8aBEGq4Vf6B/35I9fPce66BornuwmqmKgfiSlecwuOb6oeoamYMohkg==
+"@vue/server-renderer@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.38.tgz#457401ef2b0f969156702061e56915acecc9fe2c"
+ integrity sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==
dependencies:
- "@vue/compiler-ssr" "3.4.37"
- "@vue/shared" "3.4.37"
+ "@vue/compiler-ssr" "3.4.38"
+ "@vue/shared" "3.4.38"
-"@vue/shared@3.4.37":
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.37.tgz#4f4c08a2e73da512a77b47165cf59ffbc1b5ade8"
- integrity sha512-nIh8P2fc3DflG8+5Uw8PT/1i17ccFn0xxN/5oE9RfV5SVnd7G0XEFRwakrnNFE/jlS95fpGXDVG5zDETS26nmg==
+"@vue/shared@3.4.38":
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.38.tgz#552a6770098bfd556fa3e2c686c9d3b4f4cd94c2"
+ integrity sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==
acorn-jsx@^5.3.2:
version "5.3.2"
@@ -3072,10 +3072,10 @@ enquirer@^2.3.6:
ansi-colors "^4.1.1"
strip-ansi "^6.0.1"
-entities@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/entities/-/entities-5.0.0.tgz#b2ab51fe40d995817979ec79dd621154c3c0f62b"
- integrity sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==
+entities@^4.5.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
+ integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
env-paths@^2.2.1:
version "2.2.1"
@@ -5996,15 +5996,15 @@ vscode-uri@^3.0.8:
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
vue@^3.4.31:
- version "3.4.37"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.37.tgz#64ce0eeb8de16a29fb74e504777ee8c0c1cf229e"
- integrity sha512-3vXvNfkKTBsSJ7JP+LyR7GBuwQuckbWvuwAid3xbqK9ppsKt/DUvfqgZ48fgOLEfpy1IacL5f8QhUVl77RaI7A==
- dependencies:
- "@vue/compiler-dom" "3.4.37"
- "@vue/compiler-sfc" "3.4.37"
- "@vue/runtime-dom" "3.4.37"
- "@vue/server-renderer" "3.4.37"
- "@vue/shared" "3.4.37"
+ version "3.4.38"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.38.tgz#0ccbb64ed03ef3c4ab73e540793290b18e7c4236"
+ integrity sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==
+ dependencies:
+ "@vue/compiler-dom" "3.4.38"
+ "@vue/compiler-sfc" "3.4.38"
+ "@vue/runtime-dom" "3.4.38"
+ "@vue/server-renderer" "3.4.38"
+ "@vue/shared" "3.4.38"
which-boxed-primitive@^1.0.2:
version "1.0.2"
From 7228bf44b6298a9b4cf61abd2a034d4124dd156a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Aug 2024 21:53:24 +0000
Subject: [PATCH 32/67] Bump cspell from 8.13.3 to 8.14.1
Bumps [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) from 8.13.3 to 8.14.1.
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.14.1/packages/cspell)
---
updated-dependencies:
- dependency-name: cspell
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 246 ++++++++++++++++++++++++++++--------------------------
1 file changed, 126 insertions(+), 120 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 27a1ea573..d24a29e0c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1031,10 +1031,10 @@
resolved "https://registry.yarnpkg.com/@colors%2fcolors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
-"@cspell/cspell-bundled-dicts@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.13.3.tgz#7b214ae6eb6442ef6391765f98c1b9294e3c455e"
- integrity sha512-OfCxUBMyayxKyeDaUZG3LQpiyH8MFUbg9nbIZCGh2x8U6N0fHaP9uR6R+gPzdi/bJp32Kr+RC/Yebojd+AQCGA==
+"@cspell/cspell-bundled-dicts@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.14.1.tgz#859edc6aa96d3d2d4b76ef6f06c2121b29e3a4cd"
+ integrity sha512-yM5cDCbkGttCWBQuSseECHGFF2h1RpX/ZI1I+evuFBW+eYMJm2JeNLDFyuAu7TzCsNtA+PZMs3ctqIP9xg9hHg==
dependencies:
"@cspell/dict-ada" "^4.0.2"
"@cspell/dict-aws" "^4.0.3"
@@ -1043,7 +1043,7 @@
"@cspell/dict-cpp" "^5.1.12"
"@cspell/dict-cryptocurrencies" "^5.0.0"
"@cspell/dict-csharp" "^4.0.2"
- "@cspell/dict-css" "^4.0.12"
+ "@cspell/dict-css" "^4.0.13"
"@cspell/dict-dart" "^2.0.3"
"@cspell/dict-django" "^4.1.0"
"@cspell/dict-docker" "^1.1.7"
@@ -1089,34 +1089,34 @@
"@cspell/dict-typescript" "^3.1.6"
"@cspell/dict-vue" "^3.0.0"
-"@cspell/cspell-json-reporter@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.13.3.tgz#dbce6f3b1104ba1dca15c645f2a005a228104ef0"
- integrity sha512-QrHxWkm0cfD+rTjFOxm5lpE4+wBANDzMIM8NOeQC6v8Dc1L8PUkm6hF6CsEv2tKmuwvdVr+jy6GilDMkPXalCg==
+"@cspell/cspell-json-reporter@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.14.1.tgz#76a9130087243cd8955f06655bea297a80652be6"
+ integrity sha512-eJpgmocT+DY+uy9+sHCz6Ir8YVg7b/hnf5N7dITHlI8dnzgoScTZG2nZhVhJozrgb44B1dZuJzVR1DBLKgZY8A==
dependencies:
- "@cspell/cspell-types" "8.13.3"
+ "@cspell/cspell-types" "8.14.1"
-"@cspell/cspell-pipe@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.13.3.tgz#eca94cd30a97fcea6abffd6189db916505acbce0"
- integrity sha512-6a9Zd+fDltgXoJ0fosWqEMx0UdXBXZ7iakhslMNPRmv7GhVAoHBoIXzMVilOE4kYT2Mh/9NM/QW/NbNEpneZIQ==
+"@cspell/cspell-pipe@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.14.1.tgz#bc5c8e57805beb3e675adfc1f192b66104fe86b6"
+ integrity sha512-KSFu/yyoJekezT9Ex5vgyI0a9tpRVXV4KEfOfL1gH/xbWBTiYx+RyEWEefebMxlMp7tdJiNI7HI0vvJ6YdUdsA==
-"@cspell/cspell-resolver@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.13.3.tgz#423c96b7834aa33b8f487412e82083652d05406a"
- integrity sha512-vlwtMTEWsPPtWfktzT75eGQ0n+0M+9kN+89eSvUUYdCfvY9XAS6z+bTmhS2ULJgntgWtX6gUjABQK0PYYVedOg==
+"@cspell/cspell-resolver@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.14.1.tgz#da14ebbd2415a191706785a8593357c789eca9d8"
+ integrity sha512-MMr3L1yrhITH8eG0fvXNEMo94g4MGSIeHzKKvq40fr39Oox/1MBxYAbWiI2NQ/Bxnbq854SY8pfwTSKjyNEGig==
dependencies:
global-directory "^4.0.1"
-"@cspell/cspell-service-bus@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.13.3.tgz#058121ff78c25afc7bc6218233e6b15e660dbfd5"
- integrity sha512-mFkeWXwGQSDxRiN6Kez77GaMNGNgG7T6o9UE42jyXEgf/bLJTpefbUy4fY5pU3p2mA0eoMzmnJX8l+TC5YJpbA==
+"@cspell/cspell-service-bus@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.14.1.tgz#85edb1ec88080226c4dfddd62aafaf104a672449"
+ integrity sha512-uKrrCLvEkmAPB4vjUw9GM+B3TV2VsWpV6L3wkcQ9+zn9iPYgYk2WkvSHlOunnZ4u1TzcTdd88ZQtMjati3DLCg==
-"@cspell/cspell-types@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.13.3.tgz#180fcebfd1ca21cf09986470de0898b8c7893545"
- integrity sha512-lA5GbhLOL6FlKCWNMbooRFgNGfTsM6NJnHz60+EEN7XD9OgpFc7w+MBcK4aHsVCxcrIvnejIc8xQDqPnrdmN3w==
+"@cspell/cspell-types@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.14.1.tgz#d668acfe31c026d8c8215e469c98d0d90d6211bf"
+ integrity sha512-E7tgF6867gsjttITAXF+8nS4BjZ4JQW4Gbrse1RP7jdW7y1biXipBfZxngsEbnR209MrZAnSobS40m9ih7gWfQ==
"@cspell/dict-ada@^4.0.2":
version "4.0.2"
@@ -1153,10 +1153,10 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-csharp/-/dict-csharp-4.0.2.tgz#e55659dbe594e744d86b1baf0f3397fe57b1e283"
integrity sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==
-"@cspell/dict-css@^4.0.12":
- version "4.0.12"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-css/-/dict-css-4.0.12.tgz#59abf3512ae729835c933c38f64a3d8a5f09ce3d"
- integrity sha512-vGBgPM92MkHQF5/2jsWcnaahOZ+C6OE/fPvd5ScBP72oFY9tn5GLuomcyO0z8vWCr2e0nUSX1OGimPtcQAlvSw==
+"@cspell/dict-css@^4.0.13":
+ version "4.0.13"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-css/-/dict-css-4.0.13.tgz#b95310ba67694d25bcb055786dde65e091621d14"
+ integrity sha512-WfOQkqlAJTo8eIQeztaH0N0P+iF5hsJVKFuhy4jmARPISy8Efcv8QXk2/IVbmjJH0/ZV7dKRdnY5JFVXuVz37g==
"@cspell/dict-dart@^2.0.3":
version "2.0.3"
@@ -1385,22 +1385,27 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-vue/-/dict-vue-3.0.0.tgz#68ccb432ad93fcb0fd665352d075ae9a64ea9250"
integrity sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==
-"@cspell/dynamic-import@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.13.3.tgz#6809ae3c5f46766145ae7f615889a1e1686d59ac"
- integrity sha512-YN83CFWnMkt9B0q0RBadfEoptUaDRqBikh8b91MOQ0haEnUo6t57j4jAaLnbIEP4ynzMhgruWFKpIC/QaEtCuA==
+"@cspell/dynamic-import@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.14.1.tgz#ed188954ba8fda2ab93180ac2470763e37195346"
+ integrity sha512-zGnymwieuFigqz839cKCF9JB90nUm50SMqopWClMl4LFOpqpuCucn/Slh4CLGu2vri4iqCvRweDxZCsi/5qYiw==
dependencies:
import-meta-resolve "^4.1.0"
-"@cspell/strong-weak-map@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.13.3.tgz#069f5e95f70d884415feec1bf53a1c20854b33f9"
- integrity sha512-/QYUEthesPuDarOHa6kcWKJmVq0HIotjPrmAWQ5QpH+dDik1Qin4G/9QdnWX75ueR4DC4WFjBNBU14C4TVSwHQ==
+"@cspell/filetypes@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/filetypes/-/filetypes-8.14.1.tgz#aa2c4772a62cad36bd72f161e5ab7f3508a26e2c"
+ integrity sha512-jOcTFzHJ3c1uTZLm3BvLrZ8TakXLIimsFGwvk/qTA1EYgUPC2a0TypGCxR0NCHmpMlZvfAT5iAksDIiCHq1yjg==
-"@cspell/url@8.13.3":
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.13.3.tgz#2c400e581570fe2fb95197a2e6c64ceeeb6ceb8b"
- integrity sha512-hsxoTnZHwtdR2x9QEE6yfDBB1LUwAj67o1GyKTvI8A2OE/AfzAttirZs+9sxgOGWoBdTOxM9sMLtqB3SxtDB3A==
+"@cspell/strong-weak-map@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.14.1.tgz#94b4a698bf2ebec22ffaa796108f06a2290f386f"
+ integrity sha512-idQVm12vzQHLMpV4ETDFBPpSP7TTf0hRrdsY5i/La6uzZE05b5QxadfInNtbKV/Tf2OpjV3dygALOo2932xChw==
+
+"@cspell/url@8.14.1":
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.14.1.tgz#3a7f953f0f7d719a012c3a1ab4ef902b6248386c"
+ integrity sha512-K8TSiDti+mhuITezwr0fpmD756Y52cbJdxAgoXioL3Ri6ZoyQyhyhsJFeE6kNZLq24KwddZa8WJaY7hHKylygg==
"@csstools/css-parser-algorithms@^3.0.0":
version "3.0.0"
@@ -2727,79 +2732,80 @@ crypt@0.0.2:
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
-cspell-config-lib@8.13.3:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.13.3.tgz#06e574328d701dc34410f4b8fd14e8fd07b4d152"
- integrity sha512-dzVdar8Kenwxho0PnUxOxwjUvyFYn6Q9mQAMHcQNXQrvo32bdpoF+oNtWC/5FfrQgUgyl19CVQ607bRigYWoOQ==
+cspell-config-lib@8.14.1:
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.14.1.tgz#e26943bac418a6f43eaeb59fc9e18c720ed01ecd"
+ integrity sha512-660v4G+3AikdGfSri09YGx7enR4RWPIPLiFKA+3F+CY2lj16l4bh7B/aNfU9oYRDvCcWBCik53AyOne/bSuPVg==
dependencies:
- "@cspell/cspell-types" "8.13.3"
+ "@cspell/cspell-types" "8.14.1"
comment-json "^4.2.5"
yaml "^2.5.0"
-cspell-dictionary@8.13.3:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.13.3.tgz#622798ef6f8575d9ceb21dba20e8eace4177f74b"
- integrity sha512-DQ3Tee7LIoy+9Mu52ht32O/MNBZ6i4iUeSTY2sMDDwogno3361BLRyfEjyiYNo3Fqf0Pcnt5MqY2DqIhrF/H/Q==
+cspell-dictionary@8.14.1:
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.14.1.tgz#9136aaef7c70ff61b560f4387e0243e424004968"
+ integrity sha512-+QI3RLzfA4bkKEa5H9OQx2cPN+f5mXx8zbmccoJXxgjUi3fWmNGz4LPHnNQQ7pWXxQ2V81UXDwd7qRN9qkzISQ==
dependencies:
- "@cspell/cspell-pipe" "8.13.3"
- "@cspell/cspell-types" "8.13.3"
- cspell-trie-lib "8.13.3"
+ "@cspell/cspell-pipe" "8.14.1"
+ "@cspell/cspell-types" "8.14.1"
+ cspell-trie-lib "8.14.1"
fast-equals "^5.0.1"
-cspell-gitignore@8.13.3:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.13.3.tgz#d9bb175feb86899ed2e2af1bd714785f02b08aaa"
- integrity sha512-0OZXuP33CXV4P95ySHGNqhq3VR5RaLwpyo0nGvLHOjPm3mCsQSjURLBKHvyQ3r2M7LWsGV1Xc81FfTx30FBZLg==
+cspell-gitignore@8.14.1:
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.14.1.tgz#26f0c41642015faf9bf042e39b3a3064d896ccdd"
+ integrity sha512-f/3rZqHKTFOB37Ey8b7eIQwom4w+wKKzr1sEsoEdLsWyRAd7HdSXkDG6O0S3RYvUYoiXZM9HQsQY695CVhq2wQ==
dependencies:
- "@cspell/url" "8.13.3"
- cspell-glob "8.13.3"
- cspell-io "8.13.3"
+ "@cspell/url" "8.14.1"
+ cspell-glob "8.14.1"
+ cspell-io "8.14.1"
find-up-simple "^1.0.0"
-cspell-glob@8.13.3:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.13.3.tgz#7533828ac52eb7ae87e8d58869ffc6fb9299a24e"
- integrity sha512-+jGIMYyKDLmoOJIxNPXRdI7utcvw+9FMSmj1ApIdEff5dCkehi0gtzK4H7orXGYEvRdKQvfaXiyduVi79rXsZQ==
+cspell-glob@8.14.1:
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.14.1.tgz#24cc2ba5edb6c1a7d901e75301605ffd463bc181"
+ integrity sha512-562ZbkBikXlB3JEGlGsi+3Xa4aghc2nqW1DLhcyXId/eunuJuUIqDGeexHkRwb0yBkq1we8O67hJtC3W0ih5GQ==
dependencies:
- "@cspell/url" "8.13.3"
+ "@cspell/url" "8.14.1"
micromatch "^4.0.7"
-cspell-grammar@8.13.3:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.13.3.tgz#147e97a54ad2c8e4925bd84ae2afed7ff14960e2"
- integrity sha512-xPSgKk9HY5EsI8lkMPC9hiZCeAUs+RY/IVliUBW1xEicAJhP4RZIGRdIwtDNNJGwKfNXazjqYhcS4LS0q7xPAQ==
- dependencies:
- "@cspell/cspell-pipe" "8.13.3"
- "@cspell/cspell-types" "8.13.3"
-
-cspell-io@8.13.3:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.13.3.tgz#9f2323aa7ea6edce84c16964c95ee4c83b5b880e"
- integrity sha512-AeMIkz7+4VuJaPKO/v1pUpyUSOOTyLOAfzeTRRAXEt+KRKOUe36MyUmBMza6gzNcX2yD04VgJukRL408TY9ntw==
- dependencies:
- "@cspell/cspell-service-bus" "8.13.3"
- "@cspell/url" "8.13.3"
-
-cspell-lib@8.13.3:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.13.3.tgz#4d2516bbb09148079d634f73c65ffa05a62ae02c"
- integrity sha512-aEqxIILeqDtNoCa47/oSl5c926b50ue3PobYs4usn0Ymf0434RopCP+DCGsF7BPtog4j4XWnEmvkcJs57DYWDg==
- dependencies:
- "@cspell/cspell-bundled-dicts" "8.13.3"
- "@cspell/cspell-pipe" "8.13.3"
- "@cspell/cspell-resolver" "8.13.3"
- "@cspell/cspell-types" "8.13.3"
- "@cspell/dynamic-import" "8.13.3"
- "@cspell/strong-weak-map" "8.13.3"
- "@cspell/url" "8.13.3"
+cspell-grammar@8.14.1:
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.14.1.tgz#289dda25731db1e9d1e31786d2e4cdfd1c4a8838"
+ integrity sha512-q4soR+FDU7Z3Z2gxl9dYP8qtrunH32aozhIGx6kkLWKWSy/jk2HaWdDp2MkpsQUURXLKMJ6PBZfpzR9Mxz3KqA==
+ dependencies:
+ "@cspell/cspell-pipe" "8.14.1"
+ "@cspell/cspell-types" "8.14.1"
+
+cspell-io@8.14.1:
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.14.1.tgz#35786d1b0808b427e2a217b8fbbcbfe6e38b485c"
+ integrity sha512-BQvFFzlPXu0RrBecjryZI6EwegpCeph7CnNoWlBUlO/T6kJiB6uG674n/LyenOImnLRrLUbRt1yZcPxziFHNlA==
+ dependencies:
+ "@cspell/cspell-service-bus" "8.14.1"
+ "@cspell/url" "8.14.1"
+
+cspell-lib@8.14.1:
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.14.1.tgz#eb49735f23d9f642cb79117d9e31b63132ab3031"
+ integrity sha512-wVZVVezge8ubq+zOED1V6EEtrJQZPNJcpNPDnc7ZXwnWiQxREWvQkuBa60EvAezPImxYdVDr8Y0dIS8yLd9WJg==
+ dependencies:
+ "@cspell/cspell-bundled-dicts" "8.14.1"
+ "@cspell/cspell-pipe" "8.14.1"
+ "@cspell/cspell-resolver" "8.14.1"
+ "@cspell/cspell-types" "8.14.1"
+ "@cspell/dynamic-import" "8.14.1"
+ "@cspell/filetypes" "8.14.1"
+ "@cspell/strong-weak-map" "8.14.1"
+ "@cspell/url" "8.14.1"
clear-module "^4.1.2"
comment-json "^4.2.5"
- cspell-config-lib "8.13.3"
- cspell-dictionary "8.13.3"
- cspell-glob "8.13.3"
- cspell-grammar "8.13.3"
- cspell-io "8.13.3"
- cspell-trie-lib "8.13.3"
+ cspell-config-lib "8.14.1"
+ cspell-dictionary "8.14.1"
+ cspell-glob "8.14.1"
+ cspell-grammar "8.14.1"
+ cspell-io "8.14.1"
+ cspell-trie-lib "8.14.1"
env-paths "^3.0.0"
fast-equals "^5.0.1"
gensequence "^7.0.0"
@@ -2809,33 +2815,33 @@ cspell-lib@8.13.3:
vscode-uri "^3.0.8"
xdg-basedir "^5.1.0"
-cspell-trie-lib@8.13.3:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.13.3.tgz#3fe376106faef310c3874685fc6e2ddaa2551066"
- integrity sha512-Z0iLGi9HI+Vf+WhVVeru6dYgQdtaYCKWRlc1SayLfAZhw9BcjrXL8KTXDfAfv/lUgnRu6xwP1isLlDNZECsKVQ==
+cspell-trie-lib@8.14.1:
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.14.1.tgz#2339ee523d30ae7e69e1d87b4911db42533ba122"
+ integrity sha512-2B5pnRHgYHFtdE4N1a0oWCYI1pZVeD1kvcst77ySe520Rg/U18aIET3UzsvN97EDwQ6Y23tHoVsXha0PxD1xfw==
dependencies:
- "@cspell/cspell-pipe" "8.13.3"
- "@cspell/cspell-types" "8.13.3"
+ "@cspell/cspell-pipe" "8.14.1"
+ "@cspell/cspell-types" "8.14.1"
gensequence "^7.0.0"
cspell@^8.10.4:
- version "8.13.3"
- resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.13.3.tgz#cebe77faeed2d6d3e0a6dc244d5c1c3fad5b3ad5"
- integrity sha512-2wv4Eby7g8wDB553fI8IoZjyitoKrD2kmtdeoYUN2EjVs3RMpIOver3fL+0VaFAaN0uLfAoeAAIB5xJEakvZYQ==
- dependencies:
- "@cspell/cspell-json-reporter" "8.13.3"
- "@cspell/cspell-pipe" "8.13.3"
- "@cspell/cspell-types" "8.13.3"
- "@cspell/dynamic-import" "8.13.3"
- "@cspell/url" "8.13.3"
+ version "8.14.1"
+ resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.14.1.tgz#71cd4d8c40b8851c47076fda671f3e186c212eb1"
+ integrity sha512-UwjSLwt3RR8sP1dtjVbLimc8CpziOlVXH0yXb7/nWyMi3wEPWaV3o0VSTtRHRoaYHAjVzNlXDT6kiSr6RqyPog==
+ dependencies:
+ "@cspell/cspell-json-reporter" "8.14.1"
+ "@cspell/cspell-pipe" "8.14.1"
+ "@cspell/cspell-types" "8.14.1"
+ "@cspell/dynamic-import" "8.14.1"
+ "@cspell/url" "8.14.1"
chalk "^5.3.0"
chalk-template "^1.1.0"
commander "^12.1.0"
- cspell-dictionary "8.13.3"
- cspell-gitignore "8.13.3"
- cspell-glob "8.13.3"
- cspell-io "8.13.3"
- cspell-lib "8.13.3"
+ cspell-dictionary "8.14.1"
+ cspell-gitignore "8.14.1"
+ cspell-glob "8.14.1"
+ cspell-io "8.14.1"
+ cspell-lib "8.14.1"
fast-glob "^3.3.2"
fast-json-stable-stringify "^2.1.0"
file-entry-cache "^9.0.0"
From 602e848f228d1b623d1eb54c1946ed74b5101a26 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Aug 2024 21:53:39 +0000
Subject: [PATCH 33/67] Bump rollup from 4.20.0 to 4.21.0
Bumps [rollup](https://github.com/rollup/rollup) from 4.20.0 to 4.21.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.20.0...v4.21.0)
---
updated-dependencies:
- dependency-name: rollup
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 196 +++++++++++++++++++++++++++---------------------------
1 file changed, 98 insertions(+), 98 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 27a1ea573..b548109b7 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1799,85 +1799,85 @@
estree-walker "^2.0.2"
picomatch "^2.3.1"
-"@rollup/rollup-android-arm-eabi@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.20.0.tgz#c3f5660f67030c493a981ac1d34ee9dfe1d8ec0f"
- integrity sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==
-
-"@rollup/rollup-android-arm64@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.20.0.tgz#64161f0b67050023a3859e723570af54a82cff5c"
- integrity sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==
-
-"@rollup/rollup-darwin-arm64@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.20.0.tgz#25f3d57b1da433097cfebc89341b355901615763"
- integrity sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==
-
-"@rollup/rollup-darwin-x64@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.20.0.tgz#d8ddaffb636cc2f59222c50316e27771e48966df"
- integrity sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.20.0.tgz#41bd4fcffa20fb84f3dbac6c5071638f46151885"
- integrity sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==
-
-"@rollup/rollup-linux-arm-musleabihf@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.20.0.tgz#842077c5113a747eb5686f19f2f18c33ecc0acc8"
- integrity sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==
-
-"@rollup/rollup-linux-arm64-gnu@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.20.0.tgz#65d1d5b6778848f55b7823958044bf3e8737e5b7"
- integrity sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==
-
-"@rollup/rollup-linux-arm64-musl@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.20.0.tgz#50eef7d6e24d0fe3332200bb666cad2be8afcf86"
- integrity sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.20.0.tgz#8837e858f53c84607f05ad0602943e96d104c6b4"
- integrity sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==
-
-"@rollup/rollup-linux-riscv64-gnu@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.20.0.tgz#c894ade2300caa447757ddf45787cca246e816a4"
- integrity sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==
-
-"@rollup/rollup-linux-s390x-gnu@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.20.0.tgz#5841e5390d4c82dd5cdf7b2c95a830e3c2f47dd3"
- integrity sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==
-
-"@rollup/rollup-linux-x64-gnu@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.20.0.tgz#cc1f26398bf777807a99226dc13f47eb0f6c720d"
- integrity sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==
-
-"@rollup/rollup-linux-x64-musl@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.20.0.tgz#1507465d9056e0502a590d4c1a00b4d7b1fda370"
- integrity sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==
-
-"@rollup/rollup-win32-arm64-msvc@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.20.0.tgz#86a221f01a2c248104dd0defb4da119f2a73642e"
- integrity sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==
-
-"@rollup/rollup-win32-ia32-msvc@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.20.0.tgz#8bc8f77e02760aa664694b4286d6fbea7f1331c5"
- integrity sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==
-
-"@rollup/rollup-win32-x64-msvc@4.20.0":
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.20.0.tgz#601fffee719a1e8447f908aca97864eec23b2784"
- integrity sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==
+"@rollup/rollup-android-arm-eabi@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.0.tgz#d941173f82f9b041c61b0dc1a2a91dcd06e4b31e"
+ integrity sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA==
+
+"@rollup/rollup-android-arm64@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.0.tgz#7e7157c8543215245ceffc445134d9e843ba51c0"
+ integrity sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA==
+
+"@rollup/rollup-darwin-arm64@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.0.tgz#f0a18a4fc8dc6eb1e94a51fa2adb22876f477947"
+ integrity sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA==
+
+"@rollup/rollup-darwin-x64@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.0.tgz#34b7867613e5cc42d2b85ddc0424228cc33b43f0"
+ integrity sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.0.tgz#422b19ff9ae02b05d3395183d1d43b38c7c8be0b"
+ integrity sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA==
+
+"@rollup/rollup-linux-arm-musleabihf@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.0.tgz#568aa29195ef6fc57ec6ed3f518923764406a8ee"
+ integrity sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w==
+
+"@rollup/rollup-linux-arm64-gnu@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.0.tgz#22309c8bcba9a73114f69165c72bc94b2fbec085"
+ integrity sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w==
+
+"@rollup/rollup-linux-arm64-musl@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.0.tgz#c93c388af6d33f082894b8a60839d7265b2b9bc5"
+ integrity sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.0.tgz#493c5e19e395cf3c6bd860c7139c8a903dea72b4"
+ integrity sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg==
+
+"@rollup/rollup-linux-riscv64-gnu@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.0.tgz#a2eab4346fbe5909165ce99adb935ba30c9fb444"
+ integrity sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg==
+
+"@rollup/rollup-linux-s390x-gnu@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.0.tgz#0bc49a79db4345d78d757bb1b05e73a1b42fa5c3"
+ integrity sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw==
+
+"@rollup/rollup-linux-x64-gnu@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.0.tgz#4fd36a6a41f3406d8693321b13d4f9b7658dd4b9"
+ integrity sha512-e2hrvElFIh6kW/UNBQK/kzqMNY5mO+67YtEh9OA65RM5IJXYTWiXjX6fjIiPaqOkBthYF1EqgiZ6OXKcQsM0hg==
+
+"@rollup/rollup-linux-x64-musl@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.0.tgz#10ebb13bd4469cbad1a5d9b073bd27ec8a886200"
+ integrity sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ==
+
+"@rollup/rollup-win32-arm64-msvc@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.0.tgz#2fef1a90f1402258ef915ae5a94cc91a5a1d5bfc"
+ integrity sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ==
+
+"@rollup/rollup-win32-ia32-msvc@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.0.tgz#a18ad47a95c5f264defb60acdd8c27569f816fc1"
+ integrity sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg==
+
+"@rollup/rollup-win32-x64-msvc@4.21.0":
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.0.tgz#20c09cf44dcb082140cc7f439dd679fe4bba3375"
+ integrity sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ==
"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0":
version "1.0.5"
@@ -5200,28 +5200,28 @@ rollup-plugin-copy@^3.5.0:
is-plain-object "^3.0.0"
rollup@^4.13.0, rollup@^4.18.1:
- version "4.20.0"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.20.0.tgz#f9d602161d29e178f0bf1d9f35f0a26f83939492"
- integrity sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==
+ version "4.21.0"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.0.tgz#28db5f5c556a5180361d35009979ccc749560b9d"
+ integrity sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==
dependencies:
"@types/estree" "1.0.5"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.20.0"
- "@rollup/rollup-android-arm64" "4.20.0"
- "@rollup/rollup-darwin-arm64" "4.20.0"
- "@rollup/rollup-darwin-x64" "4.20.0"
- "@rollup/rollup-linux-arm-gnueabihf" "4.20.0"
- "@rollup/rollup-linux-arm-musleabihf" "4.20.0"
- "@rollup/rollup-linux-arm64-gnu" "4.20.0"
- "@rollup/rollup-linux-arm64-musl" "4.20.0"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.20.0"
- "@rollup/rollup-linux-riscv64-gnu" "4.20.0"
- "@rollup/rollup-linux-s390x-gnu" "4.20.0"
- "@rollup/rollup-linux-x64-gnu" "4.20.0"
- "@rollup/rollup-linux-x64-musl" "4.20.0"
- "@rollup/rollup-win32-arm64-msvc" "4.20.0"
- "@rollup/rollup-win32-ia32-msvc" "4.20.0"
- "@rollup/rollup-win32-x64-msvc" "4.20.0"
+ "@rollup/rollup-android-arm-eabi" "4.21.0"
+ "@rollup/rollup-android-arm64" "4.21.0"
+ "@rollup/rollup-darwin-arm64" "4.21.0"
+ "@rollup/rollup-darwin-x64" "4.21.0"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.21.0"
+ "@rollup/rollup-linux-arm-musleabihf" "4.21.0"
+ "@rollup/rollup-linux-arm64-gnu" "4.21.0"
+ "@rollup/rollup-linux-arm64-musl" "4.21.0"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.21.0"
+ "@rollup/rollup-linux-riscv64-gnu" "4.21.0"
+ "@rollup/rollup-linux-s390x-gnu" "4.21.0"
+ "@rollup/rollup-linux-x64-gnu" "4.21.0"
+ "@rollup/rollup-linux-x64-musl" "4.21.0"
+ "@rollup/rollup-win32-arm64-msvc" "4.21.0"
+ "@rollup/rollup-win32-ia32-msvc" "4.21.0"
+ "@rollup/rollup-win32-x64-msvc" "4.21.0"
fsevents "~2.3.2"
run-parallel@^1.1.9:
From f7d78a4f38cb727b5def8653104d97b32273a918 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 20 Aug 2024 21:04:23 +0000
Subject: [PATCH 34/67] Bump cspell from 8.14.1 to 8.14.2
Bumps [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) from 8.14.1 to 8.14.2.
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.14.2/packages/cspell)
---
updated-dependencies:
- dependency-name: cspell
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 240 +++++++++++++++++++++++++++---------------------------
1 file changed, 120 insertions(+), 120 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a0a3d40d5..549950e4e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1031,10 +1031,10 @@
resolved "https://registry.yarnpkg.com/@colors%2fcolors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
-"@cspell/cspell-bundled-dicts@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.14.1.tgz#859edc6aa96d3d2d4b76ef6f06c2121b29e3a4cd"
- integrity sha512-yM5cDCbkGttCWBQuSseECHGFF2h1RpX/ZI1I+evuFBW+eYMJm2JeNLDFyuAu7TzCsNtA+PZMs3ctqIP9xg9hHg==
+"@cspell/cspell-bundled-dicts@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.14.2.tgz#746706485228e055ff342a66191cb6b9e58e748a"
+ integrity sha512-Kv2Utj/RTSxfufGXkkoTZ/3ErCsYWpCijtDFr/FwSsM7mC0PzLpdlcD9xjtgrJO5Kwp7T47iTG21U4Mwddyi8Q==
dependencies:
"@cspell/dict-ada" "^4.0.2"
"@cspell/dict-aws" "^4.0.3"
@@ -1089,34 +1089,34 @@
"@cspell/dict-typescript" "^3.1.6"
"@cspell/dict-vue" "^3.0.0"
-"@cspell/cspell-json-reporter@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.14.1.tgz#76a9130087243cd8955f06655bea297a80652be6"
- integrity sha512-eJpgmocT+DY+uy9+sHCz6Ir8YVg7b/hnf5N7dITHlI8dnzgoScTZG2nZhVhJozrgb44B1dZuJzVR1DBLKgZY8A==
+"@cspell/cspell-json-reporter@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.14.2.tgz#c05e6e0d6e63072e3f416c9b3088aa8329de19a1"
+ integrity sha512-TZavcnNIZKX1xC/GNj80RgFVKHCT4pHT0qm9jCsQFH2QJfyCrUlkEvotKGSQ04lAyCwWg6Enq95qhouF8YbKUQ==
dependencies:
- "@cspell/cspell-types" "8.14.1"
+ "@cspell/cspell-types" "8.14.2"
-"@cspell/cspell-pipe@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.14.1.tgz#bc5c8e57805beb3e675adfc1f192b66104fe86b6"
- integrity sha512-KSFu/yyoJekezT9Ex5vgyI0a9tpRVXV4KEfOfL1gH/xbWBTiYx+RyEWEefebMxlMp7tdJiNI7HI0vvJ6YdUdsA==
+"@cspell/cspell-pipe@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.14.2.tgz#8f9df27fff5c6c55e29fa6967768a38b5494a665"
+ integrity sha512-aWMoXZAXEre0/M9AYWOW33YyOJZ06i4vvsEpWBDWpHpWQEmsR/7cMMgld8Pp3wlEjIUclUAKTYmrZ61PFWU/og==
-"@cspell/cspell-resolver@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.14.1.tgz#da14ebbd2415a191706785a8593357c789eca9d8"
- integrity sha512-MMr3L1yrhITH8eG0fvXNEMo94g4MGSIeHzKKvq40fr39Oox/1MBxYAbWiI2NQ/Bxnbq854SY8pfwTSKjyNEGig==
+"@cspell/cspell-resolver@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.14.2.tgz#0cfaa0d0f613feab76ddb30a1d0a60d428726a0c"
+ integrity sha512-pSyBsAvslaN0dx0pHdvECJEuFDDBJGAD6G8U4BVbIyj2OPk0Ox0HrZIj6csYxxoJERAgNO/q7yCPwa4j9NNFXg==
dependencies:
global-directory "^4.0.1"
-"@cspell/cspell-service-bus@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.14.1.tgz#85edb1ec88080226c4dfddd62aafaf104a672449"
- integrity sha512-uKrrCLvEkmAPB4vjUw9GM+B3TV2VsWpV6L3wkcQ9+zn9iPYgYk2WkvSHlOunnZ4u1TzcTdd88ZQtMjati3DLCg==
+"@cspell/cspell-service-bus@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.14.2.tgz#f0d317fd4de99700b2b7f10b05d88dc2ea55d7f8"
+ integrity sha512-WUF7xf3YgXYIqjmBwLcVugYIrYL4WfXchgSo9rmbbnOcAArzsK+HKfzb4AniZAJ1unxcIQ0JnVlRmnCAKPjjLg==
-"@cspell/cspell-types@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.14.1.tgz#d668acfe31c026d8c8215e469c98d0d90d6211bf"
- integrity sha512-E7tgF6867gsjttITAXF+8nS4BjZ4JQW4Gbrse1RP7jdW7y1biXipBfZxngsEbnR209MrZAnSobS40m9ih7gWfQ==
+"@cspell/cspell-types@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.14.2.tgz#e1bae42766b43ff6d943b57bb7830bc873f25c94"
+ integrity sha512-MRY8MjBNOKGMDSkxAKueYAgVL43miO+lDcLCBBP+7cNXqHiUFMIZteONcGp3kJT0dWS04dN6lKAXvaNF0aWcng==
"@cspell/dict-ada@^4.0.2":
version "4.0.2"
@@ -1385,27 +1385,27 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-vue/-/dict-vue-3.0.0.tgz#68ccb432ad93fcb0fd665352d075ae9a64ea9250"
integrity sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==
-"@cspell/dynamic-import@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.14.1.tgz#ed188954ba8fda2ab93180ac2470763e37195346"
- integrity sha512-zGnymwieuFigqz839cKCF9JB90nUm50SMqopWClMl4LFOpqpuCucn/Slh4CLGu2vri4iqCvRweDxZCsi/5qYiw==
+"@cspell/dynamic-import@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.14.2.tgz#4968d1b6b20806f9bb78b92c628300cad288072f"
+ integrity sha512-5MbqtIligU7yPwHWU/5yFCgMvur4i1bRAF1Cy8y2dDtHsa204S/w/SaXs+51EFLp2eNbCiBisCBrwJFT7R1RxA==
dependencies:
import-meta-resolve "^4.1.0"
-"@cspell/filetypes@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/filetypes/-/filetypes-8.14.1.tgz#aa2c4772a62cad36bd72f161e5ab7f3508a26e2c"
- integrity sha512-jOcTFzHJ3c1uTZLm3BvLrZ8TakXLIimsFGwvk/qTA1EYgUPC2a0TypGCxR0NCHmpMlZvfAT5iAksDIiCHq1yjg==
+"@cspell/filetypes@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/filetypes/-/filetypes-8.14.2.tgz#e05d48a504efa72d9cebd9fb45b666e116673335"
+ integrity sha512-ZevArA0mWeVTTqHicxCPZIAeCibpY3NwWK/x6d1Lgu7RPk/daoGAM546Q2SLChFu+r10tIH7pRG212A6Q9ihPA==
-"@cspell/strong-weak-map@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.14.1.tgz#94b4a698bf2ebec22ffaa796108f06a2290f386f"
- integrity sha512-idQVm12vzQHLMpV4ETDFBPpSP7TTf0hRrdsY5i/La6uzZE05b5QxadfInNtbKV/Tf2OpjV3dygALOo2932xChw==
+"@cspell/strong-weak-map@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.14.2.tgz#4fd8fd616690125775c0f7a596a1295b03e9a43d"
+ integrity sha512-7sRzJc392CQYNNrtdPEfOHJdRqsqf6nASCtbS5A9hL2UrdWQ4uN7r/D+Y1HpuizwY9eOkZvarcFfsYt5wE0Pug==
-"@cspell/url@8.14.1":
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.14.1.tgz#3a7f953f0f7d719a012c3a1ab4ef902b6248386c"
- integrity sha512-K8TSiDti+mhuITezwr0fpmD756Y52cbJdxAgoXioL3Ri6ZoyQyhyhsJFeE6kNZLq24KwddZa8WJaY7hHKylygg==
+"@cspell/url@8.14.2":
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.14.2.tgz#8a6d30011596ccefb48a6135225554011c46dc03"
+ integrity sha512-YmWW+B/2XQcCynLpiAQF77Bitm5Cynw3/BICZkbdveKjJkUzEmXB+U2qWuwXOyU8xUYuwkP63YM8McnI567rUA==
"@csstools/css-parser-algorithms@^3.0.0":
version "3.0.0"
@@ -2732,80 +2732,80 @@ crypt@0.0.2:
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
-cspell-config-lib@8.14.1:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.14.1.tgz#e26943bac418a6f43eaeb59fc9e18c720ed01ecd"
- integrity sha512-660v4G+3AikdGfSri09YGx7enR4RWPIPLiFKA+3F+CY2lj16l4bh7B/aNfU9oYRDvCcWBCik53AyOne/bSuPVg==
+cspell-config-lib@8.14.2:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.14.2.tgz#cc401080c14dab7b355bda4e90a22b7dfb05ffd6"
+ integrity sha512-yHP1BdcH5dbjb8qiZr6+bxEnJ+rxTULQ00wBz3eBPWCghJywEAYYvMWoYuxVtPpndlkKYC1wJAHsyNkweQyepA==
dependencies:
- "@cspell/cspell-types" "8.14.1"
+ "@cspell/cspell-types" "8.14.2"
comment-json "^4.2.5"
yaml "^2.5.0"
-cspell-dictionary@8.14.1:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.14.1.tgz#9136aaef7c70ff61b560f4387e0243e424004968"
- integrity sha512-+QI3RLzfA4bkKEa5H9OQx2cPN+f5mXx8zbmccoJXxgjUi3fWmNGz4LPHnNQQ7pWXxQ2V81UXDwd7qRN9qkzISQ==
+cspell-dictionary@8.14.2:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.14.2.tgz#0268d437eed78bfcf6eadc3674a3e3104e010d7a"
+ integrity sha512-gWuAvf6queGGUvGbfAxxUq55cZ0OevWPbjnCrSB0PpJ4tqdFd8dLcvVrIKzoE2sBXKPw2NDkmoEngs6iGavC0w==
dependencies:
- "@cspell/cspell-pipe" "8.14.1"
- "@cspell/cspell-types" "8.14.1"
- cspell-trie-lib "8.14.1"
+ "@cspell/cspell-pipe" "8.14.2"
+ "@cspell/cspell-types" "8.14.2"
+ cspell-trie-lib "8.14.2"
fast-equals "^5.0.1"
-cspell-gitignore@8.14.1:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.14.1.tgz#26f0c41642015faf9bf042e39b3a3064d896ccdd"
- integrity sha512-f/3rZqHKTFOB37Ey8b7eIQwom4w+wKKzr1sEsoEdLsWyRAd7HdSXkDG6O0S3RYvUYoiXZM9HQsQY695CVhq2wQ==
+cspell-gitignore@8.14.2:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.14.2.tgz#239995ac11652a9978126ec35b12d663010a90f3"
+ integrity sha512-lrO/49NaKBpkR7vFxv4OOY+oHmsG5+gNQejrBBWD9Nv9vvjJtz/G36X/rcN6M6tFcQQMWwa01kf04nxz8Ejuhg==
dependencies:
- "@cspell/url" "8.14.1"
- cspell-glob "8.14.1"
- cspell-io "8.14.1"
+ "@cspell/url" "8.14.2"
+ cspell-glob "8.14.2"
+ cspell-io "8.14.2"
find-up-simple "^1.0.0"
-cspell-glob@8.14.1:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.14.1.tgz#24cc2ba5edb6c1a7d901e75301605ffd463bc181"
- integrity sha512-562ZbkBikXlB3JEGlGsi+3Xa4aghc2nqW1DLhcyXId/eunuJuUIqDGeexHkRwb0yBkq1we8O67hJtC3W0ih5GQ==
+cspell-glob@8.14.2:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.14.2.tgz#09f53191e58db113837a088a7a9ea7a181f2deb7"
+ integrity sha512-9Q1Kgoo1ev3fKTpp9y5n8M4RLxd8B0f5o4y5FQe4dBU0j/bt+/YDrLZNWDm77JViV606XQ6fimG1FTTq6pT9/g==
dependencies:
- "@cspell/url" "8.14.1"
+ "@cspell/url" "8.14.2"
micromatch "^4.0.7"
-cspell-grammar@8.14.1:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.14.1.tgz#289dda25731db1e9d1e31786d2e4cdfd1c4a8838"
- integrity sha512-q4soR+FDU7Z3Z2gxl9dYP8qtrunH32aozhIGx6kkLWKWSy/jk2HaWdDp2MkpsQUURXLKMJ6PBZfpzR9Mxz3KqA==
- dependencies:
- "@cspell/cspell-pipe" "8.14.1"
- "@cspell/cspell-types" "8.14.1"
-
-cspell-io@8.14.1:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.14.1.tgz#35786d1b0808b427e2a217b8fbbcbfe6e38b485c"
- integrity sha512-BQvFFzlPXu0RrBecjryZI6EwegpCeph7CnNoWlBUlO/T6kJiB6uG674n/LyenOImnLRrLUbRt1yZcPxziFHNlA==
- dependencies:
- "@cspell/cspell-service-bus" "8.14.1"
- "@cspell/url" "8.14.1"
-
-cspell-lib@8.14.1:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.14.1.tgz#eb49735f23d9f642cb79117d9e31b63132ab3031"
- integrity sha512-wVZVVezge8ubq+zOED1V6EEtrJQZPNJcpNPDnc7ZXwnWiQxREWvQkuBa60EvAezPImxYdVDr8Y0dIS8yLd9WJg==
- dependencies:
- "@cspell/cspell-bundled-dicts" "8.14.1"
- "@cspell/cspell-pipe" "8.14.1"
- "@cspell/cspell-resolver" "8.14.1"
- "@cspell/cspell-types" "8.14.1"
- "@cspell/dynamic-import" "8.14.1"
- "@cspell/filetypes" "8.14.1"
- "@cspell/strong-weak-map" "8.14.1"
- "@cspell/url" "8.14.1"
+cspell-grammar@8.14.2:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.14.2.tgz#a37e4f6ce6aae8eba2ba57822a4cfe0cd7fd8909"
+ integrity sha512-eYwceVP80FGYVJenE42ALnvEKOXaXjq4yVbb1Ni1umO/9qamLWNCQ1RP6rRACy5e/cXviAbhrQ5Mtw6n+pyPEQ==
+ dependencies:
+ "@cspell/cspell-pipe" "8.14.2"
+ "@cspell/cspell-types" "8.14.2"
+
+cspell-io@8.14.2:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.14.2.tgz#501b26c630f6d8e9fc89fce1ad806c10b440723a"
+ integrity sha512-uaKpHiY3DAgfdzgKMQml6U8F8o9udMuYxGqYa5FVfN7D5Ap7B2edQzSLTUYwxrFEn4skSfp6XY73+nzJvxzH4Q==
+ dependencies:
+ "@cspell/cspell-service-bus" "8.14.2"
+ "@cspell/url" "8.14.2"
+
+cspell-lib@8.14.2:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.14.2.tgz#ca404ad026c7150c96426a11faa5c9f761015bbb"
+ integrity sha512-d2oiIXHXnADmnhIuFLOdNE63L7OUfzgpLbYaqAWbkImCUDkevfGrOgnX8TJ03fUgZID4nvQ+3kgu/n2j4eLZjQ==
+ dependencies:
+ "@cspell/cspell-bundled-dicts" "8.14.2"
+ "@cspell/cspell-pipe" "8.14.2"
+ "@cspell/cspell-resolver" "8.14.2"
+ "@cspell/cspell-types" "8.14.2"
+ "@cspell/dynamic-import" "8.14.2"
+ "@cspell/filetypes" "8.14.2"
+ "@cspell/strong-weak-map" "8.14.2"
+ "@cspell/url" "8.14.2"
clear-module "^4.1.2"
comment-json "^4.2.5"
- cspell-config-lib "8.14.1"
- cspell-dictionary "8.14.1"
- cspell-glob "8.14.1"
- cspell-grammar "8.14.1"
- cspell-io "8.14.1"
- cspell-trie-lib "8.14.1"
+ cspell-config-lib "8.14.2"
+ cspell-dictionary "8.14.2"
+ cspell-glob "8.14.2"
+ cspell-grammar "8.14.2"
+ cspell-io "8.14.2"
+ cspell-trie-lib "8.14.2"
env-paths "^3.0.0"
fast-equals "^5.0.1"
gensequence "^7.0.0"
@@ -2815,33 +2815,33 @@ cspell-lib@8.14.1:
vscode-uri "^3.0.8"
xdg-basedir "^5.1.0"
-cspell-trie-lib@8.14.1:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.14.1.tgz#2339ee523d30ae7e69e1d87b4911db42533ba122"
- integrity sha512-2B5pnRHgYHFtdE4N1a0oWCYI1pZVeD1kvcst77ySe520Rg/U18aIET3UzsvN97EDwQ6Y23tHoVsXha0PxD1xfw==
+cspell-trie-lib@8.14.2:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.14.2.tgz#3748544d4f6ca85c3d72a1f2eb72b930c898865b"
+ integrity sha512-rZMbaEBGoyy4/zxKECaMyVyGLbuUxYmZ5jlEgiA3xPtEdWwJ4iWRTo5G6dWbQsXoxPYdAXXZ0/q0GQ2y6Jt0kw==
dependencies:
- "@cspell/cspell-pipe" "8.14.1"
- "@cspell/cspell-types" "8.14.1"
+ "@cspell/cspell-pipe" "8.14.2"
+ "@cspell/cspell-types" "8.14.2"
gensequence "^7.0.0"
cspell@^8.10.4:
- version "8.14.1"
- resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.14.1.tgz#71cd4d8c40b8851c47076fda671f3e186c212eb1"
- integrity sha512-UwjSLwt3RR8sP1dtjVbLimc8CpziOlVXH0yXb7/nWyMi3wEPWaV3o0VSTtRHRoaYHAjVzNlXDT6kiSr6RqyPog==
- dependencies:
- "@cspell/cspell-json-reporter" "8.14.1"
- "@cspell/cspell-pipe" "8.14.1"
- "@cspell/cspell-types" "8.14.1"
- "@cspell/dynamic-import" "8.14.1"
- "@cspell/url" "8.14.1"
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.14.2.tgz#d1434bc66831113121a91427c39dc22802dc4c31"
+ integrity sha512-ii/W7fwO4chNQVYl1C/8k7RW8EXzLb69rvg08p8mSJx8B2UasVJ9tuJpTH2Spo1jX6N3H0dKPWUbd1fAmdAhPg==
+ dependencies:
+ "@cspell/cspell-json-reporter" "8.14.2"
+ "@cspell/cspell-pipe" "8.14.2"
+ "@cspell/cspell-types" "8.14.2"
+ "@cspell/dynamic-import" "8.14.2"
+ "@cspell/url" "8.14.2"
chalk "^5.3.0"
chalk-template "^1.1.0"
commander "^12.1.0"
- cspell-dictionary "8.14.1"
- cspell-gitignore "8.14.1"
- cspell-glob "8.14.1"
- cspell-io "8.14.1"
- cspell-lib "8.14.1"
+ cspell-dictionary "8.14.2"
+ cspell-gitignore "8.14.2"
+ cspell-glob "8.14.2"
+ cspell-io "8.14.2"
+ cspell-lib "8.14.2"
fast-glob "^3.3.2"
fast-json-stable-stringify "^2.1.0"
file-entry-cache "^9.0.0"
From 4f418576c50f5f9a806b009c27999ebcd1091e83 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 20 Aug 2024 21:04:37 +0000
Subject: [PATCH 35/67] Bump vite from 5.4.1 to 5.4.2
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.1 to 5.4.2.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.2/packages/vite)
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a0a3d40d5..9ee56a854 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5205,7 +5205,7 @@ rollup-plugin-copy@^3.5.0:
globby "10.0.1"
is-plain-object "^3.0.0"
-rollup@^4.13.0, rollup@^4.18.1:
+rollup@^4.18.1, rollup@^4.20.0:
version "4.21.0"
resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.0.tgz#28db5f5c556a5180361d35009979ccc749560b9d"
integrity sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==
@@ -5981,13 +5981,13 @@ verror@1.10.0:
extsprintf "^1.2.0"
vite@^5.3.3:
- version "5.4.1"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.1.tgz#2aa72370de824d23f53658affd807e4c9905b058"
- integrity sha512-1oE6yuNXssjrZdblI9AfBbHCC41nnyoVoEZxQnID6yvQZAFBzxxkqoFLtHUMkYunL8hwOLEjgTuxpkRxvba3kA==
+ version "5.4.2"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.2.tgz#8acb6ec4bfab823cdfc1cb2d6c53ed311bc4e47e"
+ integrity sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==
dependencies:
esbuild "^0.21.3"
postcss "^8.4.41"
- rollup "^4.13.0"
+ rollup "^4.20.0"
optionalDependencies:
fsevents "~2.3.3"
From 63ee4a6ca1b77f23baf46bfb420bbb1db48cac57 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 20 Aug 2024 21:04:47 +0000
Subject: [PATCH 36/67] Bump core-js from 3.38.0 to 3.38.1
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.38.0 to 3.38.1.
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.38.1/packages/core-js)
---
updated-dependencies:
- dependency-name: core-js
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a0a3d40d5..018c36f8f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2676,9 +2676,9 @@ core-js-compat@^3.36.1, core-js-compat@^3.37.1:
browserslist "^4.23.0"
core-js@^3.37.1:
- version "3.38.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.38.0.tgz#8acb7c050bf2ccbb35f938c0d040132f6110f636"
- integrity sha512-XPpwqEodRljce9KswjZShh95qJ1URisBeKCjUdq27YdenkslVe7OO0ZJhlYXAChW7OhXaRLl8AAba7IBfoIHug==
+ version "3.38.1"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.38.1.tgz#aa375b79a286a670388a1a363363d53677c0383e"
+ integrity sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==
core-util-is@1.0.2:
version "1.0.2"
From c17eb7cc98a3e6182b3d5261939e1f60bdefdac7 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 22 Aug 2024 21:12:31 +0000
Subject: [PATCH 37/67] Bump @babel/preset-env from 7.25.3 to 7.25.4
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.25.3 to 7.25.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.4/packages/babel-preset-env)
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 224 ++++++++++++++++++++++++++++++++++--------------------
1 file changed, 141 insertions(+), 83 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a0a3d40d5..3f38278f3 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -18,10 +18,10 @@
"@babel/highlight" "^7.24.7"
picocolors "^1.0.0"
-"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2":
- version "7.25.2"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.2.tgz#e41928bd33475305c586f6acbbb7e3ade7a6f7f5"
- integrity sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==
+"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2", "@babel/compat-data@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb"
+ integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==
"@babel/core@^7.24.8":
version "7.25.2"
@@ -54,6 +54,16 @@
"@jridgewell/trace-mapping" "^0.3.25"
jsesc "^2.5.1"
+"@babel/generator@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.4.tgz#1dc63c1c9caae9e6dc24e264eac254eb25005669"
+ integrity sha512-NFtZmZsyzDPJnk9Zg3BbTfKKc9UlHYzD0E//p2Z3B9nCwwtJW9T0gVbCz8+fBngnn4zf1Dr3IK8PHQQHq0lDQw==
+ dependencies:
+ "@babel/types" "^7.25.4"
+ "@jridgewell/gen-mapping" "^0.3.5"
+ "@jridgewell/trace-mapping" "^0.3.25"
+ jsesc "^2.5.1"
+
"@babel/helper-annotate-as-pure@^7.24.7":
version "7.24.7"
resolved "https://registry.yarnpkg.com/@babel%2fhelper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab"
@@ -95,6 +105,19 @@
"@babel/helper-split-export-declaration" "^7.24.7"
semver "^6.3.1"
+"@babel/helper-create-class-features-plugin@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz#57eaf1af38be4224a9d9dd01ddde05b741f50e14"
+ integrity sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.24.7"
+ "@babel/helper-member-expression-to-functions" "^7.24.8"
+ "@babel/helper-optimise-call-expression" "^7.24.7"
+ "@babel/helper-replace-supers" "^7.25.0"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7"
+ "@babel/traverse" "^7.25.4"
+ semver "^6.3.1"
+
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7":
version "7.24.7"
resolved "https://registry.yarnpkg.com/@babel%2fhelper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz#be4f435a80dc2b053c76eeb4b7d16dd22cfc89da"
@@ -113,7 +136,16 @@
regexpu-core "^5.3.1"
semver "^6.3.1"
-"@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2":
+"@babel/helper-create-regexp-features-plugin@^7.25.2":
+ version "7.25.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz#24c75974ed74183797ffd5f134169316cd1808d9"
+ integrity sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.24.7"
+ regexpu-core "^5.3.1"
+ semver "^6.3.1"
+
+"@babel/helper-define-polyfill-provider@^0.6.2":
version "0.6.2"
resolved "https://registry.yarnpkg.com/@babel%2fhelper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d"
integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==
@@ -308,6 +340,13 @@
dependencies:
"@babel/types" "^7.25.2"
+"@babel/parser@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.4.tgz#af4f2df7d02440286b7de57b1c21acfb2a6f257a"
+ integrity sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==
+ dependencies:
+ "@babel/types" "^7.25.4"
+
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.3":
version "7.25.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz#dca427b45a6c0f5c095a1c639dfe2476a3daba7f"
@@ -486,15 +525,15 @@
dependencies:
"@babel/helper-plugin-utils" "^7.24.7"
-"@babel/plugin-transform-async-generator-functions@^7.25.0":
- version "7.25.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz#b785cf35d73437f6276b1e30439a57a50747bddf"
- integrity sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==
+"@babel/plugin-transform-async-generator-functions@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz#2afd4e639e2d055776c9f091b6c0c180ed8cf083"
+ integrity sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==
dependencies:
"@babel/helper-plugin-utils" "^7.24.8"
"@babel/helper-remap-async-to-generator" "^7.25.0"
"@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/traverse" "^7.25.0"
+ "@babel/traverse" "^7.25.4"
"@babel/plugin-transform-async-to-generator@^7.24.7":
version "7.24.7"
@@ -519,13 +558,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.24.8"
-"@babel/plugin-transform-class-properties@^7.24.7":
- version "7.24.7"
- resolved "https://registry.yarnpkg.com/@babel%2fplugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz#256879467b57b0b68c7ddfc5b76584f398cd6834"
- integrity sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==
+"@babel/plugin-transform-class-properties@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz#bae7dbfcdcc2e8667355cd1fb5eda298f05189fd"
+ integrity sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.24.7"
- "@babel/helper-plugin-utils" "^7.24.7"
+ "@babel/helper-create-class-features-plugin" "^7.25.4"
+ "@babel/helper-plugin-utils" "^7.24.8"
"@babel/plugin-transform-class-static-block@^7.24.7":
version "7.24.7"
@@ -536,16 +575,16 @@
"@babel/helper-plugin-utils" "^7.24.7"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
-"@babel/plugin-transform-classes@^7.25.0":
- version "7.25.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.0.tgz#63122366527d88e0ef61b612554fe3f8c793991e"
- integrity sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==
+"@babel/plugin-transform-classes@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz#d29dbb6a72d79f359952ad0b66d88518d65ef89a"
+ integrity sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.7"
- "@babel/helper-compilation-targets" "^7.24.8"
+ "@babel/helper-compilation-targets" "^7.25.2"
"@babel/helper-plugin-utils" "^7.24.8"
"@babel/helper-replace-supers" "^7.25.0"
- "@babel/traverse" "^7.25.0"
+ "@babel/traverse" "^7.25.4"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.24.7":
@@ -765,13 +804,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.24.7"
-"@babel/plugin-transform-private-methods@^7.24.7":
- version "7.24.7"
- resolved "https://registry.yarnpkg.com/@babel%2fplugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz#e6318746b2ae70a59d023d5cc1344a2ba7a75f5e"
- integrity sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==
+"@babel/plugin-transform-private-methods@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.4.tgz#9bbefbe3649f470d681997e0b64a4b254d877242"
+ integrity sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.24.7"
- "@babel/helper-plugin-utils" "^7.24.7"
+ "@babel/helper-create-class-features-plugin" "^7.25.4"
+ "@babel/helper-plugin-utils" "^7.24.8"
"@babel/plugin-transform-private-property-in-object@^7.24.7":
version "7.24.7"
@@ -864,20 +903,20 @@
"@babel/helper-create-regexp-features-plugin" "^7.24.7"
"@babel/helper-plugin-utils" "^7.24.7"
-"@babel/plugin-transform-unicode-sets-regex@^7.24.7":
- version "7.24.7"
- resolved "https://registry.yarnpkg.com/@babel%2fplugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz#d40705d67523803a576e29c63cef6e516b858ed9"
- integrity sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==
+"@babel/plugin-transform-unicode-sets-regex@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.4.tgz#be664c2a0697ffacd3423595d5edef6049e8946c"
+ integrity sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.24.7"
- "@babel/helper-plugin-utils" "^7.24.7"
+ "@babel/helper-create-regexp-features-plugin" "^7.25.2"
+ "@babel/helper-plugin-utils" "^7.24.8"
"@babel/preset-env@^7.24.8":
- version "7.25.3"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.3.tgz#0bf4769d84ac51d1073ab4a86f00f30a3a83c67c"
- integrity sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.4.tgz#be23043d43a34a2721cd0f676c7ba6f1481f6af6"
+ integrity sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==
dependencies:
- "@babel/compat-data" "^7.25.2"
+ "@babel/compat-data" "^7.25.4"
"@babel/helper-compilation-targets" "^7.25.2"
"@babel/helper-plugin-utils" "^7.24.8"
"@babel/helper-validator-option" "^7.24.8"
@@ -906,13 +945,13 @@
"@babel/plugin-syntax-top-level-await" "^7.14.5"
"@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
"@babel/plugin-transform-arrow-functions" "^7.24.7"
- "@babel/plugin-transform-async-generator-functions" "^7.25.0"
+ "@babel/plugin-transform-async-generator-functions" "^7.25.4"
"@babel/plugin-transform-async-to-generator" "^7.24.7"
"@babel/plugin-transform-block-scoped-functions" "^7.24.7"
"@babel/plugin-transform-block-scoping" "^7.25.0"
- "@babel/plugin-transform-class-properties" "^7.24.7"
+ "@babel/plugin-transform-class-properties" "^7.25.4"
"@babel/plugin-transform-class-static-block" "^7.24.7"
- "@babel/plugin-transform-classes" "^7.25.0"
+ "@babel/plugin-transform-classes" "^7.25.4"
"@babel/plugin-transform-computed-properties" "^7.24.7"
"@babel/plugin-transform-destructuring" "^7.24.8"
"@babel/plugin-transform-dotall-regex" "^7.24.7"
@@ -940,7 +979,7 @@
"@babel/plugin-transform-optional-catch-binding" "^7.24.7"
"@babel/plugin-transform-optional-chaining" "^7.24.8"
"@babel/plugin-transform-parameters" "^7.24.7"
- "@babel/plugin-transform-private-methods" "^7.24.7"
+ "@babel/plugin-transform-private-methods" "^7.25.4"
"@babel/plugin-transform-private-property-in-object" "^7.24.7"
"@babel/plugin-transform-property-literals" "^7.24.7"
"@babel/plugin-transform-regenerator" "^7.24.7"
@@ -953,10 +992,10 @@
"@babel/plugin-transform-unicode-escapes" "^7.24.7"
"@babel/plugin-transform-unicode-property-regex" "^7.24.7"
"@babel/plugin-transform-unicode-regex" "^7.24.7"
- "@babel/plugin-transform-unicode-sets-regex" "^7.24.7"
+ "@babel/plugin-transform-unicode-sets-regex" "^7.25.4"
"@babel/preset-modules" "0.1.6-no-external-plugins"
babel-plugin-polyfill-corejs2 "^0.4.10"
- babel-plugin-polyfill-corejs3 "^0.10.4"
+ babel-plugin-polyfill-corejs3 "^0.10.6"
babel-plugin-polyfill-regenerator "^0.6.1"
core-js-compat "^3.37.1"
semver "^6.3.1"
@@ -1017,6 +1056,19 @@
debug "^4.3.1"
globals "^11.1.0"
+"@babel/traverse@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.4.tgz#648678046990f2957407e3086e97044f13c3e18e"
+ integrity sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==
+ dependencies:
+ "@babel/code-frame" "^7.24.7"
+ "@babel/generator" "^7.25.4"
+ "@babel/parser" "^7.25.4"
+ "@babel/template" "^7.25.0"
+ "@babel/types" "^7.25.4"
+ debug "^4.3.1"
+ globals "^11.1.0"
+
"@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.4.4":
version "7.25.2"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.2.tgz#55fb231f7dc958cd69ea141a4c2997e819646125"
@@ -1026,6 +1078,15 @@
"@babel/helper-validator-identifier" "^7.24.7"
to-fast-properties "^2.0.0"
+"@babel/types@^7.25.4":
+ version "7.25.4"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.4.tgz#6bcb46c72fdf1012a209d016c07f769e10adcb5f"
+ integrity sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==
+ dependencies:
+ "@babel/helper-string-parser" "^7.24.8"
+ "@babel/helper-validator-identifier" "^7.24.7"
+ to-fast-properties "^2.0.0"
+
"@colors/colors@1.5.0":
version "1.5.0"
resolved "https://registry.yarnpkg.com/@colors%2fcolors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
@@ -2230,13 +2291,13 @@ babel-plugin-polyfill-corejs2@^0.4.10:
"@babel/helper-define-polyfill-provider" "^0.6.2"
semver "^6.3.1"
-babel-plugin-polyfill-corejs3@^0.10.4:
- version "0.10.4"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77"
- integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==
+babel-plugin-polyfill-corejs3@^0.10.6:
+ version "0.10.6"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7"
+ integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.6.1"
- core-js-compat "^3.36.1"
+ "@babel/helper-define-polyfill-provider" "^0.6.2"
+ core-js-compat "^3.38.0"
babel-plugin-polyfill-regenerator@^0.6.1:
version "0.6.2"
@@ -2304,16 +2365,6 @@ braces@^3.0.3, braces@~3.0.2:
dependencies:
fill-range "^7.1.1"
-browserslist@^4.23.0:
- version "4.23.1"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.1.tgz#ce4af0534b3d37db5c1a4ca98b9080f985041e96"
- integrity sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==
- dependencies:
- caniuse-lite "^1.0.30001629"
- electron-to-chromium "^1.4.796"
- node-releases "^2.0.14"
- update-browserslist-db "^1.0.16"
-
browserslist@^4.23.1:
version "4.23.2"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.2.tgz#244fe803641f1c19c28c48c4b6ec9736eb3d32ed"
@@ -2324,6 +2375,16 @@ browserslist@^4.23.1:
node-releases "^2.0.14"
update-browserslist-db "^1.1.0"
+browserslist@^4.23.3:
+ version "4.23.3"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.3.tgz#debb029d3c93ebc97ffbc8d9cbb03403e227c800"
+ integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==
+ dependencies:
+ caniuse-lite "^1.0.30001646"
+ electron-to-chromium "^1.5.4"
+ node-releases "^2.0.18"
+ update-browserslist-db "^1.1.0"
+
buffer-crc32@~0.2.3:
version "0.2.13"
resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
@@ -2373,16 +2434,16 @@ camelcase@^2.0.1:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
integrity sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==
-caniuse-lite@^1.0.30001629:
- version "1.0.30001638"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz#598e1f0c2ac36f37ebc3f5b8887a32ca558e5d56"
- integrity sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==
-
caniuse-lite@^1.0.30001640:
version "1.0.30001641"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001641.tgz#3572862cd18befae3f637f2a1101cc033c6782ac"
integrity sha512-Phv5thgl67bHYo1TtMY/MurjkHhV4EDaCosezRXgZ8jzA/Ub+wjxAvbGvjoFENStinwi5kCyOYV3mi5tOGykwA==
+caniuse-lite@^1.0.30001646:
+ version "1.0.30001651"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz#52de59529e8b02b1aedcaaf5c05d9e23c0c28138"
+ integrity sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==
+
caseless@~0.12.0:
version "0.12.0"
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
@@ -2668,12 +2729,12 @@ convert-source-map@^2.0.0:
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
-core-js-compat@^3.36.1, core-js-compat@^3.37.1:
- version "3.37.1"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.1.tgz#c844310c7852f4bdf49b8d339730b97e17ff09ee"
- integrity sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==
+core-js-compat@^3.37.1, core-js-compat@^3.38.0:
+ version "3.38.1"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.38.1.tgz#2bc7a298746ca5a7bcb9c164bcb120f2ebc09a09"
+ integrity sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==
dependencies:
- browserslist "^4.23.0"
+ browserslist "^4.23.3"
core-js@^3.37.1:
version "3.38.0"
@@ -3043,16 +3104,16 @@ editorconfig-checker@^5.1.8:
resolved "https://registry.yarnpkg.com/editorconfig-checker/-/editorconfig-checker-5.1.8.tgz#8fdc7d93573f240b74ba27c15ccb062a03b972ea"
integrity sha512-GM/qCbXA8GajSqqjXiWZN49i0nizQV5PjkVKIwWB9rtsm/pztjnBC+4dts5wW2KdrP2zyMPEltWHtWQwoCadqg==
-electron-to-chromium@^1.4.796:
- version "1.4.815"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.815.tgz#e901b195c57c3e0fae8dc6d596e4188a33c3e82c"
- integrity sha512-OvpTT2ItpOXJL7IGcYakRjHCt8L5GrrN/wHCQsRB4PQa1X9fe+X9oen245mIId7s14xvArCGSTIq644yPUKKLg==
-
electron-to-chromium@^1.4.820:
version "1.4.825"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.825.tgz#2d9c3d1eb81a67ecea0c06bcf70740b00ba52718"
integrity sha512-OCcF+LwdgFGcsYPYC5keEEFC2XT0gBhrYbeGzHCx7i9qRFbzO/AqTmc/C/1xNhJj+JA7rzlN7mpBuStshh96Cg==
+electron-to-chromium@^1.5.4:
+ version "1.5.13"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz#1abf0410c5344b2b829b7247e031f02810d442e6"
+ integrity sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==
+
emoji-regex@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
@@ -4653,6 +4714,11 @@ node-releases@^2.0.14:
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b"
integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
+node-releases@^2.0.18:
+ version "2.0.18"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f"
+ integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
+
node-status@^0.1.7:
version "0.1.7"
resolved "https://registry.yarnpkg.com/node-status/-/node-status-0.1.7.tgz#03e814fa06963932eb199f0788f68f12166f911e"
@@ -5922,14 +5988,6 @@ untildify@^4.0.0:
resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b"
integrity sha1-K8lHuVNlJIfkYAlJ+wkeOujNkZs=
-update-browserslist-db@^1.0.16:
- version "1.0.16"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz#f6d489ed90fb2f07d67784eb3f53d7891f736356"
- integrity sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==
- dependencies:
- escalade "^3.1.2"
- picocolors "^1.0.1"
-
update-browserslist-db@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e"
From 814283e79225f9ff5785915a0a24e1e7532c936d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Vin=C3=ADcius=20Dami=C3=A3o?=
Date: Fri, 23 Aug 2024 11:24:37 -0300
Subject: [PATCH 38/67] fix(reorder-columns): resolve incorrect column values
order (#7464)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* fix(reorder-columns): resolve incorrect column values order with detail-view enabled
Fixed an issue in the "reorder-columns" extension where columns had incorrect values when `data-detail-view` was set to true. The problem occurred because the code attempted to access a non-existent `field` property in the detail-view column. Added a check to ensure the `field` property exists before assigning the value.
* Update src/extensions/reorder-columns/bootstrap-table-reorder-columns.js
* Update src/extensions/reorder-columns/bootstrap-table-reorder-columns.js
* Update src/extensions/reorder-columns/bootstrap-table-reorder-columns.js
---------
Co-authored-by: 文翼
---
.../reorder-columns/bootstrap-table-reorder-columns.js | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/extensions/reorder-columns/bootstrap-table-reorder-columns.js b/src/extensions/reorder-columns/bootstrap-table-reorder-columns.js
index 2e0248a31..7270d10d4 100644
--- a/src/extensions/reorder-columns/bootstrap-table-reorder-columns.js
+++ b/src/extensions/reorder-columns/bootstrap-table-reorder-columns.js
@@ -136,7 +136,9 @@ $.BootstrapTable = class extends $.BootstrapTable {
const sortOrder = {}
table.el.find('th').each((i, el) => {
- sortOrder[$(el).data('field')] = i
+ if (el.dataset.field !== undefined) {
+ sortOrder[el.dataset.field] = i
+ }
})
this.columnsSortOrder = sortOrder
From 0b2698038be524522dbe390965b46be9d66a779d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=89=8D=E7=AB=AF=E5=B0=8F=E7=84=B6=E5=AD=90?=
Date: Fri, 23 Aug 2024 22:26:58 +0800
Subject: [PATCH 39/67] fix: Rendering exceptions caused by errors in some
cases (#7420)
* fix: Rendering exceptions caused by errors in some cases
On some H5 pages, switching and refreshing the display format of the table can cause this error, specifically this$ Fixed ColumnsRight is undefined.
* fix: Other errors caused by modifications
---
.../fixed-columns/bootstrap-table-fixed-columns.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/extensions/fixed-columns/bootstrap-table-fixed-columns.js b/src/extensions/fixed-columns/bootstrap-table-fixed-columns.js
index 113efb6eb..a61c2b8b5 100644
--- a/src/extensions/fixed-columns/bootstrap-table-fixed-columns.js
+++ b/src/extensions/fixed-columns/bootstrap-table-fixed-columns.js
@@ -197,7 +197,7 @@ $.BootstrapTable = class extends $.BootstrapTable {
this.$fixedColumns.find('.fixed-table-loading').hide()
}
- if (this.needFixedColumns && this.options.fixedRightNumber) {
+ if (this.needFixedColumns && this.options.fixedRightNumber && this.$fixedColumnsRight) {
this.$fixedColumnsRight.find('.fixed-table-loading').hide()
}
}
@@ -226,7 +226,7 @@ $.BootstrapTable = class extends $.BootstrapTable {
this.$fixedColumns.html('').css('width', '')
}
- if (this.needFixedColumns && this.options.fixedRightNumber) {
+ if (this.needFixedColumns && this.options.fixedRightNumber && this.$fixedColumnsRight) {
this.$fixedHeaderRight = initFixedHeader(this.$fixedColumnsRight, true)
this.$fixedHeaderRight.scrollLeft(this.$fixedHeaderRight.find('table').width())
} else if (this.$fixedColumnsRight) {
@@ -265,7 +265,7 @@ $.BootstrapTable = class extends $.BootstrapTable {
this.$fixedBody = initFixedBody(this.$fixedColumns, this.$fixedHeader)
}
- if (this.needFixedColumns && this.options.fixedRightNumber) {
+ if (this.needFixedColumns && this.options.fixedRightNumber && this.$fixedColumnsRight) {
this.$fixedBodyRight = initFixedBody(this.$fixedColumnsRight, this.$fixedHeaderRight)
this.$fixedBodyRight.scrollLeft(this.$fixedBodyRight.find('table').width())
this.$fixedBodyRight.css('overflow-y', this.options.height ? 'auto' : 'hidden')
@@ -336,7 +336,7 @@ $.BootstrapTable = class extends $.BootstrapTable {
}
}
- if (this.needFixedColumns && this.options.fixedNumber) {
+ if (this.needFixedColumns && this.options.fixedNumber && this.$fixedBody) {
this.$fixedBody.find('tr').hover(e => {
toggleHover(e, true)
}, e => {
From 46ab5ac0bae70b962cf4fdba04570d9c7c975a8b Mon Sep 17 00:00:00 2001
From: zhixin
Date: Sat, 24 Aug 2024 12:57:30 +0800
Subject: [PATCH 40/67] Fix micromatch ReDoS problem
---
package.json | 20 ++++++++++----------
yarn.lock | 26 +++++++++++++-------------
2 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/package.json b/package.json
index 28979784b..1b3b055f9 100644
--- a/package.json
+++ b/package.json
@@ -10,21 +10,21 @@
"doc": "site"
},
"devDependencies": {
- "@babel/core": "^7.24.8",
- "@babel/preset-env": "^7.24.8",
+ "@babel/core": "^7.25.2",
+ "@babel/preset-env": "^7.25.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
- "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue": "^5.1.2",
"chalk": "^5.3.0",
"clean-css-cli": "^5.6.3",
- "core-js": "^3.37.1",
+ "core-js": "^3.38.1",
"cross-env": "^7.0.3",
- "cspell": "^8.10.4",
- "cypress": "^13.13.0",
+ "cspell": "^8.14.2",
+ "cypress": "^13.13.3",
"editorconfig-checker": "^5.1.8",
"eslint": "^8.57.0",
"foreach-cli": "^1.8.1",
@@ -32,13 +32,13 @@
"headr": "^0.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
- "rollup": "^4.18.1",
+ "rollup": "^4.21.0",
"rollup-plugin-copy": "^3.5.0",
"sass": "^1.77.8",
- "stylelint": "^16.7.0",
+ "stylelint": "^16.8.2",
"stylelint-config-standard-scss": "^13.1.0",
- "vite": "^5.3.3",
- "vue": "^3.4.31"
+ "vite": "^5.4.2",
+ "vue": "^3.4.38"
},
"scripts": {
"lint:js": "eslint src",
diff --git a/yarn.lock b/yarn.lock
index 819da2bbf..9af7a70f4 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -23,7 +23,7 @@
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb"
integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==
-"@babel/core@^7.24.8":
+"@babel/core@^7.25.2":
version "7.25.2"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77"
integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==
@@ -911,7 +911,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.25.2"
"@babel/helper-plugin-utils" "^7.24.8"
-"@babel/preset-env@^7.24.8":
+"@babel/preset-env@^7.25.4":
version "7.25.4"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.4.tgz#be23043d43a34a2721cd0f676c7ba6f1481f6af6"
integrity sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==
@@ -2004,7 +2004,7 @@
resolved "https://registry.yarnpkg.com/@ungap%2fstructured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
-"@vitejs/plugin-vue@^5.0.5":
+"@vitejs/plugin-vue@^5.1.2":
version "5.1.2"
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.2.tgz#f11091e0130eca6c1ca8cfb85ee71ea53b255d31"
integrity sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==
@@ -2736,7 +2736,7 @@ core-js-compat@^3.37.1, core-js-compat@^3.38.0:
dependencies:
browserslist "^4.23.3"
-core-js@^3.37.1:
+core-js@^3.38.1:
version "3.38.1"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.38.1.tgz#aa375b79a286a670388a1a363363d53677c0383e"
integrity sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==
@@ -2885,7 +2885,7 @@ cspell-trie-lib@8.14.2:
"@cspell/cspell-types" "8.14.2"
gensequence "^7.0.0"
-cspell@^8.10.4:
+cspell@^8.14.2:
version "8.14.2"
resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.14.2.tgz#d1434bc66831113121a91427c39dc22802dc4c31"
integrity sha512-ii/W7fwO4chNQVYl1C/8k7RW8EXzLb69rvg08p8mSJx8B2UasVJ9tuJpTH2Spo1jX6N3H0dKPWUbd1fAmdAhPg==
@@ -2933,7 +2933,7 @@ csstype@^3.1.3:
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
-cypress@^13.13.0:
+cypress@^13.13.3:
version "13.13.3"
resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.13.3.tgz#21ee054bb4e00b3858f2e33b4f8f4e69128470a9"
integrity sha512-hUxPrdbJXhUOTzuML+y9Av7CKoYznbD83pt8g3klgpioEha0emfx4WNIuVRx0C76r0xV2MIwAW9WYiXfVJYFQw==
@@ -4629,9 +4629,9 @@ merge2@^1.2.3, merge2@^1.3.0, merge2@^1.4.1:
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
micromatch@^4.0.4, micromatch@^4.0.7:
- version "4.0.7"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5"
- integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
+ integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
dependencies:
braces "^3.0.3"
picomatch "^2.3.1"
@@ -5271,7 +5271,7 @@ rollup-plugin-copy@^3.5.0:
globby "10.0.1"
is-plain-object "^3.0.0"
-rollup@^4.18.1, rollup@^4.20.0:
+rollup@^4.20.0, rollup@^4.21.0:
version "4.21.0"
resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.0.tgz#28db5f5c556a5180361d35009979ccc749560b9d"
integrity sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==
@@ -5700,7 +5700,7 @@ stylelint-scss@^6.0.0:
postcss-selector-parser "^6.1.0"
postcss-value-parser "^4.2.0"
-stylelint@^16.7.0:
+stylelint@^16.8.2:
version "16.8.2"
resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-16.8.2.tgz#7fda18b919a36e206e897417d4720baceb3af122"
integrity sha512-fInKATippQhcSm7AB+T32GpI+626yohrg33GkFT/5jzliUw5qhlwZq2UQQwgl3HsHrf09oeARi0ZwgY/UWEv9A==
@@ -6038,7 +6038,7 @@ verror@1.10.0:
core-util-is "1.0.2"
extsprintf "^1.2.0"
-vite@^5.3.3:
+vite@^5.4.2:
version "5.4.2"
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.2.tgz#8acb6ec4bfab823cdfc1cb2d6c53ed311bc4e47e"
integrity sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==
@@ -6059,7 +6059,7 @@ vscode-uri@^3.0.8:
resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f"
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
-vue@^3.4.31:
+vue@^3.4.38:
version "3.4.38"
resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.38.tgz#0ccbb64ed03ef3c4ab73e540793290b18e7c4236"
integrity sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==
From e737a5a3378baf458acbfb20b67b88ce212ff138 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 26 Aug 2024 21:12:02 +0000
Subject: [PATCH 41/67] Bump rollup from 4.21.0 to 4.21.1
Bumps [rollup](https://github.com/rollup/rollup) from 4.21.0 to 4.21.1.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.21.0...v4.21.1)
---
updated-dependencies:
- dependency-name: rollup
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 196 +++++++++++++++++++++++++++---------------------------
1 file changed, 98 insertions(+), 98 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 9af7a70f4..2041d7329 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1865,85 +1865,85 @@
estree-walker "^2.0.2"
picomatch "^2.3.1"
-"@rollup/rollup-android-arm-eabi@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.0.tgz#d941173f82f9b041c61b0dc1a2a91dcd06e4b31e"
- integrity sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA==
-
-"@rollup/rollup-android-arm64@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.0.tgz#7e7157c8543215245ceffc445134d9e843ba51c0"
- integrity sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA==
-
-"@rollup/rollup-darwin-arm64@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.0.tgz#f0a18a4fc8dc6eb1e94a51fa2adb22876f477947"
- integrity sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA==
-
-"@rollup/rollup-darwin-x64@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.0.tgz#34b7867613e5cc42d2b85ddc0424228cc33b43f0"
- integrity sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.0.tgz#422b19ff9ae02b05d3395183d1d43b38c7c8be0b"
- integrity sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA==
-
-"@rollup/rollup-linux-arm-musleabihf@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.0.tgz#568aa29195ef6fc57ec6ed3f518923764406a8ee"
- integrity sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w==
-
-"@rollup/rollup-linux-arm64-gnu@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.0.tgz#22309c8bcba9a73114f69165c72bc94b2fbec085"
- integrity sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w==
-
-"@rollup/rollup-linux-arm64-musl@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.0.tgz#c93c388af6d33f082894b8a60839d7265b2b9bc5"
- integrity sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.0.tgz#493c5e19e395cf3c6bd860c7139c8a903dea72b4"
- integrity sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg==
-
-"@rollup/rollup-linux-riscv64-gnu@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.0.tgz#a2eab4346fbe5909165ce99adb935ba30c9fb444"
- integrity sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg==
-
-"@rollup/rollup-linux-s390x-gnu@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.0.tgz#0bc49a79db4345d78d757bb1b05e73a1b42fa5c3"
- integrity sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw==
-
-"@rollup/rollup-linux-x64-gnu@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.0.tgz#4fd36a6a41f3406d8693321b13d4f9b7658dd4b9"
- integrity sha512-e2hrvElFIh6kW/UNBQK/kzqMNY5mO+67YtEh9OA65RM5IJXYTWiXjX6fjIiPaqOkBthYF1EqgiZ6OXKcQsM0hg==
-
-"@rollup/rollup-linux-x64-musl@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.0.tgz#10ebb13bd4469cbad1a5d9b073bd27ec8a886200"
- integrity sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ==
-
-"@rollup/rollup-win32-arm64-msvc@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.0.tgz#2fef1a90f1402258ef915ae5a94cc91a5a1d5bfc"
- integrity sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ==
-
-"@rollup/rollup-win32-ia32-msvc@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.0.tgz#a18ad47a95c5f264defb60acdd8c27569f816fc1"
- integrity sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg==
-
-"@rollup/rollup-win32-x64-msvc@4.21.0":
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.0.tgz#20c09cf44dcb082140cc7f439dd679fe4bba3375"
- integrity sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ==
+"@rollup/rollup-android-arm-eabi@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.1.tgz#c3a7938551273a2b72820cf5d22e54cf41dc206e"
+ integrity sha512-2thheikVEuU7ZxFXubPDOtspKn1x0yqaYQwvALVtEcvFhMifPADBrgRPyHV0TF3b+9BgvgjgagVyvA/UqPZHmg==
+
+"@rollup/rollup-android-arm64@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.1.tgz#fa3693e4674027702c42fcbbb86bbd0c635fd3b9"
+ integrity sha512-t1lLYn4V9WgnIFHXy1d2Di/7gyzBWS8G5pQSXdZqfrdCGTwi1VasRMSS81DTYb+avDs/Zz4A6dzERki5oRYz1g==
+
+"@rollup/rollup-darwin-arm64@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.1.tgz#e19922f4ac1e4552a230ff8f49d5688c5c07d284"
+ integrity sha512-AH/wNWSEEHvs6t4iJ3RANxW5ZCK3fUnmf0gyMxWCesY1AlUj8jY7GC+rQE4wd3gwmZ9XDOpL0kcFnCjtN7FXlA==
+
+"@rollup/rollup-darwin-x64@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.1.tgz#897f8d47b115ea84692a29cf2366899499d4d915"
+ integrity sha512-dO0BIz/+5ZdkLZrVgQrDdW7m2RkrLwYTh2YMFG9IpBtlC1x1NPNSXkfczhZieOlOLEqgXOFH3wYHB7PmBtf+Bg==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.1.tgz#7d1e2a542f3a5744f5c24320067bd5af99ec9d62"
+ integrity sha512-sWWgdQ1fq+XKrlda8PsMCfut8caFwZBmhYeoehJ05FdI0YZXk6ZyUjWLrIgbR/VgiGycrFKMMgp7eJ69HOF2pQ==
+
+"@rollup/rollup-linux-arm-musleabihf@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.1.tgz#88bec1c9df85fc5e24d49f783e19934717dd69b5"
+ integrity sha512-9OIiSuj5EsYQlmwhmFRA0LRO0dRRjdCVZA3hnmZe1rEwRk11Jy3ECGGq3a7RrVEZ0/pCsYWx8jG3IvcrJ6RCew==
+
+"@rollup/rollup-linux-arm64-gnu@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.1.tgz#6dc60f0fe7bd49ed07a2d4d9eab15e671b3bd59d"
+ integrity sha512-0kuAkRK4MeIUbzQYu63NrJmfoUVicajoRAL1bpwdYIYRcs57iyIV9NLcuyDyDXE2GiZCL4uhKSYAnyWpjZkWow==
+
+"@rollup/rollup-linux-arm64-musl@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.1.tgz#a03b78775c129e8333aca9e1e420e8e217ee99b9"
+ integrity sha512-/6dYC9fZtfEY0vozpc5bx1RP4VrtEOhNQGb0HwvYNwXD1BBbwQ5cKIbUVVU7G2d5WRE90NfB922elN8ASXAJEA==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.1.tgz#ee3810647faf2c105a5a4e71260bb90b96bf87bc"
+ integrity sha512-ltUWy+sHeAh3YZ91NUsV4Xg3uBXAlscQe8ZOXRCVAKLsivGuJsrkawYPUEyCV3DYa9urgJugMLn8Z3Z/6CeyRQ==
+
+"@rollup/rollup-linux-riscv64-gnu@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.1.tgz#385d76a088c27db8054d9f3f28d64d89294f838e"
+ integrity sha512-BggMndzI7Tlv4/abrgLwa/dxNEMn2gC61DCLrTzw8LkpSKel4o+O+gtjbnkevZ18SKkeN3ihRGPuBxjaetWzWg==
+
+"@rollup/rollup-linux-s390x-gnu@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.1.tgz#daa2b62a6e6f737ebef6700a12a93c9764e18583"
+ integrity sha512-z/9rtlGd/OMv+gb1mNSjElasMf9yXusAxnRDrBaYB+eS1shFm6/4/xDH1SAISO5729fFKUkJ88TkGPRUh8WSAA==
+
+"@rollup/rollup-linux-x64-gnu@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.1.tgz#790ae96118cc892464e9f10da358c0c8a6b9acdd"
+ integrity sha512-kXQVcWqDcDKw0S2E0TmhlTLlUgAmMVqPrJZR+KpH/1ZaZhLSl23GZpQVmawBQGVhyP5WXIsIQ/zqbDBBYmxm5w==
+
+"@rollup/rollup-linux-x64-musl@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.1.tgz#d613147f7ac15fafe2a0b6249e8484e161ca2847"
+ integrity sha512-CbFv/WMQsSdl+bpX6rVbzR4kAjSSBuDgCqb1l4J68UYsQNalz5wOqLGYj4ZI0thGpyX5kc+LLZ9CL+kpqDovZA==
+
+"@rollup/rollup-win32-arm64-msvc@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.1.tgz#18349db8250559a5460d59eb3575f9781be4ab98"
+ integrity sha512-3Q3brDgA86gHXWHklrwdREKIrIbxC0ZgU8lwpj0eEKGBQH+31uPqr0P2v11pn0tSIxHvcdOWxa4j+YvLNx1i6g==
+
+"@rollup/rollup-win32-ia32-msvc@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.1.tgz#199648b68271f7ab9d023f5c077725d51d12d466"
+ integrity sha512-tNg+jJcKR3Uwe4L0/wY3Ro0H+u3nrb04+tcq1GSYzBEmKLeOQF2emk1whxlzNqb6MMrQ2JOcQEpuuiPLyRcSIw==
+
+"@rollup/rollup-win32-x64-msvc@4.21.1":
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.1.tgz#4d3ec02dbf280c20bfeac7e50cd5669b66f9108f"
+ integrity sha512-xGiIH95H1zU7naUyTKEyOA/I0aexNMUdO9qRv0bLKN3qu25bBdrxZHqA3PTJ24YNN/GdMzG4xkDcd/GvjuhfLg==
"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0":
version "1.0.5"
@@ -5272,28 +5272,28 @@ rollup-plugin-copy@^3.5.0:
is-plain-object "^3.0.0"
rollup@^4.20.0, rollup@^4.21.0:
- version "4.21.0"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.0.tgz#28db5f5c556a5180361d35009979ccc749560b9d"
- integrity sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==
+ version "4.21.1"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.1.tgz#65b9b9e9de9a64604fab083fb127f3e9eac2935d"
+ integrity sha512-ZnYyKvscThhgd3M5+Qt3pmhO4jIRR5RGzaSovB6Q7rGNrK5cUncrtLmcTTJVSdcKXyZjW8X8MB0JMSuH9bcAJg==
dependencies:
"@types/estree" "1.0.5"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.21.0"
- "@rollup/rollup-android-arm64" "4.21.0"
- "@rollup/rollup-darwin-arm64" "4.21.0"
- "@rollup/rollup-darwin-x64" "4.21.0"
- "@rollup/rollup-linux-arm-gnueabihf" "4.21.0"
- "@rollup/rollup-linux-arm-musleabihf" "4.21.0"
- "@rollup/rollup-linux-arm64-gnu" "4.21.0"
- "@rollup/rollup-linux-arm64-musl" "4.21.0"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.21.0"
- "@rollup/rollup-linux-riscv64-gnu" "4.21.0"
- "@rollup/rollup-linux-s390x-gnu" "4.21.0"
- "@rollup/rollup-linux-x64-gnu" "4.21.0"
- "@rollup/rollup-linux-x64-musl" "4.21.0"
- "@rollup/rollup-win32-arm64-msvc" "4.21.0"
- "@rollup/rollup-win32-ia32-msvc" "4.21.0"
- "@rollup/rollup-win32-x64-msvc" "4.21.0"
+ "@rollup/rollup-android-arm-eabi" "4.21.1"
+ "@rollup/rollup-android-arm64" "4.21.1"
+ "@rollup/rollup-darwin-arm64" "4.21.1"
+ "@rollup/rollup-darwin-x64" "4.21.1"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.21.1"
+ "@rollup/rollup-linux-arm-musleabihf" "4.21.1"
+ "@rollup/rollup-linux-arm64-gnu" "4.21.1"
+ "@rollup/rollup-linux-arm64-musl" "4.21.1"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.21.1"
+ "@rollup/rollup-linux-riscv64-gnu" "4.21.1"
+ "@rollup/rollup-linux-s390x-gnu" "4.21.1"
+ "@rollup/rollup-linux-x64-gnu" "4.21.1"
+ "@rollup/rollup-linux-x64-musl" "4.21.1"
+ "@rollup/rollup-win32-arm64-msvc" "4.21.1"
+ "@rollup/rollup-win32-ia32-msvc" "4.21.1"
+ "@rollup/rollup-win32-x64-msvc" "4.21.1"
fsevents "~2.3.2"
run-parallel@^1.1.9:
From 53e5b8cba0cdf6991d52499727125d9ca74de1a2 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 28 Aug 2024 21:49:35 +0000
Subject: [PATCH 42/67] Bump stylelint from 16.8.2 to 16.9.0
Bumps [stylelint](https://github.com/stylelint/stylelint) from 16.8.2 to 16.9.0.
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/stylelint/stylelint/compare/16.8.2...16.9.0)
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 50 +++++++++++++++++++++++++-------------------------
1 file changed, 25 insertions(+), 25 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 9af7a70f4..1ebe19bf0 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1468,20 +1468,20 @@
resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.14.2.tgz#8a6d30011596ccefb48a6135225554011c46dc03"
integrity sha512-YmWW+B/2XQcCynLpiAQF77Bitm5Cynw3/BICZkbdveKjJkUzEmXB+U2qWuwXOyU8xUYuwkP63YM8McnI567rUA==
-"@csstools/css-parser-algorithms@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.0.tgz#dd428c4569caea7185716fbba174202a4ba41fda"
- integrity sha512-20hEErXV9GEx15qRbsJVzB91ryayx1F2duHPBrfZXQAHz/dJG0u/611URpr28+sFjm3EI7U17Pj9SVA9NSAGJA==
+"@csstools/css-parser-algorithms@^3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.1.tgz#f14ade63bae5f6025ac85c7d03fe47a7ca0e58af"
+ integrity sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==
-"@csstools/css-tokenizer@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-3.0.0.tgz#9a8a1ea564dd92b8b567e0507c29f74252e01e04"
- integrity sha512-efZvfJyYrqH9hPCKtOBywlTsCXnEzAI9sLHFzUsDpBb+1bQ+bxJnwL9V2bRKv9w4cpIp75yxGeZRaVKoMQnsEg==
+"@csstools/css-tokenizer@^3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-3.0.1.tgz#9dd9b10084f3011290f96789598091e5bcb3c29a"
+ integrity sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==
-"@csstools/media-query-list-parser@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.0.tgz#a4388fa58e0981d705b8286fa3376e71c5954faa"
- integrity sha512-W0JlkUFwXjo703wt06AcaWuUcS+6x6IEDyxV6W65Sw+vLCYp+uPsrps+PXTiIfN0V1Pqj5snPzN7EYLmbz1zjg==
+"@csstools/media-query-list-parser@^3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.1.tgz#9474e08e6d7767cf68c56bf1581b59d203360cb0"
+ integrity sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==
"@csstools/selector-specificity@^4.0.0":
version "4.0.0"
@@ -4628,7 +4628,7 @@ merge2@^1.2.3, merge2@^1.3.0, merge2@^1.4.1:
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
-micromatch@^4.0.4, micromatch@^4.0.7:
+micromatch@^4.0.4, micromatch@^4.0.7, micromatch@^4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
@@ -5701,13 +5701,13 @@ stylelint-scss@^6.0.0:
postcss-value-parser "^4.2.0"
stylelint@^16.8.2:
- version "16.8.2"
- resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-16.8.2.tgz#7fda18b919a36e206e897417d4720baceb3af122"
- integrity sha512-fInKATippQhcSm7AB+T32GpI+626yohrg33GkFT/5jzliUw5qhlwZq2UQQwgl3HsHrf09oeARi0ZwgY/UWEv9A==
+ version "16.9.0"
+ resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-16.9.0.tgz#81615c0608b9dc645486e08e35c6c9206e1ba132"
+ integrity sha512-31Nm3WjxGOBGpQqF43o3wO9L5AC36TPIe6030Lnm13H3vDMTcS21DrLh69bMX+DBilKqMMVLian4iG6ybBoNRQ==
dependencies:
- "@csstools/css-parser-algorithms" "^3.0.0"
- "@csstools/css-tokenizer" "^3.0.0"
- "@csstools/media-query-list-parser" "^3.0.0"
+ "@csstools/css-parser-algorithms" "^3.0.1"
+ "@csstools/css-tokenizer" "^3.0.1"
+ "@csstools/media-query-list-parser" "^3.0.1"
"@csstools/selector-specificity" "^4.0.0"
"@dual-bundle/import-meta-resolve" "^4.1.0"
balanced-match "^2.0.0"
@@ -5729,7 +5729,7 @@ stylelint@^16.8.2:
known-css-properties "^0.34.0"
mathml-tag-names "^2.1.3"
meow "^13.2.0"
- micromatch "^4.0.7"
+ micromatch "^4.0.8"
normalize-path "^3.0.0"
picocolors "^1.0.1"
postcss "^8.4.41"
@@ -5740,7 +5740,7 @@ stylelint@^16.8.2:
resolve-from "^5.0.0"
string-width "^4.2.3"
strip-ansi "^7.1.0"
- supports-hyperlinks "^3.0.0"
+ supports-hyperlinks "^3.1.0"
svg-tags "^1.0.0"
table "^6.8.2"
write-file-atomic "^5.0.1"
@@ -5771,10 +5771,10 @@ supports-color@^8.1.1:
dependencies:
has-flag "^4.0.0"
-supports-hyperlinks@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz#c711352a5c89070779b4dad54c05a2f14b15c94b"
- integrity sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==
+supports-hyperlinks@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz#b56150ff0173baacc15f21956450b61f2b18d3ac"
+ integrity sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==
dependencies:
has-flag "^4.0.0"
supports-color "^7.0.0"
From 104fdd3cbc1938f314113d4555ec382e5c9a1fbc Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 29 Aug 2024 21:19:28 +0000
Subject: [PATCH 43/67] Bump @vitejs/plugin-vue from 5.1.2 to 5.1.3
Bumps [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) from 5.1.2 to 5.1.3.
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@5.1.3/packages/plugin-vue)
---
updated-dependencies:
- dependency-name: "@vitejs/plugin-vue"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 9af7a70f4..1128588a0 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2005,9 +2005,9 @@
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
"@vitejs/plugin-vue@^5.1.2":
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.2.tgz#f11091e0130eca6c1ca8cfb85ee71ea53b255d31"
- integrity sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693"
+ integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==
"@vue/compiler-core@3.4.38":
version "3.4.38"
From 4ea4016badee0c29561f24f1c6c68a92039b5989 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 29 Aug 2024 21:19:39 +0000
Subject: [PATCH 44/67] Bump cypress from 13.13.3 to 13.14.1
Bumps [cypress](https://github.com/cypress-io/cypress) from 13.13.3 to 13.14.1.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/cypress-io/cypress/compare/v13.13.3...v13.14.1)
---
updated-dependencies:
- dependency-name: cypress
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 9af7a70f4..c7544553f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2934,9 +2934,9 @@ csstype@^3.1.3:
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
cypress@^13.13.3:
- version "13.13.3"
- resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.13.3.tgz#21ee054bb4e00b3858f2e33b4f8f4e69128470a9"
- integrity sha512-hUxPrdbJXhUOTzuML+y9Av7CKoYznbD83pt8g3klgpioEha0emfx4WNIuVRx0C76r0xV2MIwAW9WYiXfVJYFQw==
+ version "13.14.1"
+ resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.14.1.tgz#05875bbbf6333e858a92aed33ba67d7ddf8370d7"
+ integrity sha512-Wo+byPmjps66hACEH5udhXINEiN3qS3jWNGRzJOjrRJF3D0+YrcP2LVB1T7oYaVQM/S+eanqEvBWYc8cf7Vcbg==
dependencies:
"@cypress/request" "^3.0.1"
"@cypress/xvfb" "^1.2.4"
From 3f154c99414372943db66d6dc58e5e9a66d4d21c Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 30 Aug 2024 21:21:36 +0000
Subject: [PATCH 45/67] Bump rollup from 4.21.1 to 4.21.2
Bumps [rollup](https://github.com/rollup/rollup) from 4.21.1 to 4.21.2.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.21.1...v4.21.2)
---
updated-dependencies:
- dependency-name: rollup
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 196 +++++++++++++++++++++++++++---------------------------
1 file changed, 98 insertions(+), 98 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index c27c8b3fc..a17deffe1 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1865,85 +1865,85 @@
estree-walker "^2.0.2"
picomatch "^2.3.1"
-"@rollup/rollup-android-arm-eabi@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.1.tgz#c3a7938551273a2b72820cf5d22e54cf41dc206e"
- integrity sha512-2thheikVEuU7ZxFXubPDOtspKn1x0yqaYQwvALVtEcvFhMifPADBrgRPyHV0TF3b+9BgvgjgagVyvA/UqPZHmg==
-
-"@rollup/rollup-android-arm64@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.1.tgz#fa3693e4674027702c42fcbbb86bbd0c635fd3b9"
- integrity sha512-t1lLYn4V9WgnIFHXy1d2Di/7gyzBWS8G5pQSXdZqfrdCGTwi1VasRMSS81DTYb+avDs/Zz4A6dzERki5oRYz1g==
-
-"@rollup/rollup-darwin-arm64@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.1.tgz#e19922f4ac1e4552a230ff8f49d5688c5c07d284"
- integrity sha512-AH/wNWSEEHvs6t4iJ3RANxW5ZCK3fUnmf0gyMxWCesY1AlUj8jY7GC+rQE4wd3gwmZ9XDOpL0kcFnCjtN7FXlA==
-
-"@rollup/rollup-darwin-x64@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.1.tgz#897f8d47b115ea84692a29cf2366899499d4d915"
- integrity sha512-dO0BIz/+5ZdkLZrVgQrDdW7m2RkrLwYTh2YMFG9IpBtlC1x1NPNSXkfczhZieOlOLEqgXOFH3wYHB7PmBtf+Bg==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.1.tgz#7d1e2a542f3a5744f5c24320067bd5af99ec9d62"
- integrity sha512-sWWgdQ1fq+XKrlda8PsMCfut8caFwZBmhYeoehJ05FdI0YZXk6ZyUjWLrIgbR/VgiGycrFKMMgp7eJ69HOF2pQ==
-
-"@rollup/rollup-linux-arm-musleabihf@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.1.tgz#88bec1c9df85fc5e24d49f783e19934717dd69b5"
- integrity sha512-9OIiSuj5EsYQlmwhmFRA0LRO0dRRjdCVZA3hnmZe1rEwRk11Jy3ECGGq3a7RrVEZ0/pCsYWx8jG3IvcrJ6RCew==
-
-"@rollup/rollup-linux-arm64-gnu@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.1.tgz#6dc60f0fe7bd49ed07a2d4d9eab15e671b3bd59d"
- integrity sha512-0kuAkRK4MeIUbzQYu63NrJmfoUVicajoRAL1bpwdYIYRcs57iyIV9NLcuyDyDXE2GiZCL4uhKSYAnyWpjZkWow==
-
-"@rollup/rollup-linux-arm64-musl@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.1.tgz#a03b78775c129e8333aca9e1e420e8e217ee99b9"
- integrity sha512-/6dYC9fZtfEY0vozpc5bx1RP4VrtEOhNQGb0HwvYNwXD1BBbwQ5cKIbUVVU7G2d5WRE90NfB922elN8ASXAJEA==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.1.tgz#ee3810647faf2c105a5a4e71260bb90b96bf87bc"
- integrity sha512-ltUWy+sHeAh3YZ91NUsV4Xg3uBXAlscQe8ZOXRCVAKLsivGuJsrkawYPUEyCV3DYa9urgJugMLn8Z3Z/6CeyRQ==
-
-"@rollup/rollup-linux-riscv64-gnu@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.1.tgz#385d76a088c27db8054d9f3f28d64d89294f838e"
- integrity sha512-BggMndzI7Tlv4/abrgLwa/dxNEMn2gC61DCLrTzw8LkpSKel4o+O+gtjbnkevZ18SKkeN3ihRGPuBxjaetWzWg==
-
-"@rollup/rollup-linux-s390x-gnu@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.1.tgz#daa2b62a6e6f737ebef6700a12a93c9764e18583"
- integrity sha512-z/9rtlGd/OMv+gb1mNSjElasMf9yXusAxnRDrBaYB+eS1shFm6/4/xDH1SAISO5729fFKUkJ88TkGPRUh8WSAA==
-
-"@rollup/rollup-linux-x64-gnu@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.1.tgz#790ae96118cc892464e9f10da358c0c8a6b9acdd"
- integrity sha512-kXQVcWqDcDKw0S2E0TmhlTLlUgAmMVqPrJZR+KpH/1ZaZhLSl23GZpQVmawBQGVhyP5WXIsIQ/zqbDBBYmxm5w==
-
-"@rollup/rollup-linux-x64-musl@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.1.tgz#d613147f7ac15fafe2a0b6249e8484e161ca2847"
- integrity sha512-CbFv/WMQsSdl+bpX6rVbzR4kAjSSBuDgCqb1l4J68UYsQNalz5wOqLGYj4ZI0thGpyX5kc+LLZ9CL+kpqDovZA==
-
-"@rollup/rollup-win32-arm64-msvc@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.1.tgz#18349db8250559a5460d59eb3575f9781be4ab98"
- integrity sha512-3Q3brDgA86gHXWHklrwdREKIrIbxC0ZgU8lwpj0eEKGBQH+31uPqr0P2v11pn0tSIxHvcdOWxa4j+YvLNx1i6g==
-
-"@rollup/rollup-win32-ia32-msvc@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.1.tgz#199648b68271f7ab9d023f5c077725d51d12d466"
- integrity sha512-tNg+jJcKR3Uwe4L0/wY3Ro0H+u3nrb04+tcq1GSYzBEmKLeOQF2emk1whxlzNqb6MMrQ2JOcQEpuuiPLyRcSIw==
-
-"@rollup/rollup-win32-x64-msvc@4.21.1":
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.1.tgz#4d3ec02dbf280c20bfeac7e50cd5669b66f9108f"
- integrity sha512-xGiIH95H1zU7naUyTKEyOA/I0aexNMUdO9qRv0bLKN3qu25bBdrxZHqA3PTJ24YNN/GdMzG4xkDcd/GvjuhfLg==
+"@rollup/rollup-android-arm-eabi@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.2.tgz#0412834dc423d1ff7be4cb1fc13a86a0cd262c11"
+ integrity sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==
+
+"@rollup/rollup-android-arm64@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.2.tgz#baf1a014b13654f3b9e835388df9caf8c35389cb"
+ integrity sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==
+
+"@rollup/rollup-darwin-arm64@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.2.tgz#0a2c364e775acdf1172fe3327662eec7c46e55b1"
+ integrity sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==
+
+"@rollup/rollup-darwin-x64@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.2.tgz#a972db75890dfab8df0da228c28993220a468c42"
+ integrity sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.2.tgz#1609d0630ef61109dd19a278353e5176d92e30a1"
+ integrity sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==
+
+"@rollup/rollup-linux-arm-musleabihf@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.2.tgz#3c1dca5f160aa2e79e4b20ff6395eab21804f266"
+ integrity sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==
+
+"@rollup/rollup-linux-arm64-gnu@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.2.tgz#c2fe376e8b04eafb52a286668a8df7c761470ac7"
+ integrity sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==
+
+"@rollup/rollup-linux-arm64-musl@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.2.tgz#e62a4235f01e0f66dbba587c087ca6db8008ec80"
+ integrity sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.2.tgz#24b3457e75ee9ae5b1c198bd39eea53222a74e54"
+ integrity sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==
+
+"@rollup/rollup-linux-riscv64-gnu@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.2.tgz#38edfba9620fe2ca8116c97e02bd9f2d606bde09"
+ integrity sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==
+
+"@rollup/rollup-linux-s390x-gnu@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.2.tgz#a3bfb8bc5f1e802f8c76cff4a4be2e9f9ac36a18"
+ integrity sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==
+
+"@rollup/rollup-linux-x64-gnu@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.2.tgz#0dadf34be9199fcdda44b5985a086326344f30ad"
+ integrity sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==
+
+"@rollup/rollup-linux-x64-musl@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.2.tgz#7b7deddce240400eb87f2406a445061b4fed99a8"
+ integrity sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==
+
+"@rollup/rollup-win32-arm64-msvc@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.2.tgz#a0ca0c5149c2cfb26fab32e6ba3f16996fbdb504"
+ integrity sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==
+
+"@rollup/rollup-win32-ia32-msvc@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.2.tgz#aae2886beec3024203dbb5569db3a137bc385f8e"
+ integrity sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==
+
+"@rollup/rollup-win32-x64-msvc@4.21.2":
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.2.tgz#e4291e3c1bc637083f87936c333cdbcad22af63b"
+ integrity sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==
"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0":
version "1.0.5"
@@ -5272,28 +5272,28 @@ rollup-plugin-copy@^3.5.0:
is-plain-object "^3.0.0"
rollup@^4.20.0, rollup@^4.21.0:
- version "4.21.1"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.1.tgz#65b9b9e9de9a64604fab083fb127f3e9eac2935d"
- integrity sha512-ZnYyKvscThhgd3M5+Qt3pmhO4jIRR5RGzaSovB6Q7rGNrK5cUncrtLmcTTJVSdcKXyZjW8X8MB0JMSuH9bcAJg==
+ version "4.21.2"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.2.tgz#f41f277a448d6264e923dd1ea179f0a926aaf9b7"
+ integrity sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==
dependencies:
"@types/estree" "1.0.5"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.21.1"
- "@rollup/rollup-android-arm64" "4.21.1"
- "@rollup/rollup-darwin-arm64" "4.21.1"
- "@rollup/rollup-darwin-x64" "4.21.1"
- "@rollup/rollup-linux-arm-gnueabihf" "4.21.1"
- "@rollup/rollup-linux-arm-musleabihf" "4.21.1"
- "@rollup/rollup-linux-arm64-gnu" "4.21.1"
- "@rollup/rollup-linux-arm64-musl" "4.21.1"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.21.1"
- "@rollup/rollup-linux-riscv64-gnu" "4.21.1"
- "@rollup/rollup-linux-s390x-gnu" "4.21.1"
- "@rollup/rollup-linux-x64-gnu" "4.21.1"
- "@rollup/rollup-linux-x64-musl" "4.21.1"
- "@rollup/rollup-win32-arm64-msvc" "4.21.1"
- "@rollup/rollup-win32-ia32-msvc" "4.21.1"
- "@rollup/rollup-win32-x64-msvc" "4.21.1"
+ "@rollup/rollup-android-arm-eabi" "4.21.2"
+ "@rollup/rollup-android-arm64" "4.21.2"
+ "@rollup/rollup-darwin-arm64" "4.21.2"
+ "@rollup/rollup-darwin-x64" "4.21.2"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.21.2"
+ "@rollup/rollup-linux-arm-musleabihf" "4.21.2"
+ "@rollup/rollup-linux-arm64-gnu" "4.21.2"
+ "@rollup/rollup-linux-arm64-musl" "4.21.2"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.21.2"
+ "@rollup/rollup-linux-riscv64-gnu" "4.21.2"
+ "@rollup/rollup-linux-s390x-gnu" "4.21.2"
+ "@rollup/rollup-linux-x64-gnu" "4.21.2"
+ "@rollup/rollup-linux-x64-musl" "4.21.2"
+ "@rollup/rollup-win32-arm64-msvc" "4.21.2"
+ "@rollup/rollup-win32-ia32-msvc" "4.21.2"
+ "@rollup/rollup-win32-x64-msvc" "4.21.2"
fsevents "~2.3.2"
run-parallel@^1.1.9:
From 7711680267d7646ca8306887fef394fac67d4c95 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 4 Sep 2024 21:06:06 +0000
Subject: [PATCH 46/67] Bump cypress from 13.14.1 to 13.14.2
Bumps [cypress](https://github.com/cypress-io/cypress) from 13.14.1 to 13.14.2.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/cypress-io/cypress/compare/v13.14.1...v13.14.2)
---
updated-dependencies:
- dependency-name: cypress
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a17deffe1..439a5de4d 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2934,9 +2934,9 @@ csstype@^3.1.3:
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
cypress@^13.13.3:
- version "13.14.1"
- resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.14.1.tgz#05875bbbf6333e858a92aed33ba67d7ddf8370d7"
- integrity sha512-Wo+byPmjps66hACEH5udhXINEiN3qS3jWNGRzJOjrRJF3D0+YrcP2LVB1T7oYaVQM/S+eanqEvBWYc8cf7Vcbg==
+ version "13.14.2"
+ resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.14.2.tgz#4237eb7b26de2baeaa1f01e585f965d88fca7f39"
+ integrity sha512-lsiQrN17vHMB2fnvxIrKLAjOr9bPwsNbPZNrWf99s4u+DVmCY6U+w7O3GGG9FvP4EUVYaDu+guWeNLiUzBrqvA==
dependencies:
"@cypress/request" "^3.0.1"
"@cypress/xvfb" "^1.2.4"
From f58b8a86603b195ada46f52fb9b13c7456d1172d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 4 Sep 2024 21:06:19 +0000
Subject: [PATCH 47/67] Bump sass from 1.77.8 to 1.78.0
Bumps [sass](https://github.com/sass/dart-sass) from 1.77.8 to 1.78.0.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.77.8...1.78.0)
---
updated-dependencies:
- dependency-name: sass
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a17deffe1..896f473c9 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5340,9 +5340,9 @@ safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=
sass@^1.77.8:
- version "1.77.8"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.77.8.tgz#9f18b449ea401759ef7ec1752a16373e296b52bd"
- integrity sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==
+ version "1.78.0"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.78.0.tgz#cef369b2f9dc21ea1d2cf22c979f52365da60841"
+ integrity sha512-AaIqGSrjo5lA2Yg7RvFZrlXDBCp3nV4XP73GrLGvdRWWwk+8H3l0SDvq/5bA4eF+0RFPLuWUk3E+P1U/YqnpsQ==
dependencies:
chokidar ">=3.0.0 <4.0.0"
immutable "^4.0.0"
From f7765c2d087a298e0818a2d073a737bebbcb998b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 4 Sep 2024 21:06:32 +0000
Subject: [PATCH 48/67] Bump vue from 3.4.38 to 3.5.1
Bumps [vue](https://github.com/vuejs/core) from 3.4.38 to 3.5.1.
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.4.38...v3.5.1)
---
updated-dependencies:
- dependency-name: vue
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 159 ++++++++++++++++++++++++++++++------------------------
1 file changed, 90 insertions(+), 69 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index a17deffe1..6201d9816 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -328,7 +328,7 @@
js-tokens "^4.0.0"
picocolors "^1.0.0"
-"@babel/parser@^7.24.7", "@babel/parser@^7.25.0":
+"@babel/parser@^7.25.0":
version "7.25.0"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.0.tgz#9fdc9237504d797b6e7b8f66e78ea7f570d256ad"
integrity sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA==
@@ -1759,6 +1759,11 @@
resolved "https://registry.yarnpkg.com/@jridgewell%2fsourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
+"@jridgewell/sourcemap-codec@^1.5.0":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a"
+ integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==
+
"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
version "0.3.25"
resolved "https://registry.yarnpkg.com/@jridgewell%2ftrace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
@@ -2009,85 +2014,85 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693"
integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==
-"@vue/compiler-core@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.38.tgz#326dfe3c92fa2b0f1dc9b39a948a231980253496"
- integrity sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==
+"@vue/compiler-core@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.1.tgz#995fc62dc3887a6c5ee2313b4e5472f3c11c0468"
+ integrity sha512-WdjF+NSgFYdWttHevHw5uaJFtKPalhmxhlu2uREj8cLP0uyKKIR60/JvSZNTp0x+NSd63iTiORQTx3+tt55NWQ==
dependencies:
- "@babel/parser" "^7.24.7"
- "@vue/shared" "3.4.38"
+ "@babel/parser" "^7.25.3"
+ "@vue/shared" "3.5.1"
entities "^4.5.0"
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-dom@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz#90348fac1130e0bbd408b650635cb626b3b9df06"
- integrity sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==
+"@vue/compiler-dom@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.1.tgz#016d468ba4c7b736df9c38d8cb81731aeaae95dd"
+ integrity sha512-Ao23fB1lINo18HLCbJVApvzd9OQe8MgmQSgyY5+umbWj2w92w9KykVmJ4Iv2US5nak3ixc2B+7Km7JTNhQ8kSQ==
dependencies:
- "@vue/compiler-core" "3.4.38"
- "@vue/shared" "3.4.38"
+ "@vue/compiler-core" "3.5.1"
+ "@vue/shared" "3.5.1"
-"@vue/compiler-sfc@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.38.tgz#954c3f6777bbbcca28771ba59b795f12f76ef188"
- integrity sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==
+"@vue/compiler-sfc@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.1.tgz#457a7309fa5006d490450c3d5410b9caf37949c2"
+ integrity sha512-DFizMNH8eDglLhlfwJ0+ciBsztaYe3fY/zcZjrqL1ljXvUw/UpC84M1d7HpBTCW68SNqZyIxrs1XWmf+73Y65w==
dependencies:
- "@babel/parser" "^7.24.7"
- "@vue/compiler-core" "3.4.38"
- "@vue/compiler-dom" "3.4.38"
- "@vue/compiler-ssr" "3.4.38"
- "@vue/shared" "3.4.38"
+ "@babel/parser" "^7.25.3"
+ "@vue/compiler-core" "3.5.1"
+ "@vue/compiler-dom" "3.5.1"
+ "@vue/compiler-ssr" "3.5.1"
+ "@vue/shared" "3.5.1"
estree-walker "^2.0.2"
- magic-string "^0.30.10"
- postcss "^8.4.40"
+ magic-string "^0.30.11"
+ postcss "^8.4.44"
source-map-js "^1.2.0"
-"@vue/compiler-ssr@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz#9ded18f6d9c8b2440039a58492cfff36fa1a7774"
- integrity sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==
+"@vue/compiler-ssr@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.1.tgz#a4dd4d1b47d60b80a529c46a847c7519401c1ba8"
+ integrity sha512-C1hpSHQgRM8bg+5XWWD7CkFaVpSn9wZHCLRd10AmxqrH17d4EMP6+XcZpwBOM7H1jeStU5naEapZZWX0kso1tQ==
dependencies:
- "@vue/compiler-dom" "3.4.38"
- "@vue/shared" "3.4.38"
+ "@vue/compiler-dom" "3.5.1"
+ "@vue/shared" "3.5.1"
-"@vue/reactivity@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.38.tgz#ec2d549f4b831cd03d0baabf7d77e840b8536000"
- integrity sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==
+"@vue/reactivity@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.1.tgz#e4a57a038e3caaa9669de529533fcb16288a1736"
+ integrity sha512-aFE1nMDfbG7V+U5vdOk/NXxH/WX78XuAfX59vWmCM7Ao4lieoc83RkzOAWun61sQXlzNZ4IgROovFBHg+Iz1+Q==
dependencies:
- "@vue/shared" "3.4.38"
+ "@vue/shared" "3.5.1"
-"@vue/runtime-core@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.38.tgz#bead9085e9a1c5a446e27d74ffb450f9261cf097"
- integrity sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==
+"@vue/runtime-core@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.1.tgz#a1208d91e9c1b900aa6cfc9dbfec76a5277393c3"
+ integrity sha512-Ce92CCholNRHR3ZtzpRp/7CDGIPFxQ7ElXt9iH91ilK5eOrUv3Z582NWJesuM3aYX71BujVG5/4ypUxigGNxjA==
dependencies:
- "@vue/reactivity" "3.4.38"
- "@vue/shared" "3.4.38"
+ "@vue/reactivity" "3.5.1"
+ "@vue/shared" "3.5.1"
-"@vue/runtime-dom@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.38.tgz#52678ba0b85f94400a0a9c8dd23ddef4dd65657d"
- integrity sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==
+"@vue/runtime-dom@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.1.tgz#24f506b827ef7799fe68f0eb045918808080d961"
+ integrity sha512-B/fUJfBLp5PwE0EWNfBYnA4JUea8Yufb3wN8fN0/HzaqBdkiRHh4sFHOjWqIY8GS75gj//8VqeEqhcU6yUjIkA==
dependencies:
- "@vue/reactivity" "3.4.38"
- "@vue/runtime-core" "3.4.38"
- "@vue/shared" "3.4.38"
+ "@vue/reactivity" "3.5.1"
+ "@vue/runtime-core" "3.5.1"
+ "@vue/shared" "3.5.1"
csstype "^3.1.3"
-"@vue/server-renderer@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.38.tgz#457401ef2b0f969156702061e56915acecc9fe2c"
- integrity sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==
+"@vue/server-renderer@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.1.tgz#e741418a267a645a88e0cd80f1cf24dfa9c5cc73"
+ integrity sha512-C5V/fjQTitgVaRNH5wCoHynaWysjZ+VH68drNsAvQYg4ArHsZUQNz0nHoEWRj41nzqkVn2RUlnWaEOTl2o1Ppg==
dependencies:
- "@vue/compiler-ssr" "3.4.38"
- "@vue/shared" "3.4.38"
+ "@vue/compiler-ssr" "3.5.1"
+ "@vue/shared" "3.5.1"
-"@vue/shared@3.4.38":
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.38.tgz#552a6770098bfd556fa3e2c686c9d3b4f4cd94c2"
- integrity sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==
+"@vue/shared@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.1.tgz#f9418dae5ac194a4f19023d812978c21a15412a1"
+ integrity sha512-NdcTRoO4KuW2RSFgpE2c+E/R/ZHaRzWPxAGxhmxZaaqLh6nYCXx7lc9a88ioqOCxCaV2SFJmujkxbUScW7dNsQ==
acorn-jsx@^5.3.2:
version "5.3.2"
@@ -4574,7 +4579,14 @@ lru-cache@^5.1.1:
dependencies:
yallist "^3.0.2"
-magic-string@^0.30.10, magic-string@^0.30.3:
+magic-string@^0.30.11:
+ version "0.30.11"
+ resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.11.tgz#301a6f93b3e8c2cb13ac1a7a673492c0dfd12954"
+ integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==
+ dependencies:
+ "@jridgewell/sourcemap-codec" "^1.5.0"
+
+magic-string@^0.30.3:
version "0.30.10"
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.10.tgz#123d9c41a0cb5640c892b041d4cfb3bd0aa4b39e"
integrity sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==
@@ -5031,7 +5043,7 @@ postcss-value-parser@^4.2.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@^8.4.40, postcss@^8.4.41:
+postcss@^8.4.41:
version "8.4.41"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681"
integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==
@@ -5040,6 +5052,15 @@ postcss@^8.4.40, postcss@^8.4.41:
picocolors "^1.0.1"
source-map-js "^1.2.0"
+postcss@^8.4.44:
+ version "8.4.45"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.45.tgz#538d13d89a16ef71edbf75d895284ae06b79e603"
+ integrity sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==
+ dependencies:
+ nanoid "^3.3.7"
+ picocolors "^1.0.1"
+ source-map-js "^1.2.0"
+
prelude-ls@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
@@ -6060,15 +6081,15 @@ vscode-uri@^3.0.8:
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
vue@^3.4.38:
- version "3.4.38"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.38.tgz#0ccbb64ed03ef3c4ab73e540793290b18e7c4236"
- integrity sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==
- dependencies:
- "@vue/compiler-dom" "3.4.38"
- "@vue/compiler-sfc" "3.4.38"
- "@vue/runtime-dom" "3.4.38"
- "@vue/server-renderer" "3.4.38"
- "@vue/shared" "3.4.38"
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.1.tgz#507eb4ab010a2ad894f8d7765f32e68be1604815"
+ integrity sha512-k4UNnbPOEskodSxMtv+B9GljdB0C9ubZDOmW6vnXVGIfMqmEsY2+ohasjGguhGkMkrcP/oOrbH0dSD41x5JQFw==
+ dependencies:
+ "@vue/compiler-dom" "3.5.1"
+ "@vue/compiler-sfc" "3.5.1"
+ "@vue/runtime-dom" "3.5.1"
+ "@vue/server-renderer" "3.5.1"
+ "@vue/shared" "3.5.1"
which-boxed-primitive@^1.0.2:
version "1.0.2"
From 33de7dcc0857f3b869bc598ebf8c3413b0fecfdc Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 5 Sep 2024 02:43:24 +0000
Subject: [PATCH 49/67] Bump vite from 5.4.2 to 5.4.3
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.2 to 5.4.3.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.3/packages/vite)
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 19 +++++--------------
1 file changed, 5 insertions(+), 14 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 6201d9816..99c43a403 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5043,16 +5043,7 @@ postcss-value-parser@^4.2.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@^8.4.41:
- version "8.4.41"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681"
- integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==
- dependencies:
- nanoid "^3.3.7"
- picocolors "^1.0.1"
- source-map-js "^1.2.0"
-
-postcss@^8.4.44:
+postcss@^8.4.41, postcss@^8.4.43, postcss@^8.4.44:
version "8.4.45"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.45.tgz#538d13d89a16ef71edbf75d895284ae06b79e603"
integrity sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==
@@ -6060,12 +6051,12 @@ verror@1.10.0:
extsprintf "^1.2.0"
vite@^5.4.2:
- version "5.4.2"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.2.tgz#8acb6ec4bfab823cdfc1cb2d6c53ed311bc4e47e"
- integrity sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==
+ version "5.4.3"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.3.tgz#771c470e808cb6732f204e1ee96c2ed65b97a0eb"
+ integrity sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q==
dependencies:
esbuild "^0.21.3"
- postcss "^8.4.41"
+ postcss "^8.4.43"
rollup "^4.20.0"
optionalDependencies:
fsevents "~2.3.3"
From f2e4c18e891378a49e2331b750ec056c1d04b55b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 5 Sep 2024 21:06:34 +0000
Subject: [PATCH 50/67] Bump vue from 3.5.1 to 3.5.2
Bumps [vue](https://github.com/vuejs/core) from 3.5.1 to 3.5.2.
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.5.1...v3.5.2)
---
updated-dependencies:
- dependency-name: vue
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 124 +++++++++++++++++++++++++++---------------------------
1 file changed, 62 insertions(+), 62 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 4bcf18253..c8fd76aae 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2014,85 +2014,85 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693"
integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==
-"@vue/compiler-core@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.1.tgz#995fc62dc3887a6c5ee2313b4e5472f3c11c0468"
- integrity sha512-WdjF+NSgFYdWttHevHw5uaJFtKPalhmxhlu2uREj8cLP0uyKKIR60/JvSZNTp0x+NSd63iTiORQTx3+tt55NWQ==
+"@vue/compiler-core@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.2.tgz#56aa06f3f0efc08579739aa04685dc34ee49b003"
+ integrity sha512-1aP7FL2GkqfcskHWGg3lfWQpJnrmewKc+rNJ/hq9WNaAw4BEyJ5QbNChnqmbw+tJ409zdy1XWmUeXXMrCKJcQQ==
dependencies:
"@babel/parser" "^7.25.3"
- "@vue/shared" "3.5.1"
+ "@vue/shared" "3.5.2"
entities "^4.5.0"
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-dom@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.1.tgz#016d468ba4c7b736df9c38d8cb81731aeaae95dd"
- integrity sha512-Ao23fB1lINo18HLCbJVApvzd9OQe8MgmQSgyY5+umbWj2w92w9KykVmJ4Iv2US5nak3ixc2B+7Km7JTNhQ8kSQ==
+"@vue/compiler-dom@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.2.tgz#9b4423ec215e016429b7739b21b8727a846481fe"
+ integrity sha512-QY4DpT8ZIUyu/ZA5gErpSEDocGNEbHmpkZIC/d5jbp/rUF0iOJNigAy3HCCKc0PMMhDlrcysO3ufQ6Ab4MpEcQ==
dependencies:
- "@vue/compiler-core" "3.5.1"
- "@vue/shared" "3.5.1"
+ "@vue/compiler-core" "3.5.2"
+ "@vue/shared" "3.5.2"
-"@vue/compiler-sfc@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.1.tgz#457a7309fa5006d490450c3d5410b9caf37949c2"
- integrity sha512-DFizMNH8eDglLhlfwJ0+ciBsztaYe3fY/zcZjrqL1ljXvUw/UpC84M1d7HpBTCW68SNqZyIxrs1XWmf+73Y65w==
+"@vue/compiler-sfc@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.2.tgz#731d32c981f76b0edc7ed6314149e11ef12a197b"
+ integrity sha512-vErEtybSU290LbMW+ChYllI9tNJEdTW1oU+8cZWINZyjlWeTSa9YqDl4/pZJSnozOI+HmcaC1Vz2eFKmXNSXZA==
dependencies:
"@babel/parser" "^7.25.3"
- "@vue/compiler-core" "3.5.1"
- "@vue/compiler-dom" "3.5.1"
- "@vue/compiler-ssr" "3.5.1"
- "@vue/shared" "3.5.1"
+ "@vue/compiler-core" "3.5.2"
+ "@vue/compiler-dom" "3.5.2"
+ "@vue/compiler-ssr" "3.5.2"
+ "@vue/shared" "3.5.2"
estree-walker "^2.0.2"
magic-string "^0.30.11"
postcss "^8.4.44"
source-map-js "^1.2.0"
-"@vue/compiler-ssr@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.1.tgz#a4dd4d1b47d60b80a529c46a847c7519401c1ba8"
- integrity sha512-C1hpSHQgRM8bg+5XWWD7CkFaVpSn9wZHCLRd10AmxqrH17d4EMP6+XcZpwBOM7H1jeStU5naEapZZWX0kso1tQ==
+"@vue/compiler-ssr@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.2.tgz#1d66e7f79c83865526767091a99d26b53bb7741f"
+ integrity sha512-vMtA4tQK/AM3UAYJsmouQzQpgG+h9TKiD5BV+Zt+ZyAMdicxzSEEFGWf/CykRnDpqj9fMfIHPhOezJVNxiXe2A==
dependencies:
- "@vue/compiler-dom" "3.5.1"
- "@vue/shared" "3.5.1"
+ "@vue/compiler-dom" "3.5.2"
+ "@vue/shared" "3.5.2"
-"@vue/reactivity@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.1.tgz#e4a57a038e3caaa9669de529533fcb16288a1736"
- integrity sha512-aFE1nMDfbG7V+U5vdOk/NXxH/WX78XuAfX59vWmCM7Ao4lieoc83RkzOAWun61sQXlzNZ4IgROovFBHg+Iz1+Q==
+"@vue/reactivity@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.2.tgz#f582729ca5258e7a7e23716bbf4b0dde3ae3995d"
+ integrity sha512-lJwWL5bNht+2vIwU/+lnGdH+FKFxzz6z8WkoIJityPLiasWU+HDUvEsC7gm3JFwbTf7Kk+Nr9kJMaPy0HXwwxQ==
dependencies:
- "@vue/shared" "3.5.1"
+ "@vue/shared" "3.5.2"
-"@vue/runtime-core@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.1.tgz#a1208d91e9c1b900aa6cfc9dbfec76a5277393c3"
- integrity sha512-Ce92CCholNRHR3ZtzpRp/7CDGIPFxQ7ElXt9iH91ilK5eOrUv3Z582NWJesuM3aYX71BujVG5/4ypUxigGNxjA==
+"@vue/runtime-core@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.2.tgz#2aac957cbf4655a70fab593f69b03b0759d82f90"
+ integrity sha512-oU+i9sJjGEMfEhlrJ7SZv7CdSIgUNyBHnWHa0SqU2RF48V3/ATajzpWq1/DkiVJ1mtx+cQFAMKs8s/3cB3YlLQ==
dependencies:
- "@vue/reactivity" "3.5.1"
- "@vue/shared" "3.5.1"
+ "@vue/reactivity" "3.5.2"
+ "@vue/shared" "3.5.2"
-"@vue/runtime-dom@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.1.tgz#24f506b827ef7799fe68f0eb045918808080d961"
- integrity sha512-B/fUJfBLp5PwE0EWNfBYnA4JUea8Yufb3wN8fN0/HzaqBdkiRHh4sFHOjWqIY8GS75gj//8VqeEqhcU6yUjIkA==
+"@vue/runtime-dom@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.2.tgz#bc079a97aeb36b6cc3a266bad283243dd51310a4"
+ integrity sha512-2qvysn+oR0QnFKaWZxQ90iVpWAK/WPpYmODHCv24IDXjsBrdHbjLBj9s6YBdPaMuQhs0LNsmhsgZYZBkszLg6g==
dependencies:
- "@vue/reactivity" "3.5.1"
- "@vue/runtime-core" "3.5.1"
- "@vue/shared" "3.5.1"
+ "@vue/reactivity" "3.5.2"
+ "@vue/runtime-core" "3.5.2"
+ "@vue/shared" "3.5.2"
csstype "^3.1.3"
-"@vue/server-renderer@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.1.tgz#e741418a267a645a88e0cd80f1cf24dfa9c5cc73"
- integrity sha512-C5V/fjQTitgVaRNH5wCoHynaWysjZ+VH68drNsAvQYg4ArHsZUQNz0nHoEWRj41nzqkVn2RUlnWaEOTl2o1Ppg==
+"@vue/server-renderer@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.2.tgz#f86474d941de46ee3ae4578a7f12a94d01a07711"
+ integrity sha512-3POhYCA8KfbmuDuUiNbMXnpdh9pwE4SvAqo7VvACjklLkf3AaMkY3TvV7APeEa/WQezrnL+E4X2ASpJsKeS4cQ==
dependencies:
- "@vue/compiler-ssr" "3.5.1"
- "@vue/shared" "3.5.1"
+ "@vue/compiler-ssr" "3.5.2"
+ "@vue/shared" "3.5.2"
-"@vue/shared@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.1.tgz#f9418dae5ac194a4f19023d812978c21a15412a1"
- integrity sha512-NdcTRoO4KuW2RSFgpE2c+E/R/ZHaRzWPxAGxhmxZaaqLh6nYCXx7lc9a88ioqOCxCaV2SFJmujkxbUScW7dNsQ==
+"@vue/shared@3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.2.tgz#c4e3c3a0b6df91753689a635cb4729f889acdff0"
+ integrity sha512-Ce89WNFBzcDca/AgFTxgX4/K4iAyF7oFIp8Z5aBbFBNbtpwnQr+5pZOoHndxnjE2h+YFcipVMzs9UL11XB6dwA==
acorn-jsx@^5.3.2:
version "5.3.2"
@@ -6072,15 +6072,15 @@ vscode-uri@^3.0.8:
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
vue@^3.4.38:
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.1.tgz#507eb4ab010a2ad894f8d7765f32e68be1604815"
- integrity sha512-k4UNnbPOEskodSxMtv+B9GljdB0C9ubZDOmW6vnXVGIfMqmEsY2+ohasjGguhGkMkrcP/oOrbH0dSD41x5JQFw==
- dependencies:
- "@vue/compiler-dom" "3.5.1"
- "@vue/compiler-sfc" "3.5.1"
- "@vue/runtime-dom" "3.5.1"
- "@vue/server-renderer" "3.5.1"
- "@vue/shared" "3.5.1"
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.2.tgz#6a76c4611a3850724229e831b036c1a6da9f0f84"
+ integrity sha512-w1YB4lAwC9ByH6AnFY0JvZF+y70Usul9jDfKIKtM5xA97q/JPS5R7mqq0fhA6D2PQxYPZdgb5jzFKLyOga5pnw==
+ dependencies:
+ "@vue/compiler-dom" "3.5.2"
+ "@vue/compiler-sfc" "3.5.2"
+ "@vue/runtime-dom" "3.5.2"
+ "@vue/server-renderer" "3.5.2"
+ "@vue/shared" "3.5.2"
which-boxed-primitive@^1.0.2:
version "1.0.2"
From a9439f939f1ba4d17b373f43d4efab38ed5e8da0 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 6 Sep 2024 21:12:51 +0000
Subject: [PATCH 51/67] Bump vue from 3.5.2 to 3.5.3
Bumps [vue](https://github.com/vuejs/core) from 3.5.2 to 3.5.3.
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.5.2...v3.5.3)
---
updated-dependencies:
- dependency-name: vue
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 124 +++++++++++++++++++++++++++---------------------------
1 file changed, 62 insertions(+), 62 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index c8fd76aae..e5a8bba67 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2014,85 +2014,85 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693"
integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==
-"@vue/compiler-core@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.2.tgz#56aa06f3f0efc08579739aa04685dc34ee49b003"
- integrity sha512-1aP7FL2GkqfcskHWGg3lfWQpJnrmewKc+rNJ/hq9WNaAw4BEyJ5QbNChnqmbw+tJ409zdy1XWmUeXXMrCKJcQQ==
+"@vue/compiler-core@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.3.tgz#93476cc858c8a4e5e9670c9a9185661026136dee"
+ integrity sha512-adAfy9boPkP233NTyvLbGEqVuIfK/R0ZsBsIOW4BZNfb4BRpRW41Do1u+ozJpsb+mdoy80O20IzAsHaihRb5qA==
dependencies:
"@babel/parser" "^7.25.3"
- "@vue/shared" "3.5.2"
+ "@vue/shared" "3.5.3"
entities "^4.5.0"
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-dom@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.2.tgz#9b4423ec215e016429b7739b21b8727a846481fe"
- integrity sha512-QY4DpT8ZIUyu/ZA5gErpSEDocGNEbHmpkZIC/d5jbp/rUF0iOJNigAy3HCCKc0PMMhDlrcysO3ufQ6Ab4MpEcQ==
+"@vue/compiler-dom@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.3.tgz#195f21b2c700477e4c3e21f4c98edc7032aedca3"
+ integrity sha512-wnzFArg9zpvk/811CDOZOadJRugf1Bgl/TQ3RfV4nKfSPok4hi0w10ziYUQR6LnnBAUlEXYLUfZ71Oj9ds/+QA==
dependencies:
- "@vue/compiler-core" "3.5.2"
- "@vue/shared" "3.5.2"
+ "@vue/compiler-core" "3.5.3"
+ "@vue/shared" "3.5.3"
-"@vue/compiler-sfc@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.2.tgz#731d32c981f76b0edc7ed6314149e11ef12a197b"
- integrity sha512-vErEtybSU290LbMW+ChYllI9tNJEdTW1oU+8cZWINZyjlWeTSa9YqDl4/pZJSnozOI+HmcaC1Vz2eFKmXNSXZA==
+"@vue/compiler-sfc@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.3.tgz#d44c1cafe94d26f74fa4864cabc948c3908a27de"
+ integrity sha512-P3uATLny2tfyvMB04OQFe7Sczteno7SLFxwrOA/dw01pBWQHB5HL15a8PosoNX2aG/EAMGqnXTu+1LnmzFhpTQ==
dependencies:
"@babel/parser" "^7.25.3"
- "@vue/compiler-core" "3.5.2"
- "@vue/compiler-dom" "3.5.2"
- "@vue/compiler-ssr" "3.5.2"
- "@vue/shared" "3.5.2"
+ "@vue/compiler-core" "3.5.3"
+ "@vue/compiler-dom" "3.5.3"
+ "@vue/compiler-ssr" "3.5.3"
+ "@vue/shared" "3.5.3"
estree-walker "^2.0.2"
magic-string "^0.30.11"
postcss "^8.4.44"
source-map-js "^1.2.0"
-"@vue/compiler-ssr@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.2.tgz#1d66e7f79c83865526767091a99d26b53bb7741f"
- integrity sha512-vMtA4tQK/AM3UAYJsmouQzQpgG+h9TKiD5BV+Zt+ZyAMdicxzSEEFGWf/CykRnDpqj9fMfIHPhOezJVNxiXe2A==
+"@vue/compiler-ssr@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.3.tgz#ef8a98385f571e36798a82d783ac369a06d24f5c"
+ integrity sha512-F/5f+r2WzL/2YAPl7UlKcJWHrvoZN8XwEBLnT7S4BXwncH25iDOabhO2M2DWioyTguJAGavDOawejkFXj8EM1w==
dependencies:
- "@vue/compiler-dom" "3.5.2"
- "@vue/shared" "3.5.2"
+ "@vue/compiler-dom" "3.5.3"
+ "@vue/shared" "3.5.3"
-"@vue/reactivity@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.2.tgz#f582729ca5258e7a7e23716bbf4b0dde3ae3995d"
- integrity sha512-lJwWL5bNht+2vIwU/+lnGdH+FKFxzz6z8WkoIJityPLiasWU+HDUvEsC7gm3JFwbTf7Kk+Nr9kJMaPy0HXwwxQ==
+"@vue/reactivity@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.3.tgz#0bdc6031d5be973ee0f807f82259d5579fb46fb6"
+ integrity sha512-2w61UnRWTP7+rj1H/j6FH706gRBHdFVpIqEkSDAyIpafBXYH8xt4gttstbbCWdU3OlcSWO8/3mbKl/93/HSMpw==
dependencies:
- "@vue/shared" "3.5.2"
+ "@vue/shared" "3.5.3"
-"@vue/runtime-core@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.2.tgz#2aac957cbf4655a70fab593f69b03b0759d82f90"
- integrity sha512-oU+i9sJjGEMfEhlrJ7SZv7CdSIgUNyBHnWHa0SqU2RF48V3/ATajzpWq1/DkiVJ1mtx+cQFAMKs8s/3cB3YlLQ==
+"@vue/runtime-core@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.3.tgz#8126927e4b0cf87a8a7d32822abe8170b8c99edf"
+ integrity sha512-5b2AQw5OZlmCzSsSBWYoZOsy75N4UdMWenTfDdI5bAzXnuVR7iR8Q4AOzQm2OGoA41xjk53VQKrqQhOz2ktWaw==
dependencies:
- "@vue/reactivity" "3.5.2"
- "@vue/shared" "3.5.2"
+ "@vue/reactivity" "3.5.3"
+ "@vue/shared" "3.5.3"
-"@vue/runtime-dom@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.2.tgz#bc079a97aeb36b6cc3a266bad283243dd51310a4"
- integrity sha512-2qvysn+oR0QnFKaWZxQ90iVpWAK/WPpYmODHCv24IDXjsBrdHbjLBj9s6YBdPaMuQhs0LNsmhsgZYZBkszLg6g==
+"@vue/runtime-dom@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.3.tgz#f07ba3faecfd39feb54c4d13d8cc4416ca28f111"
+ integrity sha512-wPR1DEGc3XnQ7yHbmkTt3GoY0cEnVGQnARRdAkDzZ8MbUKEs26gogCQo6AOvvgahfjIcnvWJzkZArQ1fmWjcSg==
dependencies:
- "@vue/reactivity" "3.5.2"
- "@vue/runtime-core" "3.5.2"
- "@vue/shared" "3.5.2"
+ "@vue/reactivity" "3.5.3"
+ "@vue/runtime-core" "3.5.3"
+ "@vue/shared" "3.5.3"
csstype "^3.1.3"
-"@vue/server-renderer@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.2.tgz#f86474d941de46ee3ae4578a7f12a94d01a07711"
- integrity sha512-3POhYCA8KfbmuDuUiNbMXnpdh9pwE4SvAqo7VvACjklLkf3AaMkY3TvV7APeEa/WQezrnL+E4X2ASpJsKeS4cQ==
+"@vue/server-renderer@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.3.tgz#1cbf7bb83cf1a6c7cdcea4ae3afca65c3cf6cf29"
+ integrity sha512-28volmaZVG2PGO3V3+gBPKoSHvLlE8FGfG/GKXKkjjfxLuj/50B/0OQGakM/g6ehQeqCrZYM4eHC4Ks48eig1Q==
dependencies:
- "@vue/compiler-ssr" "3.5.2"
- "@vue/shared" "3.5.2"
+ "@vue/compiler-ssr" "3.5.3"
+ "@vue/shared" "3.5.3"
-"@vue/shared@3.5.2":
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.2.tgz#c4e3c3a0b6df91753689a635cb4729f889acdff0"
- integrity sha512-Ce89WNFBzcDca/AgFTxgX4/K4iAyF7oFIp8Z5aBbFBNbtpwnQr+5pZOoHndxnjE2h+YFcipVMzs9UL11XB6dwA==
+"@vue/shared@3.5.3":
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.3.tgz#fb7149372cf5768b9a9f980067c5d0ebac8dc833"
+ integrity sha512-Jp2v8nylKBT+PlOUjun2Wp/f++TfJVFjshLzNtJDdmFJabJa7noGMncqXRM1vXGX+Yo2V7WykQFNxusSim8SCA==
acorn-jsx@^5.3.2:
version "5.3.2"
@@ -6072,15 +6072,15 @@ vscode-uri@^3.0.8:
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
vue@^3.4.38:
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.2.tgz#6a76c4611a3850724229e831b036c1a6da9f0f84"
- integrity sha512-w1YB4lAwC9ByH6AnFY0JvZF+y70Usul9jDfKIKtM5xA97q/JPS5R7mqq0fhA6D2PQxYPZdgb5jzFKLyOga5pnw==
- dependencies:
- "@vue/compiler-dom" "3.5.2"
- "@vue/compiler-sfc" "3.5.2"
- "@vue/runtime-dom" "3.5.2"
- "@vue/server-renderer" "3.5.2"
- "@vue/shared" "3.5.2"
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.3.tgz#1f621023b123341ab5f427e2a6d7320d0e47d72b"
+ integrity sha512-xvRbd0HpuLovYbOHXRHlSBsSvmUJbo0pzbkKTApWnQGf3/cu5Z39mQeA5cZdLRVIoNf3zI6MSoOgHUT5i2jO+Q==
+ dependencies:
+ "@vue/compiler-dom" "3.5.3"
+ "@vue/compiler-sfc" "3.5.3"
+ "@vue/runtime-dom" "3.5.3"
+ "@vue/server-renderer" "3.5.3"
+ "@vue/shared" "3.5.3"
which-boxed-primitive@^1.0.2:
version "1.0.2"
From 59b24d2869bb7001829de2879bc6a5736210f1a7 Mon Sep 17 00:00:00 2001
From: zhixin
Date: Sat, 7 Sep 2024 20:43:05 +0800
Subject: [PATCH 52/67] Sort the options and events keys
---
src/constants/index.js | 560 +++++++++++++++++------------------------
src/utils/index.js | 72 +++---
2 files changed, 270 insertions(+), 362 deletions(-)
diff --git a/src/constants/index.js b/src/constants/index.js
index cddee754e..c4f75e537 100644
--- a/src/constants/index.js
+++ b/src/constants/index.js
@@ -8,349 +8,264 @@ const bootstrapVersion = Utils.getBootstrapVersion()
const CONSTANTS = {
3: {
classes: {
- buttonsPrefix: 'btn',
+ buttonActive: 'active',
buttons: 'default',
- buttonsGroup: 'btn-group',
buttonsDropdown: 'btn-group',
- pull: 'pull',
+ buttonsGroup: 'btn-group',
+ buttonsPrefix: 'btn',
+ dropdownActive: 'active',
+ dropup: 'dropup',
+ input: 'form-control',
inputGroup: 'input-group',
inputPrefix: 'input-',
- input: 'form-control',
- select: 'form-control',
- paginationDropdown: 'btn-group dropdown',
- dropup: 'dropup',
- dropdownActive: 'active',
paginationActive: 'active',
- buttonActive: 'active'
+ paginationDropdown: 'btn-group dropdown',
+ pull: 'pull',
+ select: 'form-control'
},
html: {
- toolbarDropdown: [''],
- toolbarDropdownItem: '',
- toolbarDropdownSeparator: '',
+ dropdownCaret: '',
+ icon: '',
+ inputGroup: '%s%s
',
pageDropdown: [''],
pageDropdownItem: '%s',
- dropdownCaret: '',
pagination: [''],
paginationItem: '%s',
- icon: '',
- inputGroup: '%s%s
',
- searchInput: '',
searchButton: '',
- searchClearButton: ''
+ searchClearButton: '',
+ searchInput: '',
+ toolbarDropdown: [''],
+ toolbarDropdownItem: '',
+ toolbarDropdownSeparator: ''
}
},
4: {
classes: {
- buttonsPrefix: 'btn',
+ buttonActive: 'active',
buttons: 'secondary',
- buttonsGroup: 'btn-group',
buttonsDropdown: 'btn-group',
- pull: 'float',
+ buttonsGroup: 'btn-group',
+ buttonsPrefix: 'btn',
+ dropdownActive: 'active',
+ dropup: 'dropup',
+ input: 'form-control',
inputGroup: 'btn-group',
inputPrefix: 'form-control-',
- input: 'form-control',
- select: 'form-control',
- paginationDropdown: 'btn-group dropdown',
- dropup: 'dropup',
- dropdownActive: 'active',
paginationActive: 'active',
- buttonActive: 'active'
+ paginationDropdown: 'btn-group dropdown',
+ pull: 'float',
+ select: 'form-control'
},
html: {
- toolbarDropdown: [''],
- toolbarDropdownItem: '',
+ dropdownCaret: '',
+ icon: '',
+ inputGroup: '',
pageDropdown: [''],
pageDropdownItem: '%s',
- toolbarDropdownSeparator: '',
- dropdownCaret: '',
pagination: [''],
paginationItem: '%s',
- icon: '',
- inputGroup: '',
- searchInput: '',
searchButton: '',
- searchClearButton: ''
+ searchClearButton: '',
+ searchInput: '',
+ toolbarDropdown: [''],
+ toolbarDropdownItem: '',
+ toolbarDropdownSeparator: ''
}
},
5: {
classes: {
- buttonsPrefix: 'btn',
+ buttonActive: 'active',
buttons: 'secondary',
- buttonsGroup: 'btn-group',
buttonsDropdown: 'btn-group',
- pull: 'float',
+ buttonsGroup: 'btn-group',
+ buttonsPrefix: 'btn',
+ dropdownActive: 'active',
+ dropup: 'dropup',
+ input: 'form-control',
inputGroup: 'btn-group',
inputPrefix: 'form-control-',
- input: 'form-control',
- select: 'form-select',
- paginationDropdown: 'btn-group dropdown',
- dropup: 'dropup',
- dropdownActive: 'active',
paginationActive: 'active',
- buttonActive: 'active'
+ paginationDropdown: 'btn-group dropdown',
+ pull: 'float',
+ select: 'form-select'
},
html: {
dataToggle: 'data-bs-toggle',
- toolbarDropdown: [''],
- toolbarDropdownItem: '',
+ dropdownCaret: '',
+ icon: '',
+ inputGroup: '%s%s
',
pageDropdown: [''],
pageDropdownItem: '%s',
- toolbarDropdownSeparator: '',
- dropdownCaret: '',
pagination: [''],
paginationItem: '%s',
- icon: '',
- inputGroup: '%s%s
',
- searchInput: '',
searchButton: '',
- searchClearButton: ''
+ searchClearButton: '',
+ searchInput: '',
+ toolbarDropdown: [''],
+ toolbarDropdownItem: '',
+ toolbarDropdownSeparator: ''
}
}
}[bootstrapVersion]
const DEFAULTS = {
- height: undefined,
- classes: 'table table-bordered table-hover',
+ ajax: undefined,
+ ajaxOptions: {},
buttons: {},
- theadClasses: '',
- headerStyle (column) {
- return {}
- },
- rowStyle (row, index) {
- return {}
- },
- rowAttributes (row, index) {
- return {}
- },
- undefinedText: '-',
- locale: undefined,
- virtualScroll: false,
- virtualScrollItemHeight: undefined,
- sortable: true,
- sortClass: undefined,
- silentSort: true,
- sortEmptyLast: false,
- sortName: undefined,
- sortOrder: undefined,
- sortReset: false,
- sortStable: false,
- sortResetPage: false,
- rememberOrder: false,
- serverSort: true,
- customSort: undefined,
- columns: [
- []
- ],
- data: [],
- url: undefined,
- method: 'get',
+ buttonsAlign: 'right',
+ buttonsAttributeTitle: 'title',
+ buttonsClass: CONSTANTS.classes.buttons,
+ buttonsOrder: ['paginationSwitch', 'refresh', 'toggle', 'fullscreen', 'columns'],
+ buttonsPrefix: CONSTANTS.classes.buttonsPrefix,
+ buttonsToolbar: undefined,
cache: true,
+ cardView: false,
+ checkboxHeader: true,
+ classes: 'table table-bordered table-hover',
+ clickToSelect: false,
+ columns: [[]],
contentType: 'application/json',
- dataType: 'json',
- ajax: undefined,
- ajaxOptions: {},
- queryParams (params) {
- return params
- },
- queryParamsType: 'limit', // 'limit', undefined
- responseHandler (res) {
- return res
- },
- totalField: 'total',
- totalNotFilteredField: 'totalNotFiltered',
+ customSearch: undefined,
+ customSort: undefined,
+ data: [],
dataField: 'rows',
+ dataType: 'json',
+ detailFilter: (index, row) => true,
+ detailFormatter: (index, row) => '',
+ detailView: false,
+ detailViewAlign: 'left',
+ detailViewByClick: false,
+ detailViewIcon: true,
+ escape: false,
+ escapeTitle: true,
+ filterOptions: { filterAlgorithm: 'and' },
+ fixedScroll: false,
footerField: 'footer',
- pagination: false,
- paginationParts: ['pageInfo', 'pageSize', 'pageList'],
- showExtendedPagination: false,
- paginationLoop: true,
- sidePagination: 'client', // client or server
- totalRows: 0,
- totalNotFiltered: 0,
+ footerStyle: column => ({}),
+ headerStyle: column => ({}),
+ height: undefined,
+ icons: {}, // init in initConstants
+ iconSize: undefined,
+ iconsPrefix: undefined, // init in initConstants
+ idField: undefined,
+ ignoreClickToSelectOn: ({ tagName }) => ['A', 'BUTTON'].includes(tagName),
+ loadingFontSize: 'auto',
+ loadingTemplate: loadingMessage => `
+ ${loadingMessage}
+
+
+ `,
+ locale: undefined,
+ maintainMetaData: false,
+ method: 'get',
+ minimumCountColumns: 1,
+ multipleSelectRow: false,
+ pageList: [10, 25, 50, 100],
pageNumber: 1,
pageSize: 10,
- pageList: [10, 25, 50, 100],
- paginationHAlign: 'right', // right, left
- paginationVAlign: 'bottom', // bottom, top, both
+ pagination: false,
paginationDetailHAlign: 'left', // right, left
- paginationPreText: '‹',
+ paginationHAlign: 'right', // right, left
+ paginationLoadMore: false,
+ paginationLoop: true,
paginationNextText: '›',
- paginationSuccessivelySize: 5, // Maximum successively number of pages in a row
paginationPagesBySide: 1, // Number of pages on each side (right, left) of the current page.
+ paginationParts: ['pageInfo', 'pageSize', 'pageList'],
+ paginationPreText: '‹',
+ paginationSuccessivelySize: 5, // Maximum successively number of pages in a row
paginationUseIntermediate: false, // Calculate intermediate pages for quick access
- paginationLoadMore: false,
+ paginationVAlign: 'bottom', // bottom, top, both
+ queryParams: params => params,
+ queryParamsType: 'limit', // 'limit', undefined
+ regexSearch: false,
+ rememberOrder: false,
+ responseHandler: res => res,
+ rowAttributes: (row, index) => ({}),
+ rowStyle: (row, index) => ({}),
search: false,
searchable: false,
+ searchAccentNeutralise: false,
+ searchAlign: 'right',
searchHighlight: false,
searchOnEnterKey: false,
- strictSearch: false,
- regexSearch: false,
searchSelector: false,
- visibleSearch: false,
+ searchText: '',
+ searchTimeOut: 500,
+ selectItemName: 'btSelectItem',
+ serverSort: true,
showButtonIcons: true,
showButtonText: false,
- showSearchButton: false,
- showSearchClearButton: false,
- trimOnSearch: true,
- searchAlign: 'right',
- searchTimeOut: 500,
- searchText: '',
- customSearch: undefined,
- showHeader: true,
- showFooter: false,
- footerStyle (column) {
- return {}
- },
- searchAccentNeutralise: false,
showColumns: false,
- showColumnsToggleAll: false,
showColumnsSearch: false,
- minimumCountColumns: 1,
+ showColumnsToggleAll: false,
+ showExtendedPagination: false,
+ showFooter: false,
+ showFullscreen: false,
+ showHeader: true,
showPaginationSwitch: false,
showRefresh: false,
+ showSearchButton: false,
+ showSearchClearButton: false,
showToggle: false,
- showFullscreen: false,
- smartDisplay: true,
- escape: false,
- escapeTitle: true,
- filterOptions: {
- filterAlgorithm: 'and'
- },
- idField: undefined,
- selectItemName: 'btSelectItem',
- clickToSelect: false,
- ignoreClickToSelectOn ({ tagName }) {
- return ['A', 'BUTTON'].includes(tagName)
- },
+ sidePagination: 'client', // client or server
+ silentSort: true,
singleSelect: false,
- checkboxHeader: true,
- maintainMetaData: false,
- multipleSelectRow: false,
- uniqueId: undefined,
- cardView: false,
- detailView: false,
- detailViewIcon: true,
- detailViewByClick: false,
- detailViewAlign: 'left',
- detailFormatter (index, row) {
- return ''
- },
- detailFilter (index, row) {
- return true
- },
+ smartDisplay: true,
+ sortable: true,
+ sortClass: undefined,
+ sortEmptyLast: false,
+ sortName: undefined,
+ sortOrder: undefined,
+ sortReset: false,
+ sortResetPage: false,
+ sortStable: false,
+ strictSearch: false,
+ theadClasses: '',
toolbar: undefined,
toolbarAlign: 'left',
- buttonsToolbar: undefined,
- buttonsAlign: 'right',
- buttonsAttributeTitle: 'title',
- buttonsOrder: ['paginationSwitch', 'refresh', 'toggle', 'fullscreen', 'columns'],
- buttonsPrefix: CONSTANTS.classes.buttonsPrefix,
- buttonsClass: CONSTANTS.classes.buttons,
- iconsPrefix: undefined, // init in initConstants
- icons: {}, // init in initConstants
- iconSize: undefined,
- fixedScroll: false,
- loadingFontSize: 'auto',
- loadingTemplate (loadingMessage) {
- return `
- ${loadingMessage}
-
-
- `
- },
- onAll (name, args) {
- return false
- },
- onClickCell (field, value, row, $element) {
- return false
- },
- onDblClickCell (field, value, row, $element) {
- return false
- },
- onClickRow (item, $element) {
- return false
- },
- onDblClickRow (item, $element) {
- return false
- },
- onSort (name, order) {
- return false
- },
- onCheck (row) {
- return false
- },
- onUncheck (row) {
- return false
- },
- onCheckAll (rows) {
- return false
- },
- onUncheckAll (rows) {
- return false
- },
- onCheckSome (rows) {
- return false
- },
- onUncheckSome (rows) {
- return false
- },
- onLoadSuccess (data) {
- return false
- },
- onLoadError (status) {
- return false
- },
- onColumnSwitch (field, checked) {
- return false
- },
- onColumnSwitchAll (checked) {
- return false
- },
- onPageChange (number, size) {
- return false
- },
- onSearch (text) {
- return false
- },
- onToggle (cardView) {
- return false
- },
- onPreBody (data) {
- return false
- },
- onPostBody () {
- return false
- },
- onPostHeader () {
- return false
- },
- onPostFooter () {
- return false
- },
- onExpandRow (index, row, $detail) {
- return false
- },
- onCollapseRow (index, row) {
- return false
- },
- onRefreshOptions (options) {
- return false
- },
- onRefresh (params) {
- return false
- },
- onResetView () {
- return false
- },
- onScrollBody () {
- return false
- },
- onTogglePagination (newState) {
- return false
- },
- onVirtualScroll (startIndex, endIndex) {
- return false
- }
+ totalField: 'total',
+ totalNotFiltered: 0,
+ totalNotFilteredField: 'totalNotFiltered',
+ totalRows: 0,
+ trimOnSearch: true,
+ undefinedText: '-',
+ uniqueId: undefined,
+ url: undefined,
+ virtualScroll: false,
+ virtualScrollItemHeight: undefined,
+ visibleSearch: false,
+
+ onAll: (name, args) => false,
+ onCheck: row => false,
+ onCheckAll: rows => false,
+ onCheckSome: rows => false,
+ onClickCell: (field, value, row, $element) => false,
+ onClickRow: (item, $element) => false,
+ onCollapseRow: (index, row) => false,
+ onColumnSwitch: (field, checked) => false,
+ onColumnSwitchAll: checked => false,
+ onDblClickCell: (field, value, row, $element) => false,
+ onDblClickRow: (item, $element) => false,
+ onExpandRow: (index, row, $detail) => false,
+ onLoadError: status => false,
+ onLoadSuccess: data => false,
+ onPageChange: (number, size) => false,
+ onPostBody: () => false,
+ onPostFooter: () => false,
+ onPostHeader: () => false,
+ onPreBody: data => false,
+ onRefresh: params => false,
+ onRefreshOptions: options => false,
+ onResetView: () => false,
+ onScrollBody: () => false,
+ onSearch: text => false,
+ onSort: (name, order) => false,
+ onToggle: cardView => false,
+ onTogglePagination: newState => false,
+ onUncheck: row => false,
+ onUncheckAll: rows => false,
+ onUncheckSome: rows => false,
+ onVirtualScroll: (startIndex, endIndex) => false
}
const EN = {
@@ -421,41 +336,41 @@ const EN = {
}
const COLUMN_DEFAULTS = {
- field: undefined,
- title: undefined,
- titleTooltip: undefined,
- class: undefined,
- width: undefined,
- widthUnit: 'px',
- rowspan: undefined,
- colspan: undefined,
- align: undefined, // left, right, center
- halign: undefined, // left, right, center
- falign: undefined, // left, right, center
- valign: undefined, // top, middle, bottom
- cellStyle: undefined,
- radio: false,
+ align: undefined, // string: left, right, center
+ cardVisible: true,
+ cellStyle: undefined, // function
checkbox: false,
checkboxEnabled: true,
+ class: undefined, // string
clickToSelect: true,
- showSelectTitle: false,
- sortable: false,
- sortName: undefined,
+ colspan: undefined, // number
+ detailFormatter: undefined, // function
+ escape: undefined, // boolean
+ events: undefined,
+ falign: undefined, // string: left, right, center
+ field: undefined, // string
+ footerFormatter: undefined, // function
+ footerStyle: undefined, // function
+ formatter: undefined, // function
+ halign: undefined, // left, right, center
order: 'asc', // asc, desc
- sorter: undefined,
- visible: true,
- switchable: true,
- switchableLabel: undefined,
- cardVisible: true,
+ radio: false,
+ rowspan: undefined, // number
searchable: true,
- formatter: undefined,
- footerFormatter: undefined,
- footerStyle: undefined,
- detailFormatter: undefined,
searchFormatter: true,
searchHighlightFormatter: false,
- escape: undefined,
- events: undefined
+ showSelectTitle: false,
+ sortable: false,
+ sorter: undefined, // function
+ sortName: undefined, // string
+ switchable: true,
+ switchableLabel: undefined, // string
+ title: undefined, // string
+ titleTooltip: undefined, // string
+ valign: undefined, // top, middle, bottom
+ visible: true,
+ width: undefined, // number
+ widthUnit: 'px'
}
const METHODS = [
@@ -494,57 +409,50 @@ const METHODS = [
const EVENTS = {
'all.bs.table': 'onAll',
- 'click-row.bs.table': 'onClickRow',
- 'dbl-click-row.bs.table': 'onDblClickRow',
- 'click-cell.bs.table': 'onClickCell',
- 'dbl-click-cell.bs.table': 'onDblClickCell',
- 'sort.bs.table': 'onSort',
- 'check.bs.table': 'onCheck',
- 'uncheck.bs.table': 'onUncheck',
'check-all.bs.table': 'onCheckAll',
- 'uncheck-all.bs.table': 'onUncheckAll',
'check-some.bs.table': 'onCheckSome',
- 'uncheck-some.bs.table': 'onUncheckSome',
- 'load-success.bs.table': 'onLoadSuccess',
- 'load-error.bs.table': 'onLoadError',
- 'column-switch.bs.table': 'onColumnSwitch',
+ 'check.bs.table': 'onCheck',
+ 'click-cell.bs.table': 'onClickCell',
+ 'click-row.bs.table': 'onClickRow',
+ 'collapse-row.bs.table': 'onCollapseRow',
'column-switch-all.bs.table': 'onColumnSwitchAll',
+ 'column-switch.bs.table': 'onColumnSwitch',
+ 'dbl-click-cell.bs.table': 'onDblClickCell',
+ 'dbl-click-row.bs.table': 'onDblClickRow',
+ 'expand-row.bs.table': 'onExpandRow',
+ 'load-error.bs.table': 'onLoadError',
+ 'load-success.bs.table': 'onLoadSuccess',
'page-change.bs.table': 'onPageChange',
- 'search.bs.table': 'onSearch',
- 'toggle.bs.table': 'onToggle',
- 'pre-body.bs.table': 'onPreBody',
'post-body.bs.table': 'onPostBody',
- 'post-header.bs.table': 'onPostHeader',
'post-footer.bs.table': 'onPostFooter',
- 'expand-row.bs.table': 'onExpandRow',
- 'collapse-row.bs.table': 'onCollapseRow',
+ 'post-header.bs.table': 'onPostHeader',
+ 'pre-body.bs.table': 'onPreBody',
'refresh-options.bs.table': 'onRefreshOptions',
- 'reset-view.bs.table': 'onResetView',
'refresh.bs.table': 'onRefresh',
+ 'reset-view.bs.table': 'onResetView',
'scroll-body.bs.table': 'onScrollBody',
+ 'search.bs.table': 'onSearch',
+ 'sort.bs.table': 'onSort',
'toggle-pagination.bs.table': 'onTogglePagination',
+ 'toggle.bs.table': 'onToggle',
+ 'uncheck-all.bs.table': 'onUncheckAll',
+ 'uncheck-some.bs.table': 'onUncheckSome',
+ 'uncheck.bs.table': 'onUncheck',
'virtual-scroll.bs.table': 'onVirtualScroll'
}
Object.assign(DEFAULTS, EN)
export default {
- VERSION,
-
- THEME: `bootstrap${bootstrapVersion}`,
-
+ COLUMN_DEFAULTS,
CONSTANTS,
-
DEFAULTS,
-
- COLUMN_DEFAULTS,
-
- METHODS,
-
EVENTS,
-
LOCALES: {
en: EN,
'en-US': EN
- }
+ },
+ METHODS,
+ THEME: `bootstrap${bootstrapVersion}`,
+ VERSION
}
diff --git a/src/utils/index.js b/src/utils/index.js
index 018bfa26f..f648f1e47 100644
--- a/src/utils/index.js
+++ b/src/utils/index.js
@@ -44,70 +44,70 @@ export default {
getIcons (prefix) {
return {
glyphicon: {
- paginationSwitchDown: 'glyphicon-collapse-down icon-chevron-down',
- paginationSwitchUp: 'glyphicon-collapse-up icon-chevron-up',
- refresh: 'glyphicon-refresh icon-refresh',
- toggleOff: 'glyphicon-list-alt icon-list-alt',
- toggleOn: 'glyphicon-list-alt icon-list-alt',
+ clearSearch: 'glyphicon-trash',
columns: 'glyphicon-th icon-th',
- detailOpen: 'glyphicon-plus icon-plus',
detailClose: 'glyphicon-minus icon-minus',
+ detailOpen: 'glyphicon-plus icon-plus',
fullscreen: 'glyphicon-fullscreen',
+ paginationSwitchDown: 'glyphicon-collapse-down icon-chevron-down',
+ paginationSwitchUp: 'glyphicon-collapse-up icon-chevron-up',
+ refresh: 'glyphicon-refresh icon-refresh',
search: 'glyphicon-search',
- clearSearch: 'glyphicon-trash'
+ toggleOff: 'glyphicon-list-alt icon-list-alt',
+ toggleOn: 'glyphicon-list-alt icon-list-alt'
},
fa: {
- paginationSwitchDown: 'fa-caret-square-down',
- paginationSwitchUp: 'fa-caret-square-up',
- refresh: 'fa-sync',
- toggleOff: 'fa-toggle-off',
- toggleOn: 'fa-toggle-on',
+ clearSearch: 'fa-trash',
columns: 'fa-th-list',
- detailOpen: 'fa-plus',
detailClose: 'fa-minus',
+ detailOpen: 'fa-plus',
fullscreen: 'fa-arrows-alt',
+ paginationSwitchDown: 'fa-caret-square-down',
+ paginationSwitchUp: 'fa-caret-square-up',
+ refresh: 'fa-sync',
search: 'fa-search',
- clearSearch: 'fa-trash'
+ toggleOff: 'fa-toggle-off',
+ toggleOn: 'fa-toggle-on'
},
bi: {
- paginationSwitchDown: 'bi-caret-down-square',
- paginationSwitchUp: 'bi-caret-up-square',
- refresh: 'bi-arrow-clockwise',
- toggleOff: 'bi-toggle-off',
- toggleOn: 'bi-toggle-on',
+ clearSearch: 'bi-trash',
columns: 'bi-list-ul',
- detailOpen: 'bi-plus',
detailClose: 'bi-dash',
+ detailOpen: 'bi-plus',
fullscreen: 'bi-arrows-move',
+ paginationSwitchDown: 'bi-caret-down-square',
+ paginationSwitchUp: 'bi-caret-up-square',
+ refresh: 'bi-arrow-clockwise',
search: 'bi-search',
- clearSearch: 'bi-trash'
+ toggleOff: 'bi-toggle-off',
+ toggleOn: 'bi-toggle-on'
},
icon: {
- paginationSwitchDown: 'icon-arrow-up-circle',
- paginationSwitchUp: 'icon-arrow-down-circle',
- refresh: 'icon-refresh-cw',
- toggleOff: 'icon-toggle-right',
- toggleOn: 'icon-toggle-right',
+ clearSearch: 'icon-trash-2',
columns: 'icon-list',
- detailOpen: 'icon-plus',
detailClose: 'icon-minus',
+ detailOpen: 'icon-plus',
fullscreen: 'icon-maximize',
+ paginationSwitchDown: 'icon-arrow-up-circle',
+ paginationSwitchUp: 'icon-arrow-down-circle',
+ refresh: 'icon-refresh-cw',
search: 'icon-search',
- clearSearch: 'icon-trash-2'
+ toggleOff: 'icon-toggle-right',
+ toggleOn: 'icon-toggle-right'
},
'material-icons': {
- paginationSwitchDown: 'grid_on',
- paginationSwitchUp: 'grid_off',
- refresh: 'refresh',
- toggleOff: 'tablet',
- toggleOn: 'tablet_android',
+ clearSearch: 'delete',
columns: 'view_list',
- detailOpen: 'add',
detailClose: 'remove',
+ detailOpen: 'add',
fullscreen: 'fullscreen',
- sort: 'sort',
+ paginationSwitchDown: 'grid_on',
+ paginationSwitchUp: 'grid_off',
+ refresh: 'refresh',
search: 'search',
- clearSearch: 'delete'
+ sort: 'sort',
+ toggleOff: 'tablet',
+ toggleOn: 'tablet_android'
}
}[prefix] || {}
},
From 0bbe4c721fa7b625bc29410cb5df165006e105bc Mon Sep 17 00:00:00 2001
From: zhixin
Date: Mon, 9 Sep 2024 07:54:17 +0800
Subject: [PATCH 53/67] Fixed compatibility issues when colspan is set as
string
---
src/bootstrap-table.js | 4 ++--
src/extensions/print/bootstrap-table-print.js | 4 ++--
src/utils/index.js | 8 ++++----
3 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/bootstrap-table.js b/src/bootstrap-table.js
index 73c8c3600..1e15a666b 100644
--- a/src/bootstrap-table.js
+++ b/src/bootstrap-table.js
@@ -2899,8 +2899,8 @@ class BootstrapTable {
mergeCells (options) {
const row = options.index
let col = this.getVisibleFields().indexOf(options.field)
- const rowspan = options.rowspan || 1
- const colspan = options.colspan || 1
+ const rowspan = +options.rowspan || 1
+ const colspan = +options.colspan || 1
let i
let j
const $tr = this.$body.find('>tr[data-index]')
diff --git a/src/extensions/print/bootstrap-table-print.js b/src/extensions/print/bootstrap-table-print.js
index 646d908b9..abcd1f628 100644
--- a/src/extensions/print/bootstrap-table-print.js
+++ b/src/extensions/print/bootstrap-table-print.js
@@ -131,8 +131,8 @@ $.BootstrapTable = class extends $.BootstrapTable {
this.mergedCells.push({
row: options.index,
col,
- rowspan: options.rowspan || 1,
- colspan: options.colspan || 1
+ rowspan: +options.rowspan || 1,
+ colspan: +options.colspan || 1
})
}
diff --git a/src/utils/index.js b/src/utils/index.js
index f648f1e47..0d1b95b67 100644
--- a/src/utils/index.js
+++ b/src/utils/index.js
@@ -247,7 +247,7 @@ export default {
const flag = []
for (const column of columns[0]) {
- totalCol += column.colspan || 1
+ totalCol += +column.colspan || 1
}
for (let i = 0; i < columns.length; i++) {
@@ -259,8 +259,8 @@ export default {
for (let i = 0; i < columns.length; i++) {
for (const r of columns[i]) {
- const rowspan = r.rowspan || 1
- const colspan = r.colspan || 1
+ const rowspan = +r.rowspan || 1
+ const colspan = +r.colspan || 1
const index = flag[i].indexOf(false)
r.colspanIndex = index
@@ -272,7 +272,7 @@ export default {
r.field = index
}
} else {
- r.colspanGroup = r.colspan
+ r.colspanGroup = +r.colspan
}
for (let j = 0; j < rowspan; j++) {
From e2feb2cb5d747e1c54cf42fae05689a985f227e9 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 10 Sep 2024 21:35:47 +0000
Subject: [PATCH 54/67] Bump vue from 3.5.3 to 3.5.4
Bumps [vue](https://github.com/vuejs/core) from 3.5.3 to 3.5.4.
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.5.3...v3.5.4)
---
updated-dependencies:
- dependency-name: vue
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 124 +++++++++++++++++++++++++++---------------------------
1 file changed, 62 insertions(+), 62 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index e5a8bba67..599a8cf67 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2014,85 +2014,85 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693"
integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==
-"@vue/compiler-core@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.3.tgz#93476cc858c8a4e5e9670c9a9185661026136dee"
- integrity sha512-adAfy9boPkP233NTyvLbGEqVuIfK/R0ZsBsIOW4BZNfb4BRpRW41Do1u+ozJpsb+mdoy80O20IzAsHaihRb5qA==
+"@vue/compiler-core@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.4.tgz#b8b5805e767b94d84af01f5527dbb4896326c478"
+ integrity sha512-oNwn+BAt3n9dK9uAYvI+XGlutwuTq/wfj4xCBaZCqwwVIGtD7D6ViihEbyYZrDHIHTDE3Q6oL3/hqmAyFEy9DQ==
dependencies:
"@babel/parser" "^7.25.3"
- "@vue/shared" "3.5.3"
+ "@vue/shared" "3.5.4"
entities "^4.5.0"
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-dom@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.3.tgz#195f21b2c700477e4c3e21f4c98edc7032aedca3"
- integrity sha512-wnzFArg9zpvk/811CDOZOadJRugf1Bgl/TQ3RfV4nKfSPok4hi0w10ziYUQR6LnnBAUlEXYLUfZ71Oj9ds/+QA==
+"@vue/compiler-dom@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.4.tgz#3f98e6ca76abab73630dad055b3ef6e2e6c2b006"
+ integrity sha512-yP9RRs4BDLOLfldn6ah+AGCNovGjMbL9uHvhDHf5wan4dAHLnFGOkqtfE7PPe4HTXIqE7l/NILdYw53bo1C8jw==
dependencies:
- "@vue/compiler-core" "3.5.3"
- "@vue/shared" "3.5.3"
+ "@vue/compiler-core" "3.5.4"
+ "@vue/shared" "3.5.4"
-"@vue/compiler-sfc@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.3.tgz#d44c1cafe94d26f74fa4864cabc948c3908a27de"
- integrity sha512-P3uATLny2tfyvMB04OQFe7Sczteno7SLFxwrOA/dw01pBWQHB5HL15a8PosoNX2aG/EAMGqnXTu+1LnmzFhpTQ==
+"@vue/compiler-sfc@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.4.tgz#a530accc9afed38506b14ce7ac6fb237eb09ff2d"
+ integrity sha512-P+yiPhL+NYH7m0ZgCq7AQR2q7OIE+mpAEgtkqEeH9oHSdIRvUO+4X6MPvblJIWcoe4YC5a2Gdf/RsoyP8FFiPQ==
dependencies:
"@babel/parser" "^7.25.3"
- "@vue/compiler-core" "3.5.3"
- "@vue/compiler-dom" "3.5.3"
- "@vue/compiler-ssr" "3.5.3"
- "@vue/shared" "3.5.3"
+ "@vue/compiler-core" "3.5.4"
+ "@vue/compiler-dom" "3.5.4"
+ "@vue/compiler-ssr" "3.5.4"
+ "@vue/shared" "3.5.4"
estree-walker "^2.0.2"
magic-string "^0.30.11"
postcss "^8.4.44"
source-map-js "^1.2.0"
-"@vue/compiler-ssr@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.3.tgz#ef8a98385f571e36798a82d783ac369a06d24f5c"
- integrity sha512-F/5f+r2WzL/2YAPl7UlKcJWHrvoZN8XwEBLnT7S4BXwncH25iDOabhO2M2DWioyTguJAGavDOawejkFXj8EM1w==
+"@vue/compiler-ssr@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.4.tgz#b6d011adaca367e7cc364cb09dfb6a5c12ad974a"
+ integrity sha512-acESdTXsxPnYr2C4Blv0ggx5zIFMgOzZmYU2UgvIff9POdRGbRNBHRyzHAnizcItvpgerSKQbllUc9USp3V7eg==
dependencies:
- "@vue/compiler-dom" "3.5.3"
- "@vue/shared" "3.5.3"
+ "@vue/compiler-dom" "3.5.4"
+ "@vue/shared" "3.5.4"
-"@vue/reactivity@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.3.tgz#0bdc6031d5be973ee0f807f82259d5579fb46fb6"
- integrity sha512-2w61UnRWTP7+rj1H/j6FH706gRBHdFVpIqEkSDAyIpafBXYH8xt4gttstbbCWdU3OlcSWO8/3mbKl/93/HSMpw==
+"@vue/reactivity@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.4.tgz#f1c771612e0612443583bac6ce52b8cef0ac5c40"
+ integrity sha512-HKKbEuP7tYSGCq4e4nK6ZW6l5hyG66OUetefBp4budUyjvAYsnQDf+bgFzg2RAgnH0CInyqXwD9y47jwJEHrQw==
dependencies:
- "@vue/shared" "3.5.3"
+ "@vue/shared" "3.5.4"
-"@vue/runtime-core@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.3.tgz#8126927e4b0cf87a8a7d32822abe8170b8c99edf"
- integrity sha512-5b2AQw5OZlmCzSsSBWYoZOsy75N4UdMWenTfDdI5bAzXnuVR7iR8Q4AOzQm2OGoA41xjk53VQKrqQhOz2ktWaw==
+"@vue/runtime-core@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.4.tgz#411e4f6d445d44354bbc242dfb168379c3bec5c3"
+ integrity sha512-f3ek2sTA0AFu0n+w+kCtz567Euqqa3eHewvo4klwS7mWfSj/A+UmYTwsnUFo35KeyAFY60JgrCGvEBsu1n/3LA==
dependencies:
- "@vue/reactivity" "3.5.3"
- "@vue/shared" "3.5.3"
+ "@vue/reactivity" "3.5.4"
+ "@vue/shared" "3.5.4"
-"@vue/runtime-dom@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.3.tgz#f07ba3faecfd39feb54c4d13d8cc4416ca28f111"
- integrity sha512-wPR1DEGc3XnQ7yHbmkTt3GoY0cEnVGQnARRdAkDzZ8MbUKEs26gogCQo6AOvvgahfjIcnvWJzkZArQ1fmWjcSg==
+"@vue/runtime-dom@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.4.tgz#68242033e648a6d1400f27d923d5788362fbefb8"
+ integrity sha512-ofyc0w6rbD5KtjhP1i9hGOKdxGpvmuB1jprP7Djlj0X7R5J/oLwuNuE98GJ8WW31Hu2VxQHtk/LYTAlW8xrJdw==
dependencies:
- "@vue/reactivity" "3.5.3"
- "@vue/runtime-core" "3.5.3"
- "@vue/shared" "3.5.3"
+ "@vue/reactivity" "3.5.4"
+ "@vue/runtime-core" "3.5.4"
+ "@vue/shared" "3.5.4"
csstype "^3.1.3"
-"@vue/server-renderer@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.3.tgz#1cbf7bb83cf1a6c7cdcea4ae3afca65c3cf6cf29"
- integrity sha512-28volmaZVG2PGO3V3+gBPKoSHvLlE8FGfG/GKXKkjjfxLuj/50B/0OQGakM/g6ehQeqCrZYM4eHC4Ks48eig1Q==
+"@vue/server-renderer@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.4.tgz#8b9a102474922156c881c8ed1442907512d5435b"
+ integrity sha512-FbjV6DJLgKRetMYFBA1UXCroCiED/Ckr53/ba9wivyd7D/Xw9fpo0T6zXzCnxQwyvkyrL7y6plgYhWhNjGxY5g==
dependencies:
- "@vue/compiler-ssr" "3.5.3"
- "@vue/shared" "3.5.3"
+ "@vue/compiler-ssr" "3.5.4"
+ "@vue/shared" "3.5.4"
-"@vue/shared@3.5.3":
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.3.tgz#fb7149372cf5768b9a9f980067c5d0ebac8dc833"
- integrity sha512-Jp2v8nylKBT+PlOUjun2Wp/f++TfJVFjshLzNtJDdmFJabJa7noGMncqXRM1vXGX+Yo2V7WykQFNxusSim8SCA==
+"@vue/shared@3.5.4":
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.4.tgz#d4768ddf13aded2774162298a3b5658cc999e1ee"
+ integrity sha512-L2MCDD8l7yC62Te5UUyPVpmexhL9ipVnYRw9CsWfm/BGRL5FwDX4a25bcJ/OJSD3+Hx+k/a8LDKcG2AFdJV3BA==
acorn-jsx@^5.3.2:
version "5.3.2"
@@ -6072,15 +6072,15 @@ vscode-uri@^3.0.8:
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
vue@^3.4.38:
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.3.tgz#1f621023b123341ab5f427e2a6d7320d0e47d72b"
- integrity sha512-xvRbd0HpuLovYbOHXRHlSBsSvmUJbo0pzbkKTApWnQGf3/cu5Z39mQeA5cZdLRVIoNf3zI6MSoOgHUT5i2jO+Q==
- dependencies:
- "@vue/compiler-dom" "3.5.3"
- "@vue/compiler-sfc" "3.5.3"
- "@vue/runtime-dom" "3.5.3"
- "@vue/server-renderer" "3.5.3"
- "@vue/shared" "3.5.3"
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.4.tgz#0e5935e8b1e5505d484aee732b72c6e77c7567fd"
+ integrity sha512-3yAj2gkmiY+i7+22A1PWM+kjOVXjU74UPINcTiN7grIVPyFFI0lpGwHlV/4xydDmobaBn7/xmi+YG8HeSlCTcg==
+ dependencies:
+ "@vue/compiler-dom" "3.5.4"
+ "@vue/compiler-sfc" "3.5.4"
+ "@vue/runtime-dom" "3.5.4"
+ "@vue/server-renderer" "3.5.4"
+ "@vue/shared" "3.5.4"
which-boxed-primitive@^1.0.2:
version "1.0.2"
From dcd2b9ff6a9a607a5b78a19f00fc9dc3a51a287f Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 11 Sep 2024 21:24:29 +0000
Subject: [PATCH 55/67] Bump vite from 5.4.3 to 5.4.4
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.3 to 5.4.4.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.4/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.4/packages/vite)
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 599a8cf67..de51504bd 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6051,9 +6051,9 @@ verror@1.10.0:
extsprintf "^1.2.0"
vite@^5.4.2:
- version "5.4.3"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.3.tgz#771c470e808cb6732f204e1ee96c2ed65b97a0eb"
- integrity sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q==
+ version "5.4.4"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.4.tgz#3da90314b617047366459443320ea78f39111008"
+ integrity sha512-RHFCkULitycHVTtelJ6jQLd+KSAAzOgEYorV32R2q++M6COBjKJR6BxqClwp5sf0XaBDjVMuJ9wnNfyAJwjMkA==
dependencies:
esbuild "^0.21.3"
postcss "^8.4.43"
From 08bff28b61dc7a2c535835d118696bf3825e7249 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 12 Sep 2024 21:21:23 +0000
Subject: [PATCH 56/67] Bump rollup from 4.21.2 to 4.21.3
Bumps [rollup](https://github.com/rollup/rollup) from 4.21.2 to 4.21.3.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.21.2...v4.21.3)
---
updated-dependencies:
- dependency-name: rollup
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 196 +++++++++++++++++++++++++++---------------------------
1 file changed, 98 insertions(+), 98 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 599a8cf67..315c44fe4 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1870,85 +1870,85 @@
estree-walker "^2.0.2"
picomatch "^2.3.1"
-"@rollup/rollup-android-arm-eabi@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.2.tgz#0412834dc423d1ff7be4cb1fc13a86a0cd262c11"
- integrity sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==
-
-"@rollup/rollup-android-arm64@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.2.tgz#baf1a014b13654f3b9e835388df9caf8c35389cb"
- integrity sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==
-
-"@rollup/rollup-darwin-arm64@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.2.tgz#0a2c364e775acdf1172fe3327662eec7c46e55b1"
- integrity sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==
-
-"@rollup/rollup-darwin-x64@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.2.tgz#a972db75890dfab8df0da228c28993220a468c42"
- integrity sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.2.tgz#1609d0630ef61109dd19a278353e5176d92e30a1"
- integrity sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==
-
-"@rollup/rollup-linux-arm-musleabihf@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.2.tgz#3c1dca5f160aa2e79e4b20ff6395eab21804f266"
- integrity sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==
-
-"@rollup/rollup-linux-arm64-gnu@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.2.tgz#c2fe376e8b04eafb52a286668a8df7c761470ac7"
- integrity sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==
-
-"@rollup/rollup-linux-arm64-musl@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.2.tgz#e62a4235f01e0f66dbba587c087ca6db8008ec80"
- integrity sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.2.tgz#24b3457e75ee9ae5b1c198bd39eea53222a74e54"
- integrity sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==
-
-"@rollup/rollup-linux-riscv64-gnu@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.2.tgz#38edfba9620fe2ca8116c97e02bd9f2d606bde09"
- integrity sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==
-
-"@rollup/rollup-linux-s390x-gnu@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.2.tgz#a3bfb8bc5f1e802f8c76cff4a4be2e9f9ac36a18"
- integrity sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==
-
-"@rollup/rollup-linux-x64-gnu@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.2.tgz#0dadf34be9199fcdda44b5985a086326344f30ad"
- integrity sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==
-
-"@rollup/rollup-linux-x64-musl@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.2.tgz#7b7deddce240400eb87f2406a445061b4fed99a8"
- integrity sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==
-
-"@rollup/rollup-win32-arm64-msvc@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.2.tgz#a0ca0c5149c2cfb26fab32e6ba3f16996fbdb504"
- integrity sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==
-
-"@rollup/rollup-win32-ia32-msvc@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.2.tgz#aae2886beec3024203dbb5569db3a137bc385f8e"
- integrity sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==
-
-"@rollup/rollup-win32-x64-msvc@4.21.2":
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.2.tgz#e4291e3c1bc637083f87936c333cdbcad22af63b"
- integrity sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==
+"@rollup/rollup-android-arm-eabi@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.3.tgz#155c7d82c1b36c3ad84d9adf9b3cd520cba81a0f"
+ integrity sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg==
+
+"@rollup/rollup-android-arm64@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.3.tgz#b94b6fa002bd94a9cbd8f9e47e23b25e5bd113ba"
+ integrity sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g==
+
+"@rollup/rollup-darwin-arm64@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.3.tgz#0934126cf9cbeadfe0eb7471ab5d1517e8cd8dcc"
+ integrity sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ==
+
+"@rollup/rollup-darwin-x64@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.3.tgz#0ce8e1e0f349778938c7c90e4bdc730640e0a13e"
+ integrity sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.3.tgz#5669d34775ad5d71e4f29ade99d0ff4df523afb6"
+ integrity sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g==
+
+"@rollup/rollup-linux-arm-musleabihf@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.3.tgz#f6d1a0e1da4061370cb2f4244fbdd727c806dd88"
+ integrity sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA==
+
+"@rollup/rollup-linux-arm64-gnu@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.3.tgz#ed96a05e99743dee4d23cc4913fc6e01a0089c88"
+ integrity sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw==
+
+"@rollup/rollup-linux-arm64-musl@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.3.tgz#057ea26eaa7e537a06ded617d23d57eab3cecb58"
+ integrity sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.3.tgz#6e6e1f9404c9bf3fbd7d51cd11cd288a9a2843aa"
+ integrity sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw==
+
+"@rollup/rollup-linux-riscv64-gnu@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.3.tgz#eef1536a53f6e6658a2a778130e6b1a4a41cb439"
+ integrity sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ==
+
+"@rollup/rollup-linux-s390x-gnu@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.3.tgz#2b28fb89ca084efaf8086f435025d96b4a966957"
+ integrity sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg==
+
+"@rollup/rollup-linux-x64-gnu@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.3.tgz#5226cde6c6b495b04a3392c1d2c572844e42f06b"
+ integrity sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g==
+
+"@rollup/rollup-linux-x64-musl@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.3.tgz#2c2412982e6c2a00a2ecac6d548ebb02f0aa6ca4"
+ integrity sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg==
+
+"@rollup/rollup-win32-arm64-msvc@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.3.tgz#fbb6ef5379199e2ec0103ef32877b0985c773a55"
+ integrity sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q==
+
+"@rollup/rollup-win32-ia32-msvc@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.3.tgz#d50e2082e147e24d87fe34abbf6246525ec3845a"
+ integrity sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA==
+
+"@rollup/rollup-win32-x64-msvc@4.21.3":
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.3.tgz#4115233aa1bd5a2060214f96d8511f6247093212"
+ integrity sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA==
"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0":
version "1.0.5"
@@ -5284,28 +5284,28 @@ rollup-plugin-copy@^3.5.0:
is-plain-object "^3.0.0"
rollup@^4.20.0, rollup@^4.21.0:
- version "4.21.2"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.2.tgz#f41f277a448d6264e923dd1ea179f0a926aaf9b7"
- integrity sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==
+ version "4.21.3"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.3.tgz#c64ba119e6aeb913798a6f7eef2780a0df5a0821"
+ integrity sha512-7sqRtBNnEbcBtMeRVc6VRsJMmpI+JU1z9VTvW8D4gXIYQFz0aLcsE6rRkyghZkLfEgUZgVvOG7A5CVz/VW5GIA==
dependencies:
"@types/estree" "1.0.5"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.21.2"
- "@rollup/rollup-android-arm64" "4.21.2"
- "@rollup/rollup-darwin-arm64" "4.21.2"
- "@rollup/rollup-darwin-x64" "4.21.2"
- "@rollup/rollup-linux-arm-gnueabihf" "4.21.2"
- "@rollup/rollup-linux-arm-musleabihf" "4.21.2"
- "@rollup/rollup-linux-arm64-gnu" "4.21.2"
- "@rollup/rollup-linux-arm64-musl" "4.21.2"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.21.2"
- "@rollup/rollup-linux-riscv64-gnu" "4.21.2"
- "@rollup/rollup-linux-s390x-gnu" "4.21.2"
- "@rollup/rollup-linux-x64-gnu" "4.21.2"
- "@rollup/rollup-linux-x64-musl" "4.21.2"
- "@rollup/rollup-win32-arm64-msvc" "4.21.2"
- "@rollup/rollup-win32-ia32-msvc" "4.21.2"
- "@rollup/rollup-win32-x64-msvc" "4.21.2"
+ "@rollup/rollup-android-arm-eabi" "4.21.3"
+ "@rollup/rollup-android-arm64" "4.21.3"
+ "@rollup/rollup-darwin-arm64" "4.21.3"
+ "@rollup/rollup-darwin-x64" "4.21.3"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.21.3"
+ "@rollup/rollup-linux-arm-musleabihf" "4.21.3"
+ "@rollup/rollup-linux-arm64-gnu" "4.21.3"
+ "@rollup/rollup-linux-arm64-musl" "4.21.3"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.21.3"
+ "@rollup/rollup-linux-riscv64-gnu" "4.21.3"
+ "@rollup/rollup-linux-s390x-gnu" "4.21.3"
+ "@rollup/rollup-linux-x64-gnu" "4.21.3"
+ "@rollup/rollup-linux-x64-musl" "4.21.3"
+ "@rollup/rollup-win32-arm64-msvc" "4.21.3"
+ "@rollup/rollup-win32-ia32-msvc" "4.21.3"
+ "@rollup/rollup-win32-x64-msvc" "4.21.3"
fsevents "~2.3.2"
run-parallel@^1.1.9:
From 6d587e4f5c460be97a64658fa4c54e453b083008 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 13 Sep 2024 21:10:41 +0000
Subject: [PATCH 57/67] Bump vite from 5.4.4 to 5.4.5
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.4 to 5.4.5.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.5/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.5/packages/vite)
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index f81dde3a6..0bcbd696a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6051,9 +6051,9 @@ verror@1.10.0:
extsprintf "^1.2.0"
vite@^5.4.2:
- version "5.4.4"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.4.tgz#3da90314b617047366459443320ea78f39111008"
- integrity sha512-RHFCkULitycHVTtelJ6jQLd+KSAAzOgEYorV32R2q++M6COBjKJR6BxqClwp5sf0XaBDjVMuJ9wnNfyAJwjMkA==
+ version "5.4.5"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.5.tgz#e4ab27709de46ff29bd8db52b0c51606acba893b"
+ integrity sha512-pXqR0qtb2bTwLkev4SE3r4abCNioP3GkjvIDLlzziPpXtHgiJIjuKl+1GN6ESOT3wMjG3JTeARopj2SwYaHTOA==
dependencies:
esbuild "^0.21.3"
postcss "^8.4.43"
From 32930809c84e2bc2de06c9f387b20dd14bcfce8c Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 16 Sep 2024 21:30:52 +0000
Subject: [PATCH 58/67] Bump vite from 5.4.5 to 5.4.6
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.5 to 5.4.6.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.6/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.6/packages/vite)
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 0bcbd696a..3935f71ee 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6051,9 +6051,9 @@ verror@1.10.0:
extsprintf "^1.2.0"
vite@^5.4.2:
- version "5.4.5"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.5.tgz#e4ab27709de46ff29bd8db52b0c51606acba893b"
- integrity sha512-pXqR0qtb2bTwLkev4SE3r4abCNioP3GkjvIDLlzziPpXtHgiJIjuKl+1GN6ESOT3wMjG3JTeARopj2SwYaHTOA==
+ version "5.4.6"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f"
+ integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==
dependencies:
esbuild "^0.21.3"
postcss "^8.4.43"
From 1e18870687687a72b895f5cd78d678ae79b3c4c3 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 16 Sep 2024 21:31:01 +0000
Subject: [PATCH 59/67] Bump vue from 3.5.4 to 3.5.6
Bumps [vue](https://github.com/vuejs/core) from 3.5.4 to 3.5.6.
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/compare/v3.5.4...v3.5.6)
---
updated-dependencies:
- dependency-name: vue
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 147 ++++++++++++++++++++++++++++++------------------------
1 file changed, 83 insertions(+), 64 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 0bcbd696a..8bfa28325 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2014,85 +2014,85 @@
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693"
integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==
-"@vue/compiler-core@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.4.tgz#b8b5805e767b94d84af01f5527dbb4896326c478"
- integrity sha512-oNwn+BAt3n9dK9uAYvI+XGlutwuTq/wfj4xCBaZCqwwVIGtD7D6ViihEbyYZrDHIHTDE3Q6oL3/hqmAyFEy9DQ==
+"@vue/compiler-core@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.6.tgz#4a771c738fe745b61b963c41077af1405200db33"
+ integrity sha512-r+gNu6K4lrvaQLQGmf+1gc41p3FO2OUJyWmNqaIITaJU6YFiV5PtQSFZt8jfztYyARwqhoCayjprC7KMvT3nRA==
dependencies:
"@babel/parser" "^7.25.3"
- "@vue/shared" "3.5.4"
+ "@vue/shared" "3.5.6"
entities "^4.5.0"
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-dom@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.4.tgz#3f98e6ca76abab73630dad055b3ef6e2e6c2b006"
- integrity sha512-yP9RRs4BDLOLfldn6ah+AGCNovGjMbL9uHvhDHf5wan4dAHLnFGOkqtfE7PPe4HTXIqE7l/NILdYw53bo1C8jw==
+"@vue/compiler-dom@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.6.tgz#0942c290d3a52eb396243850ec73005f669c210d"
+ integrity sha512-xRXqxDrIqK8v8sSScpistyYH0qYqxakpsIvqMD2e5sV/PXQ1mTwtXp4k42yHK06KXxKSmitop9e45Ui/3BrTEw==
dependencies:
- "@vue/compiler-core" "3.5.4"
- "@vue/shared" "3.5.4"
+ "@vue/compiler-core" "3.5.6"
+ "@vue/shared" "3.5.6"
-"@vue/compiler-sfc@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.4.tgz#a530accc9afed38506b14ce7ac6fb237eb09ff2d"
- integrity sha512-P+yiPhL+NYH7m0ZgCq7AQR2q7OIE+mpAEgtkqEeH9oHSdIRvUO+4X6MPvblJIWcoe4YC5a2Gdf/RsoyP8FFiPQ==
+"@vue/compiler-sfc@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.6.tgz#7f730002a18c7be7962741de6a40491eb59e4ad6"
+ integrity sha512-pjWJ8Kj9TDHlbF5LywjVso+BIxCY5wVOLhkEXRhuCHDxPFIeX1zaFefKs8RYoHvkSMqRWt93a0f2gNJVJixHwg==
dependencies:
"@babel/parser" "^7.25.3"
- "@vue/compiler-core" "3.5.4"
- "@vue/compiler-dom" "3.5.4"
- "@vue/compiler-ssr" "3.5.4"
- "@vue/shared" "3.5.4"
+ "@vue/compiler-core" "3.5.6"
+ "@vue/compiler-dom" "3.5.6"
+ "@vue/compiler-ssr" "3.5.6"
+ "@vue/shared" "3.5.6"
estree-walker "^2.0.2"
magic-string "^0.30.11"
- postcss "^8.4.44"
+ postcss "^8.4.47"
source-map-js "^1.2.0"
-"@vue/compiler-ssr@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.4.tgz#b6d011adaca367e7cc364cb09dfb6a5c12ad974a"
- integrity sha512-acESdTXsxPnYr2C4Blv0ggx5zIFMgOzZmYU2UgvIff9POdRGbRNBHRyzHAnizcItvpgerSKQbllUc9USp3V7eg==
+"@vue/compiler-ssr@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.6.tgz#011eb621ec27c51fea50297d872b0282e6c49133"
+ integrity sha512-VpWbaZrEOCqnmqjE83xdwegtr5qO/2OPUC6veWgvNqTJ3bYysz6vY3VqMuOijubuUYPRpG3OOKIh9TD0Stxb9A==
dependencies:
- "@vue/compiler-dom" "3.5.4"
- "@vue/shared" "3.5.4"
+ "@vue/compiler-dom" "3.5.6"
+ "@vue/shared" "3.5.6"
-"@vue/reactivity@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.4.tgz#f1c771612e0612443583bac6ce52b8cef0ac5c40"
- integrity sha512-HKKbEuP7tYSGCq4e4nK6ZW6l5hyG66OUetefBp4budUyjvAYsnQDf+bgFzg2RAgnH0CInyqXwD9y47jwJEHrQw==
+"@vue/reactivity@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.6.tgz#d26fea799db554e7c1c3469be3577e0b8fd6deb6"
+ integrity sha512-shZ+KtBoHna5GyUxWfoFVBCVd7k56m6lGhk5e+J9AKjheHF6yob5eukssHRI+rzvHBiU1sWs/1ZhNbLExc5oYQ==
dependencies:
- "@vue/shared" "3.5.4"
+ "@vue/shared" "3.5.6"
-"@vue/runtime-core@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.4.tgz#411e4f6d445d44354bbc242dfb168379c3bec5c3"
- integrity sha512-f3ek2sTA0AFu0n+w+kCtz567Euqqa3eHewvo4klwS7mWfSj/A+UmYTwsnUFo35KeyAFY60JgrCGvEBsu1n/3LA==
+"@vue/runtime-core@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.6.tgz#bbf8c722d5dbf55c77841d3d76ed630a4a5a573d"
+ integrity sha512-FpFULR6+c2lI+m1fIGONLDqPQO34jxV8g6A4wBOgne8eSRHP6PQL27+kWFIx5wNhhjkO7B4rgtsHAmWv7qKvbg==
dependencies:
- "@vue/reactivity" "3.5.4"
- "@vue/shared" "3.5.4"
+ "@vue/reactivity" "3.5.6"
+ "@vue/shared" "3.5.6"
-"@vue/runtime-dom@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.4.tgz#68242033e648a6d1400f27d923d5788362fbefb8"
- integrity sha512-ofyc0w6rbD5KtjhP1i9hGOKdxGpvmuB1jprP7Djlj0X7R5J/oLwuNuE98GJ8WW31Hu2VxQHtk/LYTAlW8xrJdw==
+"@vue/runtime-dom@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.6.tgz#17c190bee838cd7b4f0531dafea1accb3ba6da14"
+ integrity sha512-SDPseWre45G38ENH2zXRAHL1dw/rr5qp91lS4lt/nHvMr0MhsbCbihGAWLXNB/6VfFOJe2O+RBRkXU+CJF7/sw==
dependencies:
- "@vue/reactivity" "3.5.4"
- "@vue/runtime-core" "3.5.4"
- "@vue/shared" "3.5.4"
+ "@vue/reactivity" "3.5.6"
+ "@vue/runtime-core" "3.5.6"
+ "@vue/shared" "3.5.6"
csstype "^3.1.3"
-"@vue/server-renderer@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.4.tgz#8b9a102474922156c881c8ed1442907512d5435b"
- integrity sha512-FbjV6DJLgKRetMYFBA1UXCroCiED/Ckr53/ba9wivyd7D/Xw9fpo0T6zXzCnxQwyvkyrL7y6plgYhWhNjGxY5g==
+"@vue/server-renderer@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.6.tgz#f029aecb740c3ff6ad63dd10736875161d22dbb9"
+ integrity sha512-zivnxQnOnwEXVaT9CstJ64rZFXMS5ZkKxCjDQKiMSvUhXRzFLWZVbaBiNF4HGDqGNNsTgmjcCSmU6TB/0OOxLA==
dependencies:
- "@vue/compiler-ssr" "3.5.4"
- "@vue/shared" "3.5.4"
+ "@vue/compiler-ssr" "3.5.6"
+ "@vue/shared" "3.5.6"
-"@vue/shared@3.5.4":
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.4.tgz#d4768ddf13aded2774162298a3b5658cc999e1ee"
- integrity sha512-L2MCDD8l7yC62Te5UUyPVpmexhL9ipVnYRw9CsWfm/BGRL5FwDX4a25bcJ/OJSD3+Hx+k/a8LDKcG2AFdJV3BA==
+"@vue/shared@3.5.6":
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.6.tgz#602b3c2dccfe612f9e2e52e861dd7db340961a4f"
+ integrity sha512-eidH0HInnL39z6wAt6SFIwBrvGOpDWsDxlw3rCgo1B+CQ1781WzQUSU3YjxgdkcJo9Q8S6LmXTkvI+cLHGkQfA==
acorn-jsx@^5.3.2:
version "5.3.2"
@@ -4985,6 +4985,11 @@ picocolors@^1.0.0, picocolors@^1.0.1:
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1"
integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==
+picocolors@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
+ integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
+
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
version "2.3.1"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
@@ -5043,7 +5048,7 @@ postcss-value-parser@^4.2.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@^8.4.41, postcss@^8.4.43, postcss@^8.4.44:
+postcss@^8.4.41, postcss@^8.4.43:
version "8.4.45"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.45.tgz#538d13d89a16ef71edbf75d895284ae06b79e603"
integrity sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==
@@ -5052,6 +5057,15 @@ postcss@^8.4.41, postcss@^8.4.43, postcss@^8.4.44:
picocolors "^1.0.1"
source-map-js "^1.2.0"
+postcss@^8.4.47:
+ version "8.4.47"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365"
+ integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==
+ dependencies:
+ nanoid "^3.3.7"
+ picocolors "^1.1.0"
+ source-map-js "^1.2.1"
+
prelude-ls@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
@@ -5491,6 +5505,11 @@ smob@^1.0.0:
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
+source-map-js@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
+ integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
+
source-map-support@~0.5.20:
version "0.5.21"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
@@ -6072,15 +6091,15 @@ vscode-uri@^3.0.8:
integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
vue@^3.4.38:
- version "3.5.4"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.4.tgz#0e5935e8b1e5505d484aee732b72c6e77c7567fd"
- integrity sha512-3yAj2gkmiY+i7+22A1PWM+kjOVXjU74UPINcTiN7grIVPyFFI0lpGwHlV/4xydDmobaBn7/xmi+YG8HeSlCTcg==
- dependencies:
- "@vue/compiler-dom" "3.5.4"
- "@vue/compiler-sfc" "3.5.4"
- "@vue/runtime-dom" "3.5.4"
- "@vue/server-renderer" "3.5.4"
- "@vue/shared" "3.5.4"
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.6.tgz#025b1d411627883577457797eff93e85e61ef9c1"
+ integrity sha512-zv+20E2VIYbcJOzJPUWp03NOGFhMmpCKOfSxVTmCYyYFFko48H9tmuQFzYj7tu4qX1AeXlp9DmhIP89/sSxxhw==
+ dependencies:
+ "@vue/compiler-dom" "3.5.6"
+ "@vue/compiler-sfc" "3.5.6"
+ "@vue/runtime-dom" "3.5.6"
+ "@vue/server-renderer" "3.5.6"
+ "@vue/shared" "3.5.6"
which-boxed-primitive@^1.0.2:
version "1.0.2"
From bc2d92ede4e0894f729fe2e2c7dde494941baa44 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 16 Sep 2024 21:31:11 +0000
Subject: [PATCH 60/67] Bump eslint from 8.57.0 to 8.57.1
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 8.57.1.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.57.0...v8.57.1)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 0bcbd696a..75642ad5d 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1691,17 +1691,17 @@
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
-"@eslint/js@8.57.0":
- version "8.57.0"
- resolved "https://registry.yarnpkg.com/@eslint%2fjs/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f"
- integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==
+"@eslint/js@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2"
+ integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==
-"@humanwhocodes/config-array@^0.11.14":
- version "0.11.14"
- resolved "https://registry.yarnpkg.com/@humanwhocodes%2fconfig-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b"
- integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==
+"@humanwhocodes/config-array@^0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748"
+ integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==
dependencies:
- "@humanwhocodes/object-schema" "^2.0.2"
+ "@humanwhocodes/object-schema" "^2.0.3"
debug "^4.3.1"
minimatch "^3.0.5"
@@ -1710,9 +1710,9 @@
resolved "https://registry.yarnpkg.com/@humanwhocodes%2fmodule-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
-"@humanwhocodes/object-schema@^2.0.2":
+"@humanwhocodes/object-schema@^2.0.3":
version "2.0.3"
- resolved "https://registry.yarnpkg.com/@humanwhocodes%2fobject-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3"
integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==
"@isaacs/cliui@^8.0.2":
@@ -3313,15 +3313,15 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4
integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
eslint@^8.57.0:
- version "8.57.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668"
- integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9"
+ integrity sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@eslint-community/regexpp" "^4.6.1"
"@eslint/eslintrc" "^2.1.4"
- "@eslint/js" "8.57.0"
- "@humanwhocodes/config-array" "^0.11.14"
+ "@eslint/js" "8.57.1"
+ "@humanwhocodes/config-array" "^0.13.0"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
"@ungap/structured-clone" "^1.2.0"
From 9927f11a640eba756b5fef93717c0ef0c14bb5cc Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 17 Sep 2024 21:21:51 +0000
Subject: [PATCH 61/67] Bump cspell from 8.14.2 to 8.14.3
Bumps [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) from 8.14.2 to 8.14.3.
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.14.3/packages/cspell)
---
updated-dependencies:
- dependency-name: cspell
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 414 +++++++++++++++++++++++++++---------------------------
1 file changed, 210 insertions(+), 204 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 59edd157c..60f0dd43f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1092,34 +1092,35 @@
resolved "https://registry.yarnpkg.com/@colors%2fcolors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
-"@cspell/cspell-bundled-dicts@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.14.2.tgz#746706485228e055ff342a66191cb6b9e58e748a"
- integrity sha512-Kv2Utj/RTSxfufGXkkoTZ/3ErCsYWpCijtDFr/FwSsM7mC0PzLpdlcD9xjtgrJO5Kwp7T47iTG21U4Mwddyi8Q==
+"@cspell/cspell-bundled-dicts@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.14.3.tgz#c91e8be7c1890b963608bb2887ffb150795ed94f"
+ integrity sha512-O0QA2OD0IDatIxNinr5woWJ8uC3/fbMaOdu3R+142wMX3f2hB08Wfvk+anFgFVTgo90JQnmKEvlCZD1Q8QlWig==
dependencies:
"@cspell/dict-ada" "^4.0.2"
- "@cspell/dict-aws" "^4.0.3"
- "@cspell/dict-bash" "^4.1.3"
+ "@cspell/dict-aws" "^4.0.4"
+ "@cspell/dict-bash" "^4.1.4"
"@cspell/dict-companies" "^3.1.4"
- "@cspell/dict-cpp" "^5.1.12"
+ "@cspell/dict-cpp" "^5.1.16"
"@cspell/dict-cryptocurrencies" "^5.0.0"
"@cspell/dict-csharp" "^4.0.2"
"@cspell/dict-css" "^4.0.13"
- "@cspell/dict-dart" "^2.0.3"
+ "@cspell/dict-dart" "^2.2.1"
"@cspell/dict-django" "^4.1.0"
"@cspell/dict-docker" "^1.1.7"
- "@cspell/dict-dotnet" "^5.0.2"
+ "@cspell/dict-dotnet" "^5.0.5"
"@cspell/dict-elixir" "^4.0.3"
"@cspell/dict-en-common-misspellings" "^2.0.4"
"@cspell/dict-en-gb" "1.1.33"
"@cspell/dict-en_us" "^4.3.23"
"@cspell/dict-filetypes" "^3.0.4"
+ "@cspell/dict-flutter" "^1.0.0"
"@cspell/dict-fonts" "^4.0.0"
"@cspell/dict-fsharp" "^1.0.1"
"@cspell/dict-fullstack" "^3.2.0"
"@cspell/dict-gaming-terms" "^1.0.5"
"@cspell/dict-git" "^3.0.0"
- "@cspell/dict-golang" "^6.0.9"
+ "@cspell/dict-golang" "^6.0.12"
"@cspell/dict-google" "^1.0.1"
"@cspell/dict-haskell" "^4.0.1"
"@cspell/dict-html" "^4.0.5"
@@ -1133,76 +1134,76 @@
"@cspell/dict-makefile" "^1.0.0"
"@cspell/dict-monkeyc" "^1.0.6"
"@cspell/dict-node" "^5.0.1"
- "@cspell/dict-npm" "^5.0.18"
- "@cspell/dict-php" "^4.0.8"
- "@cspell/dict-powershell" "^5.0.5"
- "@cspell/dict-public-licenses" "^2.0.7"
- "@cspell/dict-python" "^4.2.4"
+ "@cspell/dict-npm" "^5.1.4"
+ "@cspell/dict-php" "^4.0.10"
+ "@cspell/dict-powershell" "^5.0.8"
+ "@cspell/dict-public-licenses" "^2.0.8"
+ "@cspell/dict-python" "^4.2.6"
"@cspell/dict-r" "^2.0.1"
- "@cspell/dict-ruby" "^5.0.2"
+ "@cspell/dict-ruby" "^5.0.3"
"@cspell/dict-rust" "^4.0.5"
"@cspell/dict-scala" "^5.0.3"
- "@cspell/dict-software-terms" "^4.0.6"
+ "@cspell/dict-software-terms" "^4.1.3"
"@cspell/dict-sql" "^2.1.5"
"@cspell/dict-svelte" "^1.0.2"
"@cspell/dict-swift" "^2.0.1"
- "@cspell/dict-terraform" "^1.0.0"
+ "@cspell/dict-terraform" "^1.0.1"
"@cspell/dict-typescript" "^3.1.6"
"@cspell/dict-vue" "^3.0.0"
-"@cspell/cspell-json-reporter@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.14.2.tgz#c05e6e0d6e63072e3f416c9b3088aa8329de19a1"
- integrity sha512-TZavcnNIZKX1xC/GNj80RgFVKHCT4pHT0qm9jCsQFH2QJfyCrUlkEvotKGSQ04lAyCwWg6Enq95qhouF8YbKUQ==
+"@cspell/cspell-json-reporter@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.14.3.tgz#8272dc695a766d602b8a9fbba0c4cc43ec9e2c2c"
+ integrity sha512-xJbIhSVL1LrwtIpFYvfbXMXv0GUqp2mFkTdG652zb4ZCjQUitmAN1eOhpUt2WHqyCdsMNjMcoJ05PNAN1LrLBQ==
dependencies:
- "@cspell/cspell-types" "8.14.2"
+ "@cspell/cspell-types" "8.14.3"
-"@cspell/cspell-pipe@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.14.2.tgz#8f9df27fff5c6c55e29fa6967768a38b5494a665"
- integrity sha512-aWMoXZAXEre0/M9AYWOW33YyOJZ06i4vvsEpWBDWpHpWQEmsR/7cMMgld8Pp3wlEjIUclUAKTYmrZ61PFWU/og==
+"@cspell/cspell-pipe@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.14.3.tgz#34b22050651c1bdfbf83085159701b7d0e32a0a2"
+ integrity sha512-vc4gcsQ/qLHcHHz1EmTLe0x1aZYUzkQAyIOTLRWFlsWrdztXQ3zSEaPB2JzgLNCaqJrYJPs5Wh/Uo+6w9ZaIeA==
-"@cspell/cspell-resolver@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.14.2.tgz#0cfaa0d0f613feab76ddb30a1d0a60d428726a0c"
- integrity sha512-pSyBsAvslaN0dx0pHdvECJEuFDDBJGAD6G8U4BVbIyj2OPk0Ox0HrZIj6csYxxoJERAgNO/q7yCPwa4j9NNFXg==
+"@cspell/cspell-resolver@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.14.3.tgz#9dcfc454934705cb07bc57d4c61f5c190428803b"
+ integrity sha512-SOG4LQS4rt93FnCyCsDfCxOuq+uTzco6zpncwMU1GgH8bSEEeiDphGsgmdgK7XxKNlr59o8JFeD+45AkJWHm5w==
dependencies:
global-directory "^4.0.1"
-"@cspell/cspell-service-bus@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.14.2.tgz#f0d317fd4de99700b2b7f10b05d88dc2ea55d7f8"
- integrity sha512-WUF7xf3YgXYIqjmBwLcVugYIrYL4WfXchgSo9rmbbnOcAArzsK+HKfzb4AniZAJ1unxcIQ0JnVlRmnCAKPjjLg==
+"@cspell/cspell-service-bus@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.14.3.tgz#a2f040ef0db46b7e21108aedf82d9ef41a977376"
+ integrity sha512-bqb+6KlFMVEprBlga1olLmZFWmsT267hmLZHhQoNKTlZJlzyQjmAd4XYUJyH9oEYOOt4t5PgqtZJSxudmq2SIw==
-"@cspell/cspell-types@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.14.2.tgz#e1bae42766b43ff6d943b57bb7830bc873f25c94"
- integrity sha512-MRY8MjBNOKGMDSkxAKueYAgVL43miO+lDcLCBBP+7cNXqHiUFMIZteONcGp3kJT0dWS04dN6lKAXvaNF0aWcng==
+"@cspell/cspell-types@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.14.3.tgz#c43452cb9cac1a47f02005c24f6600acfe863793"
+ integrity sha512-t8cvWSLVmgoAnmwMKXf0W1k3aWPPksTIqcNFMVF2f3m4dZh9HBh+M+xK9mXXScALmQev+psbvbiTjRlKD52ZnQ==
"@cspell/dict-ada@^4.0.2":
version "4.0.2"
resolved "https://registry.yarnpkg.com/@cspell%2fdict-ada/-/dict-ada-4.0.2.tgz#8da2216660aeb831a0d9055399a364a01db5805a"
integrity sha512-0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA==
-"@cspell/dict-aws@^4.0.3":
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/@cspell/dict-aws/-/dict-aws-4.0.3.tgz#7d36d4d5439d1c39b815e0ae19f79e48a823e047"
- integrity sha512-0C0RQ4EM29fH0tIYv+EgDQEum0QI6OrmjENC9u98pB8UcnYxGG/SqinuPxo+TgcEuInj0Q73MsBpJ1l5xUnrsw==
+"@cspell/dict-aws@^4.0.4":
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-aws/-/dict-aws-4.0.4.tgz#638a38df18c93d5cb74607b24ab4e1498825d565"
+ integrity sha512-6AWI/Kkf+RcX/J81VX8+GKLeTgHWEr/OMhGk3dHQzWK66RaqDJCGDqi7494ghZKcBB7dGa3U5jcKw2FZHL/u3w==
-"@cspell/dict-bash@^4.1.3":
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-bash/-/dict-bash-4.1.3.tgz#25fba40825ac10083676ab2c777e471c3f71b36e"
- integrity sha512-tOdI3QVJDbQSwPjUkOiQFhYcu2eedmX/PtEpVWg0aFps/r6AyjUQINtTgpqMYnYuq8O1QUIQqnpx21aovcgZCw==
+"@cspell/dict-bash@^4.1.4":
+ version "4.1.4"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-bash/-/dict-bash-4.1.4.tgz#a7942df189d3cc5ebced5b877d64ddbb24301137"
+ integrity sha512-W/AHoQcJYn3Vn/tUiXX2+6D/bhfzdDshwcbQWv9TdiNlXP9P6UJjDKWbxyA5ogJCsR2D0X9Kx11oV8E58siGKQ==
"@cspell/dict-companies@^3.1.4":
version "3.1.4"
resolved "https://registry.yarnpkg.com/@cspell/dict-companies/-/dict-companies-3.1.4.tgz#2e7094416432b8547ec335683f5aac9a49dce47e"
integrity sha512-y9e0amzEK36EiiKx3VAA+SHQJPpf2Qv5cCt5eTUSggpTkiFkCh6gRKQ97rVlrKh5GJrqinDwYIJtTsxuh2vy2Q==
-"@cspell/dict-cpp@^5.1.12":
- version "5.1.12"
- resolved "https://registry.yarnpkg.com/@cspell/dict-cpp/-/dict-cpp-5.1.12.tgz#52d5ed8b96268e8282f6d7694ee2434b20bafb21"
- integrity sha512-6lXLOFIa+k/qBcu0bjaE/Kc6v3sh9VhsDOXD1Dalm3zgd0QIMjp5XBmkpSdCAK3pWCPV0Se7ysVLDfCea1BuXg==
+"@cspell/dict-cpp@^5.1.16":
+ version "5.1.16"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-cpp/-/dict-cpp-5.1.16.tgz#e6557d5b916ebff02045b60f7016749e085921b0"
+ integrity sha512-32fU5RkuOM55IRcxjByiSoKbjr+C4danDfYjHaQNRWdvjzJzci3fLDGA2wTXiclkgDODxGiV8LCTUwCz+3TNWA==
"@cspell/dict-cryptocurrencies@^5.0.0":
version "5.0.0"
@@ -1219,10 +1220,10 @@
resolved "https://registry.yarnpkg.com/@cspell/dict-css/-/dict-css-4.0.13.tgz#b95310ba67694d25bcb055786dde65e091621d14"
integrity sha512-WfOQkqlAJTo8eIQeztaH0N0P+iF5hsJVKFuhy4jmARPISy8Efcv8QXk2/IVbmjJH0/ZV7dKRdnY5JFVXuVz37g==
-"@cspell/dict-dart@^2.0.3":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-dart/-/dict-dart-2.0.3.tgz#75e7ffe47d5889c2c831af35acdd92ebdbd4cf12"
- integrity sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw==
+"@cspell/dict-dart@^2.2.1":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-dart/-/dict-dart-2.2.1.tgz#d5ef7632240cb19c8892e66ba5ed1089ab8e46a3"
+ integrity sha512-yriKm7QkoPx3JPSSOcw6iX9gOb2N50bOo/wqWviqPYbhpMRh9Xiv6dkUy3+ot+21GuShZazO8X6U5+Vw67XEwg==
"@cspell/dict-data-science@^2.0.1":
version "2.0.1"
@@ -1239,10 +1240,10 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-docker/-/dict-docker-1.1.7.tgz#bcf933283fbdfef19c71a642e7e8c38baf9014f2"
integrity sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A==
-"@cspell/dict-dotnet@^5.0.2":
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-dotnet/-/dict-dotnet-5.0.2.tgz#d89ca8fa2e546b5e1b1f1288746d26bb627d9f38"
- integrity sha512-UD/pO2A2zia/YZJ8Kck/F6YyDSpCMq0YvItpd4YbtDVzPREfTZ48FjZsbYi4Jhzwfvc6o8R56JusAE58P+4sNQ==
+"@cspell/dict-dotnet@^5.0.5":
+ version "5.0.5"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-dotnet/-/dict-dotnet-5.0.5.tgz#0f614ef6fa052e7598a6fe20770a1e5bb19f0de1"
+ integrity sha512-gjg0L97ee146wX47dnA698cHm85e7EOpf9mVrJD8DmEaqoo/k1oPy2g7c7LgKxK9XnqwoXxhLNnngPrwXOoEtQ==
"@cspell/dict-elixir@^4.0.3":
version "4.0.3"
@@ -1269,6 +1270,11 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-filetypes/-/dict-filetypes-3.0.4.tgz#aca71c7bb8c8805b54f382d98ded5ec75ebc1e36"
integrity sha512-IBi8eIVdykoGgIv5wQhOURi5lmCNJq0we6DvqKoPQJHthXbgsuO1qrHSiUVydMiQl/XvcnUWTMeAlVUlUClnVg==
+"@cspell/dict-flutter@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-flutter/-/dict-flutter-1.0.0.tgz#9179aeb5e7544c061ffa3e5080a4c015f88efee3"
+ integrity sha512-W7k1VIc4KeV8BjEBxpA3cqpzbDWjfb7oXkEb0LecBCBp5Z7kcfnjT1YVotTx/U9PGyAOBhDaEdgZACVGNQhayw==
+
"@cspell/dict-fonts@^4.0.0":
version "4.0.0"
resolved "https://registry.yarnpkg.com/@cspell%2fdict-fonts/-/dict-fonts-4.0.0.tgz#9bc8beb2a7b068b4fdb45cb994b36fd184316327"
@@ -1294,10 +1300,10 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-git/-/dict-git-3.0.0.tgz#c275af86041a2b59a7facce37525e2af05653b95"
integrity sha512-simGS/lIiXbEaqJu9E2VPoYW1OTC2xrwPPXNXFMa2uo/50av56qOuaxDrZ5eH1LidFXwoc8HROCHYeKoNrDLSw==
-"@cspell/dict-golang@^6.0.9":
- version "6.0.9"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-golang/-/dict-golang-6.0.9.tgz#b26ee13fb34a8cd40fb22380de8a46b25739fcab"
- integrity sha512-etDt2WQauyEQDA+qPS5QtkYTb2I9l5IfQftAllVoB1aOrT6bxxpHvMEpJ0Hsn/vezxrCqa/BmtUbRxllIxIuSg==
+"@cspell/dict-golang@^6.0.12":
+ version "6.0.12"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-golang/-/dict-golang-6.0.12.tgz#a9d4c53edfec34d06a226a9af6af0df899bd720f"
+ integrity sha512-LEPeoqd+4O+vceHF73S7D7+LYfrAjOvp4Dqzh4MT30ruzlQ77yHRSuYOJtrFN1GK5ntAt/ILSVOKg9sgsz1Llg==
"@cspell/dict-google@^1.0.1":
version "1.0.1"
@@ -1364,30 +1370,30 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-node/-/dict-node-5.0.1.tgz#77e17c576a897a3391fce01c1cc5da60bb4c2268"
integrity sha512-lax/jGz9h3Dv83v8LHa5G0bf6wm8YVRMzbjJPG/9rp7cAGPtdrga+XANFq+B7bY5+jiSA3zvj10LUFCFjnnCCg==
-"@cspell/dict-npm@^5.0.18":
- version "5.0.18"
- resolved "https://registry.yarnpkg.com/@cspell/dict-npm/-/dict-npm-5.0.18.tgz#7ec5640c97bd25a64de0c9e74eb19dda86fba025"
- integrity sha512-weMTyxWpzz19q4wv9n183BtFvdD5fCjtze+bFKpl+4rO/YlPhHL2cXLAeexJz/VDSBecwX4ybTZYoknd1h2J4w==
+"@cspell/dict-npm@^5.1.4":
+ version "5.1.4"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-npm/-/dict-npm-5.1.4.tgz#2359f2c0256080aea0a01440c6f3e78ea75df64d"
+ integrity sha512-yzqVTY4P5neom4z9orV2IFOqDZ7fDotmisP7nwQkEmftoELgn5CUtNdnJhWDoDQQn6yrxOxA8jEqmyETIWzN4Q==
-"@cspell/dict-php@^4.0.8":
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-php/-/dict-php-4.0.8.tgz#fedce3109dff13a0f3d8d88ba604d6edd2b9fb70"
- integrity sha512-TBw3won4MCBQ2wdu7kvgOCR3dY2Tb+LJHgDUpuquy3WnzGiSDJ4AVelrZdE1xu7mjFJUr4q48aB21YT5uQqPZA==
+"@cspell/dict-php@^4.0.10":
+ version "4.0.10"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-php/-/dict-php-4.0.10.tgz#e2ad4d3e30ec009824d9663a795f6281ae39caaf"
+ integrity sha512-NfTZdp6kcZDF1PvgQ6cY0zE4FUO5rSwNmBH/iwCBuaLfJAFQ97rgjxo+D2bic4CFwNjyHutnHPtjJBRANO5XQw==
-"@cspell/dict-powershell@^5.0.5":
- version "5.0.5"
- resolved "https://registry.yarnpkg.com/@cspell/dict-powershell/-/dict-powershell-5.0.5.tgz#3319d2fbad740e164a78386d711668bfe335c1f2"
- integrity sha512-3JVyvMoDJesAATYGOxcUWPbQPUvpZmkinV3m8HL1w1RrjeMVXXuK7U1jhopSneBtLhkU+9HKFwgh9l9xL9mY2Q==
+"@cspell/dict-powershell@^5.0.8":
+ version "5.0.8"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-powershell/-/dict-powershell-5.0.8.tgz#185c454c633e72ebd708328f2cf6dbbc5028ae0a"
+ integrity sha512-Eg64BccQp5oEJ+V/O2G27KaLWmuOL2AWMOs2470adUihOleRfW8j9XwAEGCS+JKSnDb2mksWA72Z6kDqH138IQ==
-"@cspell/dict-public-licenses@^2.0.7":
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-public-licenses/-/dict-public-licenses-2.0.7.tgz#ccd67a91a6bd5ed4b5117c2f34e9361accebfcb7"
- integrity sha512-KlBXuGcN3LE7tQi/GEqKiDewWGGuopiAD0zRK1QilOx5Co8XAvs044gk4MNIQftc8r0nHeUI+irJKLGcR36DIQ==
+"@cspell/dict-public-licenses@^2.0.8":
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.8.tgz#ed8c3b5b22f28129cf3517821740599f05733b68"
+ integrity sha512-Sup+tFS7cDV0fgpoKtUqEZ6+fA/H+XUgBiqQ/Fbs6vUE3WCjJHOIVsP+udHuyMH7iBfJ4UFYOYeORcY4EaKdMg==
-"@cspell/dict-python@^4.2.4":
- version "4.2.4"
- resolved "https://registry.yarnpkg.com/@cspell/dict-python/-/dict-python-4.2.4.tgz#add81749939c6f123dbd0662385153506be951e0"
- integrity sha512-sCtLBqMreb+8zRW2bXvFsfSnRUVU6IFm4mT6Dc4xbz0YajprbaPPh/kOUTw5IJRP8Uh+FFb7Xp2iH03CNWRq/A==
+"@cspell/dict-python@^4.2.6":
+ version "4.2.6"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-python/-/dict-python-4.2.6.tgz#fce9950d59c6707442af04701d4ed7c7be333901"
+ integrity sha512-Hkz399qDGEbfXi9GYa2hDl7GahglI86JmS2F1KP8sfjLXofUgtnknyC5NWc86nzHcP38pZiPqPbTigyDYw5y8A==
dependencies:
"@cspell/dict-data-science" "^2.0.1"
@@ -1396,10 +1402,10 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-r/-/dict-r-2.0.1.tgz#73474fb7cce45deb9094ebf61083fbf5913f440a"
integrity sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==
-"@cspell/dict-ruby@^5.0.2":
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-ruby/-/dict-ruby-5.0.2.tgz#cf1a71380c633dec0857143d3270cb503b10679a"
- integrity sha512-cIh8KTjpldzFzKGgrqUX4bFyav5lC52hXDKo4LbRuMVncs3zg4hcSf4HtURY+f2AfEZzN6ZKzXafQpThq3dl2g==
+"@cspell/dict-ruby@^5.0.3":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-ruby/-/dict-ruby-5.0.3.tgz#614e9a3d4dcd720e750c037b9dfb6001da8b25e0"
+ integrity sha512-V1xzv9hN6u8r6SM4CkYdsxs4ov8gjXXo0Twfx5kWhLXbEVxTXDMt7ohLTqpy2XlF5mutixZdbHMeFiAww8v+Ug==
"@cspell/dict-rust@^4.0.5":
version "4.0.5"
@@ -1411,10 +1417,10 @@
resolved "https://registry.yarnpkg.com/@cspell/dict-scala/-/dict-scala-5.0.3.tgz#85a469b2d139766b6307befc89243928e3d82b39"
integrity sha512-4yGb4AInT99rqprxVNT9TYb1YSpq58Owzq7zi3ZS5T0u899Y4VsxsBiOgHnQ/4W+ygi+sp+oqef8w8nABR2lkg==
-"@cspell/dict-software-terms@^4.0.6":
- version "4.0.6"
- resolved "https://registry.yarnpkg.com/@cspell/dict-software-terms/-/dict-software-terms-4.0.6.tgz#df1efb809a50ae4292f85a90d1481dafcc13b414"
- integrity sha512-UDhUzNSf7GN529a0Ip9hlSoGbpscz0YlUYBEJmZBXi8otpkrbCJqs50T74Ppd+SWqNil04De8urv4af2c6SY5Q==
+"@cspell/dict-software-terms@^4.1.3":
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-software-terms/-/dict-software-terms-4.1.3.tgz#364ff43034900dc508af376f06042de75ed53297"
+ integrity sha512-5Wn5JG4IzCboX5pjISdkipsPKGaz1//iuBZdHl4US5x7mO4jOGXLpjzx6ZoPM4PXUlMEFz9NJRCDepAu8fXVtA==
"@cspell/dict-sql@^2.1.5":
version "2.1.5"
@@ -1431,10 +1437,10 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-swift/-/dict-swift-2.0.1.tgz#06ec86e52e9630c441d3c19605657457e33d7bb6"
integrity sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==
-"@cspell/dict-terraform@^1.0.0":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@cspell%2fdict-terraform/-/dict-terraform-1.0.0.tgz#c7b073bb3a03683f64cc70ccaa55ce9742c46086"
- integrity sha512-Ak+vy4HP/bOgzf06BAMC30+ZvL9mzv21xLM2XtfnBLTDJGdxlk/nK0U6QT8VfFLqJ0ZZSpyOxGsUebWDCTr/zQ==
+"@cspell/dict-terraform@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@cspell/dict-terraform/-/dict-terraform-1.0.1.tgz#81648af2e7f19e8b3188be5e7b1a2d2b6627f58b"
+ integrity sha512-29lmUUnZgPh+ieZ5hunick8hzNIpNRtiJh9vAusNskPCrig3RTW6u7F+GG1a8uyslbzSw+Irjf40PTOan1OJJA==
"@cspell/dict-typescript@^3.1.6":
version "3.1.6"
@@ -1446,27 +1452,27 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-vue/-/dict-vue-3.0.0.tgz#68ccb432ad93fcb0fd665352d075ae9a64ea9250"
integrity sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==
-"@cspell/dynamic-import@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.14.2.tgz#4968d1b6b20806f9bb78b92c628300cad288072f"
- integrity sha512-5MbqtIligU7yPwHWU/5yFCgMvur4i1bRAF1Cy8y2dDtHsa204S/w/SaXs+51EFLp2eNbCiBisCBrwJFT7R1RxA==
+"@cspell/dynamic-import@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.14.3.tgz#12ecbf239eb84051cef566f677ae5e83498ee661"
+ integrity sha512-LlWDTfQO2V3CAwax5PlQnS2prLs0icWfaROaNrIoSe8X6OUerfoxJ9p3Bpx0AxSKv4FtvYQraRV/UNPWRhhHag==
dependencies:
import-meta-resolve "^4.1.0"
-"@cspell/filetypes@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/filetypes/-/filetypes-8.14.2.tgz#e05d48a504efa72d9cebd9fb45b666e116673335"
- integrity sha512-ZevArA0mWeVTTqHicxCPZIAeCibpY3NwWK/x6d1Lgu7RPk/daoGAM546Q2SLChFu+r10tIH7pRG212A6Q9ihPA==
+"@cspell/filetypes@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/filetypes/-/filetypes-8.14.3.tgz#ab41000b6586215013e776585f31fb574d9b9739"
+ integrity sha512-a1BbKi3BcSju9owpa37x6I3sZtwpnzpRslSsV7IUBI8k85nfH+TiFm0toEEj/8jFJKehBWr83kMjZFHQReV13g==
-"@cspell/strong-weak-map@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.14.2.tgz#4fd8fd616690125775c0f7a596a1295b03e9a43d"
- integrity sha512-7sRzJc392CQYNNrtdPEfOHJdRqsqf6nASCtbS5A9hL2UrdWQ4uN7r/D+Y1HpuizwY9eOkZvarcFfsYt5wE0Pug==
+"@cspell/strong-weak-map@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.14.3.tgz#976de6a7cf62d5a4a15c7d99afa7458ba57567c9"
+ integrity sha512-ZC5HiGbvD3vCA1pj7FL5gwyOi3OeXa51TDDRSjMW5A9XOpr57ptKxlSCwFVxNfszPTfMKP19a81rz1jo3GyFMg==
-"@cspell/url@8.14.2":
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.14.2.tgz#8a6d30011596ccefb48a6135225554011c46dc03"
- integrity sha512-YmWW+B/2XQcCynLpiAQF77Bitm5Cynw3/BICZkbdveKjJkUzEmXB+U2qWuwXOyU8xUYuwkP63YM8McnI567rUA==
+"@cspell/url@8.14.3":
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.14.3.tgz#74d497e7f323a214fe582e764e47a3af30acb2ff"
+ integrity sha512-r7fVsgOBu1qpt4UH45mE3TZfW7H+CHzK3INRUjSsrWKaiyE57mD6IIoqYdjCDoP4xaMRrHGC5SBKy+eX3prsBQ==
"@csstools/css-parser-algorithms@^3.0.1":
version "3.0.1"
@@ -2798,80 +2804,80 @@ crypt@0.0.2:
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
-cspell-config-lib@8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.14.2.tgz#cc401080c14dab7b355bda4e90a22b7dfb05ffd6"
- integrity sha512-yHP1BdcH5dbjb8qiZr6+bxEnJ+rxTULQ00wBz3eBPWCghJywEAYYvMWoYuxVtPpndlkKYC1wJAHsyNkweQyepA==
+cspell-config-lib@8.14.3:
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.14.3.tgz#9a52b8b41d3f6bf10279e42272bc6080966f5412"
+ integrity sha512-uQFhEvnMJBpZBoi5U5jcMdykze5Cng28RDq4jzM2bYR2aE0HKZfFS8Hsjf5SLDxxS7TAKhnDh5a0r+6T/G6+qw==
dependencies:
- "@cspell/cspell-types" "8.14.2"
+ "@cspell/cspell-types" "8.14.3"
comment-json "^4.2.5"
- yaml "^2.5.0"
+ yaml "^2.5.1"
-cspell-dictionary@8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.14.2.tgz#0268d437eed78bfcf6eadc3674a3e3104e010d7a"
- integrity sha512-gWuAvf6queGGUvGbfAxxUq55cZ0OevWPbjnCrSB0PpJ4tqdFd8dLcvVrIKzoE2sBXKPw2NDkmoEngs6iGavC0w==
+cspell-dictionary@8.14.3:
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.14.3.tgz#05f177924f9c59aba05e394d2f362daf23e39ab7"
+ integrity sha512-FiTas0KXWXKyTJIRYZF7USp7Cjjq6RmzLKcDKAvJhc0XmbRaoYHW20IRkHVsrfO6bHTmo1fLoJQpvuDCkBiojg==
dependencies:
- "@cspell/cspell-pipe" "8.14.2"
- "@cspell/cspell-types" "8.14.2"
- cspell-trie-lib "8.14.2"
+ "@cspell/cspell-pipe" "8.14.3"
+ "@cspell/cspell-types" "8.14.3"
+ cspell-trie-lib "8.14.3"
fast-equals "^5.0.1"
-cspell-gitignore@8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.14.2.tgz#239995ac11652a9978126ec35b12d663010a90f3"
- integrity sha512-lrO/49NaKBpkR7vFxv4OOY+oHmsG5+gNQejrBBWD9Nv9vvjJtz/G36X/rcN6M6tFcQQMWwa01kf04nxz8Ejuhg==
+cspell-gitignore@8.14.3:
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.14.3.tgz#342f52e62abe2c40513ef66186246e03bb00e73a"
+ integrity sha512-SOPYlaOh2tPSYZ48zGN9TzjaxnO05/AJMpvlvxUf0uASa2BOeogl11KvzcS7ig5MUnB/+s/2YsShcF+YjfptEw==
dependencies:
- "@cspell/url" "8.14.2"
- cspell-glob "8.14.2"
- cspell-io "8.14.2"
+ "@cspell/url" "8.14.3"
+ cspell-glob "8.14.3"
+ cspell-io "8.14.3"
find-up-simple "^1.0.0"
-cspell-glob@8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.14.2.tgz#09f53191e58db113837a088a7a9ea7a181f2deb7"
- integrity sha512-9Q1Kgoo1ev3fKTpp9y5n8M4RLxd8B0f5o4y5FQe4dBU0j/bt+/YDrLZNWDm77JViV606XQ6fimG1FTTq6pT9/g==
- dependencies:
- "@cspell/url" "8.14.2"
- micromatch "^4.0.7"
-
-cspell-grammar@8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.14.2.tgz#a37e4f6ce6aae8eba2ba57822a4cfe0cd7fd8909"
- integrity sha512-eYwceVP80FGYVJenE42ALnvEKOXaXjq4yVbb1Ni1umO/9qamLWNCQ1RP6rRACy5e/cXviAbhrQ5Mtw6n+pyPEQ==
- dependencies:
- "@cspell/cspell-pipe" "8.14.2"
- "@cspell/cspell-types" "8.14.2"
-
-cspell-io@8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.14.2.tgz#501b26c630f6d8e9fc89fce1ad806c10b440723a"
- integrity sha512-uaKpHiY3DAgfdzgKMQml6U8F8o9udMuYxGqYa5FVfN7D5Ap7B2edQzSLTUYwxrFEn4skSfp6XY73+nzJvxzH4Q==
- dependencies:
- "@cspell/cspell-service-bus" "8.14.2"
- "@cspell/url" "8.14.2"
-
-cspell-lib@8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.14.2.tgz#ca404ad026c7150c96426a11faa5c9f761015bbb"
- integrity sha512-d2oiIXHXnADmnhIuFLOdNE63L7OUfzgpLbYaqAWbkImCUDkevfGrOgnX8TJ03fUgZID4nvQ+3kgu/n2j4eLZjQ==
- dependencies:
- "@cspell/cspell-bundled-dicts" "8.14.2"
- "@cspell/cspell-pipe" "8.14.2"
- "@cspell/cspell-resolver" "8.14.2"
- "@cspell/cspell-types" "8.14.2"
- "@cspell/dynamic-import" "8.14.2"
- "@cspell/filetypes" "8.14.2"
- "@cspell/strong-weak-map" "8.14.2"
- "@cspell/url" "8.14.2"
+cspell-glob@8.14.3:
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.14.3.tgz#5e70f11ddc93ce701d8fa5cd42131777537593ba"
+ integrity sha512-d12Dn/i6BRKQrvq0ikcBPBsjPdyemu2Ggw1WgWvxAlaGGZsoyC6Hn5ElQt6tQt2CruwUfPPXVm2+UMyHlRMt4g==
+ dependencies:
+ "@cspell/url" "8.14.3"
+ micromatch "^4.0.8"
+
+cspell-grammar@8.14.3:
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.14.3.tgz#973f5ec162b2dad2acc17af7dd19038aff9ba972"
+ integrity sha512-clb5HCVJn6wW/v7dC3CGuo1YmmXIVpvpz7BGwt2Rvybk/8o6CD3i4aF8TqnHc0FIWP0iHCwMhqnCyiOJtYI9Mg==
+ dependencies:
+ "@cspell/cspell-pipe" "8.14.3"
+ "@cspell/cspell-types" "8.14.3"
+
+cspell-io@8.14.3:
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.14.3.tgz#72a6787c6be980bd8fc1c55aee9c607e46f61ca2"
+ integrity sha512-8SWe553kpSsQ039SiFQ+G/87KoJn51W1yc42aGUwkuagglspEiUVj3bTlD3eVswZAT3KbG26Mti49L37Lecj/g==
+ dependencies:
+ "@cspell/cspell-service-bus" "8.14.3"
+ "@cspell/url" "8.14.3"
+
+cspell-lib@8.14.3:
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.14.3.tgz#16ff497da05c4b05f743ddff40481deea9170f45"
+ integrity sha512-hcpxyX+xZ1LbcuvT1H+zCjfmW04on6nsdkKTT0bRdsgxyw6O08hR2OVqQ9+oYiXdp6QccjOl6UPOS6dEZajOmw==
+ dependencies:
+ "@cspell/cspell-bundled-dicts" "8.14.3"
+ "@cspell/cspell-pipe" "8.14.3"
+ "@cspell/cspell-resolver" "8.14.3"
+ "@cspell/cspell-types" "8.14.3"
+ "@cspell/dynamic-import" "8.14.3"
+ "@cspell/filetypes" "8.14.3"
+ "@cspell/strong-weak-map" "8.14.3"
+ "@cspell/url" "8.14.3"
clear-module "^4.1.2"
comment-json "^4.2.5"
- cspell-config-lib "8.14.2"
- cspell-dictionary "8.14.2"
- cspell-glob "8.14.2"
- cspell-grammar "8.14.2"
- cspell-io "8.14.2"
- cspell-trie-lib "8.14.2"
+ cspell-config-lib "8.14.3"
+ cspell-dictionary "8.14.3"
+ cspell-glob "8.14.3"
+ cspell-grammar "8.14.3"
+ cspell-io "8.14.3"
+ cspell-trie-lib "8.14.3"
env-paths "^3.0.0"
fast-equals "^5.0.1"
gensequence "^7.0.0"
@@ -2881,36 +2887,36 @@ cspell-lib@8.14.2:
vscode-uri "^3.0.8"
xdg-basedir "^5.1.0"
-cspell-trie-lib@8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.14.2.tgz#3748544d4f6ca85c3d72a1f2eb72b930c898865b"
- integrity sha512-rZMbaEBGoyy4/zxKECaMyVyGLbuUxYmZ5jlEgiA3xPtEdWwJ4iWRTo5G6dWbQsXoxPYdAXXZ0/q0GQ2y6Jt0kw==
+cspell-trie-lib@8.14.3:
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.14.3.tgz#ac7436d934a3162df04ab0e09fb13d07ae26d8c5"
+ integrity sha512-90Rwt8Kzcv2HB2uuwUqMlCQVa7tpsqHtSFiGox3DTDUZWTikMiOwUigRvO17FsxxQL+qW4fIH4PUi4SGwins9Q==
dependencies:
- "@cspell/cspell-pipe" "8.14.2"
- "@cspell/cspell-types" "8.14.2"
+ "@cspell/cspell-pipe" "8.14.3"
+ "@cspell/cspell-types" "8.14.3"
gensequence "^7.0.0"
cspell@^8.14.2:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.14.2.tgz#d1434bc66831113121a91427c39dc22802dc4c31"
- integrity sha512-ii/W7fwO4chNQVYl1C/8k7RW8EXzLb69rvg08p8mSJx8B2UasVJ9tuJpTH2Spo1jX6N3H0dKPWUbd1fAmdAhPg==
- dependencies:
- "@cspell/cspell-json-reporter" "8.14.2"
- "@cspell/cspell-pipe" "8.14.2"
- "@cspell/cspell-types" "8.14.2"
- "@cspell/dynamic-import" "8.14.2"
- "@cspell/url" "8.14.2"
+ version "8.14.3"
+ resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.14.3.tgz#60bd93d3514a172f2160e2369052c14775333d31"
+ integrity sha512-GTok3s0J6hb8lXPgOkFcJ6+i91YS99AD5t60htNrq7Ae89BZByG20XPZc/6zbRN9eEQvtCx4OAIXnnfxP5QENw==
+ dependencies:
+ "@cspell/cspell-json-reporter" "8.14.3"
+ "@cspell/cspell-pipe" "8.14.3"
+ "@cspell/cspell-types" "8.14.3"
+ "@cspell/dynamic-import" "8.14.3"
+ "@cspell/url" "8.14.3"
chalk "^5.3.0"
chalk-template "^1.1.0"
commander "^12.1.0"
- cspell-dictionary "8.14.2"
- cspell-gitignore "8.14.2"
- cspell-glob "8.14.2"
- cspell-io "8.14.2"
- cspell-lib "8.14.2"
+ cspell-dictionary "8.14.3"
+ cspell-gitignore "8.14.3"
+ cspell-glob "8.14.3"
+ cspell-io "8.14.3"
+ cspell-lib "8.14.3"
fast-glob "^3.3.2"
fast-json-stable-stringify "^2.1.0"
- file-entry-cache "^9.0.0"
+ file-entry-cache "^9.1.0"
get-stdin "^9.0.0"
semver "^7.6.3"
strip-ansi "^7.1.0"
@@ -3529,10 +3535,10 @@ file-entry-cache@^6.0.1:
dependencies:
flat-cache "^3.0.4"
-file-entry-cache@^9.0.0:
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-9.0.0.tgz#4478e7ceaa5191fa9676a2daa7030211c31b1e7e"
- integrity sha512-6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==
+file-entry-cache@^9.0.0, file-entry-cache@^9.1.0:
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-9.1.0.tgz#2e66ad98ce93f49aed1b178c57b0b5741591e075"
+ integrity sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==
dependencies:
flat-cache "^5.0.0"
@@ -4640,7 +4646,7 @@ merge2@^1.2.3, merge2@^1.3.0, merge2@^1.4.1:
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
-micromatch@^4.0.4, micromatch@^4.0.7, micromatch@^4.0.8:
+micromatch@^4.0.4, micromatch@^4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
@@ -6219,10 +6225,10 @@ yallist@^3.0.2:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
integrity sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=
-yaml@^2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.0.tgz#c6165a721cf8000e91c36490a41d7be25176cf5d"
- integrity sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==
+yaml@^2.5.1:
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.1.tgz#c9772aacf62cb7494a95b0c4f1fb065b563db130"
+ integrity sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==
yargs@^3.29.0:
version "3.32.0"
From 4df9d001a398669e0e3f223e840d4dfa31493935 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 18 Sep 2024 21:43:18 +0000
Subject: [PATCH 62/67] Bump sass from 1.78.0 to 1.79.1
Bumps [sass](https://github.com/sass/dart-sass) from 1.78.0 to 1.79.1.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.78.0...1.79.1)
---
updated-dependencies:
- dependency-name: sass
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 29 ++++++++++++++++++-----------
1 file changed, 18 insertions(+), 11 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 60f0dd43f..450eae89f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2515,7 +2515,7 @@ check-more-types@^2.24.0:
resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600"
integrity sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=
-"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.2:
+chokidar@^3.5.2:
version "3.6.0"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
@@ -2530,6 +2530,13 @@ check-more-types@^2.24.0:
optionalDependencies:
fsevents "~2.3.2"
+chokidar@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.0.tgz#4d603963e5dd762dc5c7bb1cb5664e53a3002225"
+ integrity sha512-mxIojEAQcuEvT/lyXq+jf/3cO/KoA6z4CeNDGGevTybECPOMFCnQy3OPahluUkbqgPNGw5Bi78UC7Po6Lhy+NA==
+ dependencies:
+ readdirp "^4.0.1"
+
ci-info@^3.2.0:
version "3.9.0"
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4"
@@ -5143,6 +5150,11 @@ read-pkg@^3.0.0:
normalize-package-data "^2.3.2"
path-type "^3.0.0"
+readdirp@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.0.1.tgz#b2fe35f8dca63183cd3b86883ecc8f720ea96ae6"
+ integrity sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==
+
readdirp@~3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
@@ -5372,11 +5384,11 @@ safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=
sass@^1.77.8:
- version "1.78.0"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.78.0.tgz#cef369b2f9dc21ea1d2cf22c979f52365da60841"
- integrity sha512-AaIqGSrjo5lA2Yg7RvFZrlXDBCp3nV4XP73GrLGvdRWWwk+8H3l0SDvq/5bA4eF+0RFPLuWUk3E+P1U/YqnpsQ==
+ version "1.79.1"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.79.1.tgz#0c572e8f09cc4095c27077567f78dbb9b3dceeb2"
+ integrity sha512-+mA7svoNKeL0DiJqZGeR/ZGUu8he4I8o3jyUcOFyo4eBJrwNgIMmAEwCMo/N2Y3wdjOBcRzoNxZIOtrtMX8EXg==
dependencies:
- chokidar ">=3.0.0 <4.0.0"
+ chokidar "^4.0.0"
immutable "^4.0.0"
source-map-js ">=0.6.2 <2.0.0"
@@ -5506,12 +5518,7 @@ smob@^1.0.0:
resolved "https://registry.yarnpkg.com/smob/-/smob-1.5.0.tgz#85d79a1403abf128d24d3ebc1cdc5e1a9548d3ab"
integrity sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==
-"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
- integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
-
-source-map-js@^1.2.1:
+"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.2.0, source-map-js@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
From 59af396edcd4ceb81cac4d118ddeaba8bc53705e Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 18 Sep 2024 21:43:30 +0000
Subject: [PATCH 63/67] Bump @vitejs/plugin-vue from 5.1.3 to 5.1.4
Bumps [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) from 5.1.3 to 5.1.4.
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@5.1.4/packages/plugin-vue)
---
updated-dependencies:
- dependency-name: "@vitejs/plugin-vue"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 60f0dd43f..29990b8b7 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2016,9 +2016,9 @@
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
"@vitejs/plugin-vue@^5.1.2":
- version "5.1.3"
- resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693"
- integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==
+ version "5.1.4"
+ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.4.tgz#72b8b705cfce36b00b59af196195146e356500c4"
+ integrity sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==
"@vue/compiler-core@3.5.6":
version "3.5.6"
From b828ca216a0c583704802d1dae1f0c2e38d1c739 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 18 Sep 2024 21:43:44 +0000
Subject: [PATCH 64/67] Bump cspell from 8.14.3 to 8.14.4
Bumps [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) from 8.14.3 to 8.14.4.
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.14.4/packages/cspell)
---
updated-dependencies:
- dependency-name: cspell
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 240 +++++++++++++++++++++++++++---------------------------
1 file changed, 120 insertions(+), 120 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 60f0dd43f..211027919 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1092,10 +1092,10 @@
resolved "https://registry.yarnpkg.com/@colors%2fcolors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
-"@cspell/cspell-bundled-dicts@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.14.3.tgz#c91e8be7c1890b963608bb2887ffb150795ed94f"
- integrity sha512-O0QA2OD0IDatIxNinr5woWJ8uC3/fbMaOdu3R+142wMX3f2hB08Wfvk+anFgFVTgo90JQnmKEvlCZD1Q8QlWig==
+"@cspell/cspell-bundled-dicts@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.14.4.tgz#61e116fb3c505d4ebf2f842f24ea1e39bc47d469"
+ integrity sha512-JHZOpCJzN6fPBapBOvoeMxZbr0ZA11ZAkwcqM4w0lKoacbi6TwK8GIYf66hHvwLmMeav75TNXWE6aPTvBLMMqA==
dependencies:
"@cspell/dict-ada" "^4.0.2"
"@cspell/dict-aws" "^4.0.4"
@@ -1151,34 +1151,34 @@
"@cspell/dict-typescript" "^3.1.6"
"@cspell/dict-vue" "^3.0.0"
-"@cspell/cspell-json-reporter@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.14.3.tgz#8272dc695a766d602b8a9fbba0c4cc43ec9e2c2c"
- integrity sha512-xJbIhSVL1LrwtIpFYvfbXMXv0GUqp2mFkTdG652zb4ZCjQUitmAN1eOhpUt2WHqyCdsMNjMcoJ05PNAN1LrLBQ==
+"@cspell/cspell-json-reporter@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.14.4.tgz#4646c1963b9b02fea3faae3c5ee04fb6dda8548e"
+ integrity sha512-gJ6tQbGCNLyHS2iIimMg77as5MMAFv3sxU7W6tjLlZp8htiNZS7fS976g24WbT/hscsTT9Dd0sNHkpo8K3nvVw==
dependencies:
- "@cspell/cspell-types" "8.14.3"
+ "@cspell/cspell-types" "8.14.4"
-"@cspell/cspell-pipe@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.14.3.tgz#34b22050651c1bdfbf83085159701b7d0e32a0a2"
- integrity sha512-vc4gcsQ/qLHcHHz1EmTLe0x1aZYUzkQAyIOTLRWFlsWrdztXQ3zSEaPB2JzgLNCaqJrYJPs5Wh/Uo+6w9ZaIeA==
+"@cspell/cspell-pipe@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-pipe/-/cspell-pipe-8.14.4.tgz#5e81509d7c2763ac0e8c09b7989fe95e36fe0a05"
+ integrity sha512-CLLdouqfrQ4rqdQdPu0Oo+HHCU/oLYoEsK1nNPb28cZTFxnn0cuSPKB6AMPBJmMwdfJ6fMD0BCKNbEe1UNLHcw==
-"@cspell/cspell-resolver@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.14.3.tgz#9dcfc454934705cb07bc57d4c61f5c190428803b"
- integrity sha512-SOG4LQS4rt93FnCyCsDfCxOuq+uTzco6zpncwMU1GgH8bSEEeiDphGsgmdgK7XxKNlr59o8JFeD+45AkJWHm5w==
+"@cspell/cspell-resolver@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-resolver/-/cspell-resolver-8.14.4.tgz#839258970996c8262b290f6e8fbbac27d43fb0b8"
+ integrity sha512-s3uZyymJ04yn8+zlTp7Pt1WRSlAel6XVo+iZRxls3LSvIP819KK64DoyjCD2Uon0Vg9P/K7aAPt8GcxDcnJtgA==
dependencies:
global-directory "^4.0.1"
-"@cspell/cspell-service-bus@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.14.3.tgz#a2f040ef0db46b7e21108aedf82d9ef41a977376"
- integrity sha512-bqb+6KlFMVEprBlga1olLmZFWmsT267hmLZHhQoNKTlZJlzyQjmAd4XYUJyH9oEYOOt4t5PgqtZJSxudmq2SIw==
+"@cspell/cspell-service-bus@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.14.4.tgz#3c081578c7a369e4a737311e8ee31e709a48abb8"
+ integrity sha512-i3UG+ep63akNsDXZrtGgICNF3MLBHtvKe/VOIH6+L+NYaAaVHqqQvOY9MdUwt1HXh8ElzfwfoRp36wc5aAvt6g==
-"@cspell/cspell-types@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.14.3.tgz#c43452cb9cac1a47f02005c24f6600acfe863793"
- integrity sha512-t8cvWSLVmgoAnmwMKXf0W1k3aWPPksTIqcNFMVF2f3m4dZh9HBh+M+xK9mXXScALmQev+psbvbiTjRlKD52ZnQ==
+"@cspell/cspell-types@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/cspell-types/-/cspell-types-8.14.4.tgz#93ceff0bcefe75c259ae3475961f580f3de36e79"
+ integrity sha512-VXwikqdHgjOVperVVCn2DOe8W3rPIswwZtMHfRYnagpzZo/TOntIjkXPJSfTtl/cFyx5DnCBsDH8ytKGlMeHkw==
"@cspell/dict-ada@^4.0.2":
version "4.0.2"
@@ -1452,27 +1452,27 @@
resolved "https://registry.yarnpkg.com/@cspell%2fdict-vue/-/dict-vue-3.0.0.tgz#68ccb432ad93fcb0fd665352d075ae9a64ea9250"
integrity sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==
-"@cspell/dynamic-import@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.14.3.tgz#12ecbf239eb84051cef566f677ae5e83498ee661"
- integrity sha512-LlWDTfQO2V3CAwax5PlQnS2prLs0icWfaROaNrIoSe8X6OUerfoxJ9p3Bpx0AxSKv4FtvYQraRV/UNPWRhhHag==
+"@cspell/dynamic-import@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/dynamic-import/-/dynamic-import-8.14.4.tgz#c3a8a9f5a8c6d6f8ccd2612a367bcc870dd07244"
+ integrity sha512-GjKsBJvPXp4dYRqsMn7n1zpnKbnpfJnlKLOVeoFBh8fi4n06G50xYr+G25CWX1WT3WFaALAavvVICEUPrVsuqg==
dependencies:
import-meta-resolve "^4.1.0"
-"@cspell/filetypes@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/filetypes/-/filetypes-8.14.3.tgz#ab41000b6586215013e776585f31fb574d9b9739"
- integrity sha512-a1BbKi3BcSju9owpa37x6I3sZtwpnzpRslSsV7IUBI8k85nfH+TiFm0toEEj/8jFJKehBWr83kMjZFHQReV13g==
+"@cspell/filetypes@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/filetypes/-/filetypes-8.14.4.tgz#2f8b705d5b7df68817702899f9a94282ac4eef40"
+ integrity sha512-qd68dD7xTA4Mnf/wjIKYz2SkiTBshIM+yszOUtLa06YJm0aocoNQ25FHXyYEQYm9NQXCYnRWWA02sFMGs8Sv/w==
-"@cspell/strong-weak-map@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.14.3.tgz#976de6a7cf62d5a4a15c7d99afa7458ba57567c9"
- integrity sha512-ZC5HiGbvD3vCA1pj7FL5gwyOi3OeXa51TDDRSjMW5A9XOpr57ptKxlSCwFVxNfszPTfMKP19a81rz1jo3GyFMg==
+"@cspell/strong-weak-map@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/strong-weak-map/-/strong-weak-map-8.14.4.tgz#31a34bc7963d2c18d6cda391b2ddda58b9cb3061"
+ integrity sha512-Uyfck64TfVU24wAP3BLGQ5EsAfzIZiLfN90NhttpEM7GlOBmbGrEJd4hNOwfpYsE/TT80eGWQVPRTLr5SDbXFA==
-"@cspell/url@8.14.3":
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.14.3.tgz#74d497e7f323a214fe582e764e47a3af30acb2ff"
- integrity sha512-r7fVsgOBu1qpt4UH45mE3TZfW7H+CHzK3INRUjSsrWKaiyE57mD6IIoqYdjCDoP4xaMRrHGC5SBKy+eX3prsBQ==
+"@cspell/url@8.14.4":
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/@cspell/url/-/url-8.14.4.tgz#46c17d7da0f04fe032ece932ed8137852062341c"
+ integrity sha512-htHhNF8WrM/NfaLSWuTYw0NqVgFRVHYSyHlRT3i/Yv5xvErld8Gw7C6ldm+0TLjoGlUe6X1VV72JSir7+yLp/Q==
"@csstools/css-parser-algorithms@^3.0.1":
version "3.0.1"
@@ -2804,80 +2804,80 @@ crypt@0.0.2:
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
-cspell-config-lib@8.14.3:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.14.3.tgz#9a52b8b41d3f6bf10279e42272bc6080966f5412"
- integrity sha512-uQFhEvnMJBpZBoi5U5jcMdykze5Cng28RDq4jzM2bYR2aE0HKZfFS8Hsjf5SLDxxS7TAKhnDh5a0r+6T/G6+qw==
+cspell-config-lib@8.14.4:
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell-config-lib/-/cspell-config-lib-8.14.4.tgz#4642d22c4db22dd1b8923005ff369a24ff541f62"
+ integrity sha512-cnUeJfniTiebqCaQmIUnbSrPrTH7xzKRQjJDHAEV0WYnOG2MhRXI13OzytdFdhkVBdStmgTzTCJKE7x+kmU2NA==
dependencies:
- "@cspell/cspell-types" "8.14.3"
+ "@cspell/cspell-types" "8.14.4"
comment-json "^4.2.5"
yaml "^2.5.1"
-cspell-dictionary@8.14.3:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.14.3.tgz#05f177924f9c59aba05e394d2f362daf23e39ab7"
- integrity sha512-FiTas0KXWXKyTJIRYZF7USp7Cjjq6RmzLKcDKAvJhc0XmbRaoYHW20IRkHVsrfO6bHTmo1fLoJQpvuDCkBiojg==
+cspell-dictionary@8.14.4:
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell-dictionary/-/cspell-dictionary-8.14.4.tgz#d6bfaa972785b184499d7f81791c913440229de4"
+ integrity sha512-pZvQHxpAW5fZAnt3ZKKy3s7M+3CX2t8tCS3uJrpEHIynlCawpG0fPF78rVE5o+g0dON36Lguc/BUuSN4IWKLmQ==
dependencies:
- "@cspell/cspell-pipe" "8.14.3"
- "@cspell/cspell-types" "8.14.3"
- cspell-trie-lib "8.14.3"
+ "@cspell/cspell-pipe" "8.14.4"
+ "@cspell/cspell-types" "8.14.4"
+ cspell-trie-lib "8.14.4"
fast-equals "^5.0.1"
-cspell-gitignore@8.14.3:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.14.3.tgz#342f52e62abe2c40513ef66186246e03bb00e73a"
- integrity sha512-SOPYlaOh2tPSYZ48zGN9TzjaxnO05/AJMpvlvxUf0uASa2BOeogl11KvzcS7ig5MUnB/+s/2YsShcF+YjfptEw==
+cspell-gitignore@8.14.4:
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell-gitignore/-/cspell-gitignore-8.14.4.tgz#bb53748ed93af980ed7c5772577ccdedada85293"
+ integrity sha512-RwfQEW5hD7CpYwS7m3b0ONG0nTLKP6bL2tvMdl7qtaYkL7ztGdsBTtLD1pmwqUsCbiN5RuaOxhYOYeRcpFRIkQ==
dependencies:
- "@cspell/url" "8.14.3"
- cspell-glob "8.14.3"
- cspell-io "8.14.3"
+ "@cspell/url" "8.14.4"
+ cspell-glob "8.14.4"
+ cspell-io "8.14.4"
find-up-simple "^1.0.0"
-cspell-glob@8.14.3:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.14.3.tgz#5e70f11ddc93ce701d8fa5cd42131777537593ba"
- integrity sha512-d12Dn/i6BRKQrvq0ikcBPBsjPdyemu2Ggw1WgWvxAlaGGZsoyC6Hn5ElQt6tQt2CruwUfPPXVm2+UMyHlRMt4g==
+cspell-glob@8.14.4:
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell-glob/-/cspell-glob-8.14.4.tgz#b5abbaa291f3d17d5e52a33d26193a29761e30c8"
+ integrity sha512-C/xTS5nujMRMuguibq92qMVP767mtxrur7DcVolCvpzcivm1RB5NtIN0OctQxTyMbnmKeQv1t4epRKQ9A8vWRg==
dependencies:
- "@cspell/url" "8.14.3"
+ "@cspell/url" "8.14.4"
micromatch "^4.0.8"
-cspell-grammar@8.14.3:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.14.3.tgz#973f5ec162b2dad2acc17af7dd19038aff9ba972"
- integrity sha512-clb5HCVJn6wW/v7dC3CGuo1YmmXIVpvpz7BGwt2Rvybk/8o6CD3i4aF8TqnHc0FIWP0iHCwMhqnCyiOJtYI9Mg==
- dependencies:
- "@cspell/cspell-pipe" "8.14.3"
- "@cspell/cspell-types" "8.14.3"
-
-cspell-io@8.14.3:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.14.3.tgz#72a6787c6be980bd8fc1c55aee9c607e46f61ca2"
- integrity sha512-8SWe553kpSsQ039SiFQ+G/87KoJn51W1yc42aGUwkuagglspEiUVj3bTlD3eVswZAT3KbG26Mti49L37Lecj/g==
- dependencies:
- "@cspell/cspell-service-bus" "8.14.3"
- "@cspell/url" "8.14.3"
-
-cspell-lib@8.14.3:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.14.3.tgz#16ff497da05c4b05f743ddff40481deea9170f45"
- integrity sha512-hcpxyX+xZ1LbcuvT1H+zCjfmW04on6nsdkKTT0bRdsgxyw6O08hR2OVqQ9+oYiXdp6QccjOl6UPOS6dEZajOmw==
- dependencies:
- "@cspell/cspell-bundled-dicts" "8.14.3"
- "@cspell/cspell-pipe" "8.14.3"
- "@cspell/cspell-resolver" "8.14.3"
- "@cspell/cspell-types" "8.14.3"
- "@cspell/dynamic-import" "8.14.3"
- "@cspell/filetypes" "8.14.3"
- "@cspell/strong-weak-map" "8.14.3"
- "@cspell/url" "8.14.3"
+cspell-grammar@8.14.4:
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell-grammar/-/cspell-grammar-8.14.4.tgz#a047c9d365127f9e7688eebb649b14a8a7b0ce9e"
+ integrity sha512-yaSKAAJDiamsw3FChbw4HXb2RvTQrDsLelh1+T4MavarOIcAxXrqAJ8ysqm++g+S/ooJz2YO8YWIyzJKxcMf8g==
+ dependencies:
+ "@cspell/cspell-pipe" "8.14.4"
+ "@cspell/cspell-types" "8.14.4"
+
+cspell-io@8.14.4:
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell-io/-/cspell-io-8.14.4.tgz#fa80333f473fd04973b850c25116b6392f6c88a3"
+ integrity sha512-o6OTWRyx/Az+PFhr1B0wMAwqG070hFC9g73Fkxd8+rHX0rfRS69QZH7LgSmZytqbZIMxCTDGdsLl33MFGWCbZQ==
+ dependencies:
+ "@cspell/cspell-service-bus" "8.14.4"
+ "@cspell/url" "8.14.4"
+
+cspell-lib@8.14.4:
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell-lib/-/cspell-lib-8.14.4.tgz#f59f3141c3b9b44b46defc927365e484a1f7d1cc"
+ integrity sha512-qdkUkKtm+nmgpA4jQbmQTuepDfjHBDWvs3zDuEwVIVFq/h8gnXrRr75gJ3RYdTy+vOOqHPoLLqgxyqkUUrUGXA==
+ dependencies:
+ "@cspell/cspell-bundled-dicts" "8.14.4"
+ "@cspell/cspell-pipe" "8.14.4"
+ "@cspell/cspell-resolver" "8.14.4"
+ "@cspell/cspell-types" "8.14.4"
+ "@cspell/dynamic-import" "8.14.4"
+ "@cspell/filetypes" "8.14.4"
+ "@cspell/strong-weak-map" "8.14.4"
+ "@cspell/url" "8.14.4"
clear-module "^4.1.2"
comment-json "^4.2.5"
- cspell-config-lib "8.14.3"
- cspell-dictionary "8.14.3"
- cspell-glob "8.14.3"
- cspell-grammar "8.14.3"
- cspell-io "8.14.3"
- cspell-trie-lib "8.14.3"
+ cspell-config-lib "8.14.4"
+ cspell-dictionary "8.14.4"
+ cspell-glob "8.14.4"
+ cspell-grammar "8.14.4"
+ cspell-io "8.14.4"
+ cspell-trie-lib "8.14.4"
env-paths "^3.0.0"
fast-equals "^5.0.1"
gensequence "^7.0.0"
@@ -2887,33 +2887,33 @@ cspell-lib@8.14.3:
vscode-uri "^3.0.8"
xdg-basedir "^5.1.0"
-cspell-trie-lib@8.14.3:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.14.3.tgz#ac7436d934a3162df04ab0e09fb13d07ae26d8c5"
- integrity sha512-90Rwt8Kzcv2HB2uuwUqMlCQVa7tpsqHtSFiGox3DTDUZWTikMiOwUigRvO17FsxxQL+qW4fIH4PUi4SGwins9Q==
+cspell-trie-lib@8.14.4:
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell-trie-lib/-/cspell-trie-lib-8.14.4.tgz#1cc1d1110edc0d208a027b1bdc3cbec1a15ea7f8"
+ integrity sha512-zu8EJ33CH+FA5lwTRGqS//Q6phO0qtgEmODMR1KPlD7WlrfTFMb3bWFsLo/tiv5hjpsn7CM6dYDAAgBOSkoyhQ==
dependencies:
- "@cspell/cspell-pipe" "8.14.3"
- "@cspell/cspell-types" "8.14.3"
+ "@cspell/cspell-pipe" "8.14.4"
+ "@cspell/cspell-types" "8.14.4"
gensequence "^7.0.0"
cspell@^8.14.2:
- version "8.14.3"
- resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.14.3.tgz#60bd93d3514a172f2160e2369052c14775333d31"
- integrity sha512-GTok3s0J6hb8lXPgOkFcJ6+i91YS99AD5t60htNrq7Ae89BZByG20XPZc/6zbRN9eEQvtCx4OAIXnnfxP5QENw==
- dependencies:
- "@cspell/cspell-json-reporter" "8.14.3"
- "@cspell/cspell-pipe" "8.14.3"
- "@cspell/cspell-types" "8.14.3"
- "@cspell/dynamic-import" "8.14.3"
- "@cspell/url" "8.14.3"
+ version "8.14.4"
+ resolved "https://registry.yarnpkg.com/cspell/-/cspell-8.14.4.tgz#a160fefcaf7158b8fa435245936b4f0426dc8736"
+ integrity sha512-R5Awb3i/RKaVVcZzFt8dkN3M6VnifIEDYBcbzbmYjZ/Eq+ASF+QTmI0E9WPhMEcFM1nd7YOyXnETo560yRdoKw==
+ dependencies:
+ "@cspell/cspell-json-reporter" "8.14.4"
+ "@cspell/cspell-pipe" "8.14.4"
+ "@cspell/cspell-types" "8.14.4"
+ "@cspell/dynamic-import" "8.14.4"
+ "@cspell/url" "8.14.4"
chalk "^5.3.0"
chalk-template "^1.1.0"
commander "^12.1.0"
- cspell-dictionary "8.14.3"
- cspell-gitignore "8.14.3"
- cspell-glob "8.14.3"
- cspell-io "8.14.3"
- cspell-lib "8.14.3"
+ cspell-dictionary "8.14.4"
+ cspell-gitignore "8.14.4"
+ cspell-glob "8.14.4"
+ cspell-io "8.14.4"
+ cspell-lib "8.14.4"
fast-glob "^3.3.2"
fast-json-stable-stringify "^2.1.0"
file-entry-cache "^9.1.0"
From e2f21c129ad2b4745a8e310db101c0430b79fffa Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 19 Sep 2024 21:12:31 +0000
Subject: [PATCH 65/67] Bump rollup from 4.21.3 to 4.22.0
Bumps [rollup](https://github.com/rollup/rollup) from 4.21.3 to 4.22.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.21.3...v4.22.0)
---
updated-dependencies:
- dependency-name: rollup
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 196 +++++++++++++++++++++++++++---------------------------
1 file changed, 98 insertions(+), 98 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 60f0dd43f..fa53bd62e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1876,85 +1876,85 @@
estree-walker "^2.0.2"
picomatch "^2.3.1"
-"@rollup/rollup-android-arm-eabi@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.3.tgz#155c7d82c1b36c3ad84d9adf9b3cd520cba81a0f"
- integrity sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg==
-
-"@rollup/rollup-android-arm64@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.3.tgz#b94b6fa002bd94a9cbd8f9e47e23b25e5bd113ba"
- integrity sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g==
-
-"@rollup/rollup-darwin-arm64@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.3.tgz#0934126cf9cbeadfe0eb7471ab5d1517e8cd8dcc"
- integrity sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ==
-
-"@rollup/rollup-darwin-x64@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.3.tgz#0ce8e1e0f349778938c7c90e4bdc730640e0a13e"
- integrity sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.3.tgz#5669d34775ad5d71e4f29ade99d0ff4df523afb6"
- integrity sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g==
-
-"@rollup/rollup-linux-arm-musleabihf@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.3.tgz#f6d1a0e1da4061370cb2f4244fbdd727c806dd88"
- integrity sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA==
-
-"@rollup/rollup-linux-arm64-gnu@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.3.tgz#ed96a05e99743dee4d23cc4913fc6e01a0089c88"
- integrity sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw==
-
-"@rollup/rollup-linux-arm64-musl@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.3.tgz#057ea26eaa7e537a06ded617d23d57eab3cecb58"
- integrity sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.3.tgz#6e6e1f9404c9bf3fbd7d51cd11cd288a9a2843aa"
- integrity sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw==
-
-"@rollup/rollup-linux-riscv64-gnu@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.3.tgz#eef1536a53f6e6658a2a778130e6b1a4a41cb439"
- integrity sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ==
-
-"@rollup/rollup-linux-s390x-gnu@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.3.tgz#2b28fb89ca084efaf8086f435025d96b4a966957"
- integrity sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg==
-
-"@rollup/rollup-linux-x64-gnu@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.3.tgz#5226cde6c6b495b04a3392c1d2c572844e42f06b"
- integrity sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g==
-
-"@rollup/rollup-linux-x64-musl@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.3.tgz#2c2412982e6c2a00a2ecac6d548ebb02f0aa6ca4"
- integrity sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg==
-
-"@rollup/rollup-win32-arm64-msvc@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.3.tgz#fbb6ef5379199e2ec0103ef32877b0985c773a55"
- integrity sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q==
-
-"@rollup/rollup-win32-ia32-msvc@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.3.tgz#d50e2082e147e24d87fe34abbf6246525ec3845a"
- integrity sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA==
-
-"@rollup/rollup-win32-x64-msvc@4.21.3":
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.3.tgz#4115233aa1bd5a2060214f96d8511f6247093212"
- integrity sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA==
+"@rollup/rollup-android-arm-eabi@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.0.tgz#e8c16c336f060b4cb592f62eb4f0e543d79d51fe"
+ integrity sha512-/IZQvg6ZR0tAkEi4tdXOraQoWeJy9gbQ/cx4I7k9dJaCk9qrXEcdouxRVz5kZXt5C2bQ9pILoAA+KB4C/d3pfw==
+
+"@rollup/rollup-android-arm64@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.0.tgz#7a44160a14017fa744912d7037c7d81d6f8a46e7"
+ integrity sha512-ETHi4bxrYnvOtXeM7d4V4kZWixib2jddFacJjsOjwbgYSRsyXYtZHC4ht134OsslPIcnkqT+TKV4eU8rNBKyyQ==
+
+"@rollup/rollup-darwin-arm64@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.0.tgz#6122dc37d4a09521d8abe18925956d3b46cfbac9"
+ integrity sha512-ZWgARzhSKE+gVUX7QWaECoRQsPwaD8ZR0Oxb3aUpzdErTvlEadfQpORPXkKSdKbFci9v8MJfkTtoEHnnW9Ulng==
+
+"@rollup/rollup-darwin-x64@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.0.tgz#453f345899cbf544aa0d6f5808d24d2e42f605b7"
+ integrity sha512-h0ZAtOfHyio8Az6cwIGS+nHUfRMWBDO5jXB8PQCARVF6Na/G6XS2SFxDl8Oem+S5ZsHQgtsI7RT4JQnI1qrlaw==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.0.tgz#3a32fa4e80a62a6d733014838b1123fe76b060fe"
+ integrity sha512-9pxQJSPwFsVi0ttOmqLY4JJ9pg9t1gKhK0JDbV1yUEETSx55fdyCjt39eBQ54OQCzAF0nVGO6LfEH1KnCPvelA==
+
+"@rollup/rollup-linux-arm-musleabihf@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.0.tgz#55d3953c54419e93efe124882a3103c8a2f65641"
+ integrity sha512-YJ5Ku5BmNJZb58A4qSEo3JlIG4d3G2lWyBi13ABlXzO41SsdnUKi3HQHe83VpwBVG4jHFTW65jOQb8qyoR+qzg==
+
+"@rollup/rollup-linux-arm64-gnu@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.0.tgz#cd626963b9962baf8e09d792e67b87269a5bcfff"
+ integrity sha512-U4G4u7f+QCqHlVg1Nlx+qapZy+QoG+NV6ux+upo/T7arNGwKvKP2kmGM4W5QTbdewWFgudQxi3kDNST9GT1/mg==
+
+"@rollup/rollup-linux-arm64-musl@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.0.tgz#ad209270c9937a27346fce5b0670cbdfb1e6a0a6"
+ integrity sha512-aQpNlKmx3amwkA3a5J6nlXSahE1ijl0L9KuIjVOUhfOh7uw2S4piR3mtpxpRtbnK809SBtyPsM9q15CPTsY7HQ==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.0.tgz#fdd173929a5bba8b7e8b37314380213d9604088f"
+ integrity sha512-9fx6Zj/7vve/Fp4iexUFRKb5+RjLCff6YTRQl4CoDhdMfDoobWmhAxQWV3NfShMzQk1Q/iCnageFyGfqnsmeqQ==
+
+"@rollup/rollup-linux-riscv64-gnu@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.0.tgz#90b11314fbf45d04083f658e08dc3b32fd713061"
+ integrity sha512-VWQiCcN7zBgZYLjndIEh5tamtnKg5TGxyZPWcN9zBtXBwfcGSZ5cHSdQZfQH/GB4uRxk0D3VYbOEe/chJhPGLQ==
+
+"@rollup/rollup-linux-s390x-gnu@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.0.tgz#46bb2f1135aeec646b720d6032d7c86915f8b2ec"
+ integrity sha512-EHmPnPWvyYqncObwqrosb/CpH3GOjE76vWVs0g4hWsDRUVhg61hBmlVg5TPXqF+g+PvIbqkC7i3h8wbn4Gp2Fg==
+
+"@rollup/rollup-linux-x64-gnu@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.0.tgz#d731a19af5f05eabcba871bda2eeb2fa8c8adb67"
+ integrity sha512-tsSWy3YQzmpjDKnQ1Vcpy3p9Z+kMFbSIesCdMNgLizDWFhrLZIoN21JSq01g+MZMDFF+Y1+4zxgrlqPjid5ohg==
+
+"@rollup/rollup-linux-x64-musl@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.0.tgz#5438b2dc38fe467444cf769146098be083022d0f"
+ integrity sha512-anr1Y11uPOQrpuU8XOikY5lH4Qu94oS6j0xrulHk3NkLDq19MlX8Ng/pVipjxBJ9a2l3+F39REZYyWQFkZ4/fw==
+
+"@rollup/rollup-win32-arm64-msvc@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.0.tgz#6bd66c198f80c8e7050cfd901701cfb9555d768a"
+ integrity sha512-7LB+Bh+Ut7cfmO0m244/asvtIGQr5pG5Rvjz/l1Rnz1kDzM02pSX9jPaS0p+90H5I1x4d1FkCew+B7MOnoatNw==
+
+"@rollup/rollup-win32-ia32-msvc@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.0.tgz#58daea1f1e65143c44c8f3311f30ff8eefa62bae"
+ integrity sha512-+3qZ4rer7t/QsC5JwMpcvCVPRcJt1cJrYS/TMJZzXIJbxWFQEVhrIc26IhB+5Z9fT9umfVc+Es2mOZgl+7jdJQ==
+
+"@rollup/rollup-win32-x64-msvc@4.22.0":
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.0.tgz#956948629f6b87de0bdf526b28d940221540bbb6"
+ integrity sha512-YdicNOSJONVx/vuPkgPTyRoAPx3GbknBZRCOUkK84FJ/YTfs/F0vl/YsMscrB6Y177d+yDRcj+JWMPMCgshwrA==
"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0":
version "1.0.5"
@@ -5304,28 +5304,28 @@ rollup-plugin-copy@^3.5.0:
is-plain-object "^3.0.0"
rollup@^4.20.0, rollup@^4.21.0:
- version "4.21.3"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.3.tgz#c64ba119e6aeb913798a6f7eef2780a0df5a0821"
- integrity sha512-7sqRtBNnEbcBtMeRVc6VRsJMmpI+JU1z9VTvW8D4gXIYQFz0aLcsE6rRkyghZkLfEgUZgVvOG7A5CVz/VW5GIA==
+ version "4.22.0"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.0.tgz#23cd9e4565a458587683accc34a054660c01f351"
+ integrity sha512-W21MUIFPZ4+O2Je/EU+GP3iz7PH4pVPUXSbEZdatQnxo29+3rsUjgrJmzuAZU24z7yRAnFN6ukxeAhZh/c7hzg==
dependencies:
"@types/estree" "1.0.5"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.21.3"
- "@rollup/rollup-android-arm64" "4.21.3"
- "@rollup/rollup-darwin-arm64" "4.21.3"
- "@rollup/rollup-darwin-x64" "4.21.3"
- "@rollup/rollup-linux-arm-gnueabihf" "4.21.3"
- "@rollup/rollup-linux-arm-musleabihf" "4.21.3"
- "@rollup/rollup-linux-arm64-gnu" "4.21.3"
- "@rollup/rollup-linux-arm64-musl" "4.21.3"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.21.3"
- "@rollup/rollup-linux-riscv64-gnu" "4.21.3"
- "@rollup/rollup-linux-s390x-gnu" "4.21.3"
- "@rollup/rollup-linux-x64-gnu" "4.21.3"
- "@rollup/rollup-linux-x64-musl" "4.21.3"
- "@rollup/rollup-win32-arm64-msvc" "4.21.3"
- "@rollup/rollup-win32-ia32-msvc" "4.21.3"
- "@rollup/rollup-win32-x64-msvc" "4.21.3"
+ "@rollup/rollup-android-arm-eabi" "4.22.0"
+ "@rollup/rollup-android-arm64" "4.22.0"
+ "@rollup/rollup-darwin-arm64" "4.22.0"
+ "@rollup/rollup-darwin-x64" "4.22.0"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.22.0"
+ "@rollup/rollup-linux-arm-musleabihf" "4.22.0"
+ "@rollup/rollup-linux-arm64-gnu" "4.22.0"
+ "@rollup/rollup-linux-arm64-musl" "4.22.0"
+ "@rollup/rollup-linux-powerpc64le-gnu" "4.22.0"
+ "@rollup/rollup-linux-riscv64-gnu" "4.22.0"
+ "@rollup/rollup-linux-s390x-gnu" "4.22.0"
+ "@rollup/rollup-linux-x64-gnu" "4.22.0"
+ "@rollup/rollup-linux-x64-musl" "4.22.0"
+ "@rollup/rollup-win32-arm64-msvc" "4.22.0"
+ "@rollup/rollup-win32-ia32-msvc" "4.22.0"
+ "@rollup/rollup-win32-x64-msvc" "4.22.0"
fsevents "~2.3.2"
run-parallel@^1.1.9:
From 43a853253bb80ff195ff12b6834165daea440c70 Mon Sep 17 00:00:00 2001
From: zhixin
Date: Fri, 20 Sep 2024 10:49:10 +0800
Subject: [PATCH 66/67] Updated changelog for 1.23.3
---
CHANGELOG.md | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a05f908ab..f59ffd299 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,15 @@ ChangeLog
### Core
- **New:** Added support for column options `formatter` and `footerFormatter` methods returning type `jQuery`, `HTMLElement`.
+- **New:** Added `sortReset` method to reset the current sort state.
+- **New:** Added a presentation role if no matching rows are found.
+- **Update:** Fixed `refresh` method doesn't reuse parameters provided as query bug.
+- **Update:** Fixed compatibility issues when `colspan` is set as a string.
+
+### Extensions
+
+- **Update(fixed-columns):** Fixed undefined error in some cases.
+- **Update(reorder-columns):** Fixed incorrect column values order with detail view.
### 1.23.2
From 86f29e00678747ac3e5bbb0607f124a646e9ea82 Mon Sep 17 00:00:00 2001
From: zhixin
Date: Fri, 20 Sep 2024 11:08:37 +0800
Subject: [PATCH 67/67] Build 1.23.3
---
.github/ISSUE_TEMPLATE/1_Bug_report.yaml | 2 +-
_config.yml | 2 +-
bootstrap-table.jquery.json | 2 +-
dist/bootstrap-table-locale-all.js | 4313 ++++++-------
dist/bootstrap-table-locale-all.min.js | 4 +-
dist/bootstrap-table-vue.js | 2226 ++++---
dist/bootstrap-table-vue.umd.js | 14 +-
dist/bootstrap-table.css | 328 +-
dist/bootstrap-table.js | 5425 ++++++++++++-----
dist/bootstrap-table.min.css | 4 +-
dist/bootstrap-table.min.js | 4 +-
.../addrbar/bootstrap-table-addrbar.js | 442 +-
.../addrbar/bootstrap-table-addrbar.min.js | 4 +-
.../bootstrap-table-auto-refresh.js | 90 +-
.../bootstrap-table-auto-refresh.min.js | 4 +-
.../cookie/bootstrap-table-cookie.js | 144 +-
.../cookie/bootstrap-table-cookie.min.js | 4 +-
.../copy-rows/bootstrap-table-copy-rows.js | 468 +-
.../bootstrap-table-copy-rows.min.js | 4 +-
.../bootstrap-table-custom-view.js | 89 +-
.../bootstrap-table-custom-view.min.js | 4 +-
.../defer-url/bootstrap-table-defer-url.js | 582 +-
.../bootstrap-table-defer-url.min.js | 4 +-
.../editable/bootstrap-table-editable.js | 100 +-
.../editable/bootstrap-table-editable.min.js | 4 +-
.../export/bootstrap-table-export.js | 109 +-
.../export/bootstrap-table-export.min.js | 4 +-
.../bootstrap-table-filter-control.css | 21 +-
.../bootstrap-table-filter-control.js | 299 +-
.../bootstrap-table-filter-control.min.css | 4 +-
.../bootstrap-table-filter-control.min.js | 4 +-
dist/extensions/filter-control/utils.js | 112 +-
dist/extensions/filter-control/utils.min.js | 4 +-
.../bootstrap-table-fixed-columns.css | 24 +-
.../bootstrap-table-fixed-columns.js | 485 +-
.../bootstrap-table-fixed-columns.min.css | 2 +-
.../bootstrap-table-fixed-columns.min.js | 4 +-
.../group-by-v2/bootstrap-table-group-by.css | 9 +-
.../group-by-v2/bootstrap-table-group-by.js | 116 +-
.../bootstrap-table-group-by.min.css | 2 +-
.../bootstrap-table-group-by.min.js | 4 +-
.../bootstrap-table-i18n-enhance.js | 65 +-
.../bootstrap-table-i18n-enhance.min.js | 4 +-
.../key-events/bootstrap-table-key-events.js | 470 +-
.../bootstrap-table-key-events.min.js | 4 +-
.../mobile/bootstrap-table-mobile.js | 686 +--
.../mobile/bootstrap-table-mobile.min.js | 4 +-
.../bootstrap-table-multiple-sort.js | 102 +-
.../bootstrap-table-multiple-sort.min.js | 4 +-
.../bootstrap-table-page-jump-to.css | 14 +-
.../bootstrap-table-page-jump-to.js | 87 +-
.../bootstrap-table-page-jump-to.min.css | 2 +-
.../bootstrap-table-page-jump-to.min.js | 4 +-
.../pipeline/bootstrap-table-pipeline.js | 376 +-
.../pipeline/bootstrap-table-pipeline.min.js | 4 +-
.../extensions/print/bootstrap-table-print.js | 130 +-
.../print/bootstrap-table-print.min.js | 4 +-
.../bootstrap-table-reorder-columns.js | 505 +-
.../bootstrap-table-reorder-columns.min.js | 4 +-
.../bootstrap-table-reorder-rows.css | 11 +-
.../bootstrap-table-reorder-rows.js | 497 +-
.../bootstrap-table-reorder-rows.min.css | 2 +-
.../bootstrap-table-reorder-rows.min.js | 4 +-
.../resizable/bootstrap-table-resizable.js | 592 +-
.../bootstrap-table-resizable.min.js | 4 +-
.../bootstrap-table-sticky-header.css | 22 +-
.../bootstrap-table-sticky-header.js | 480 +-
.../bootstrap-table-sticky-header.min.css | 2 +-
.../bootstrap-table-sticky-header.min.js | 4 +-
.../toolbar/bootstrap-table-toolbar.js | 102 +-
.../toolbar/bootstrap-table-toolbar.min.js | 4 +-
.../treegrid/bootstrap-table-treegrid.js | 476 +-
.../treegrid/bootstrap-table-treegrid.min.js | 4 +-
dist/locale/bootstrap-table-af-ZA.js | 73 +-
dist/locale/bootstrap-table-af-ZA.min.js | 4 +-
dist/locale/bootstrap-table-ar-SA.js | 73 +-
dist/locale/bootstrap-table-ar-SA.min.js | 4 +-
dist/locale/bootstrap-table-bg-BG.js | 73 +-
dist/locale/bootstrap-table-bg-BG.min.js | 4 +-
dist/locale/bootstrap-table-ca-ES.js | 73 +-
dist/locale/bootstrap-table-ca-ES.min.js | 4 +-
dist/locale/bootstrap-table-cs-CZ.js | 73 +-
dist/locale/bootstrap-table-cs-CZ.min.js | 4 +-
dist/locale/bootstrap-table-da-DK.js | 73 +-
dist/locale/bootstrap-table-da-DK.min.js | 4 +-
dist/locale/bootstrap-table-de-DE.js | 73 +-
dist/locale/bootstrap-table-de-DE.min.js | 4 +-
dist/locale/bootstrap-table-el-GR.js | 73 +-
dist/locale/bootstrap-table-el-GR.min.js | 4 +-
dist/locale/bootstrap-table-en-US.js | 73 +-
dist/locale/bootstrap-table-en-US.min.js | 4 +-
dist/locale/bootstrap-table-es-AR.js | 73 +-
dist/locale/bootstrap-table-es-AR.min.js | 4 +-
dist/locale/bootstrap-table-es-CL.js | 73 +-
dist/locale/bootstrap-table-es-CL.min.js | 4 +-
dist/locale/bootstrap-table-es-CR.js | 73 +-
dist/locale/bootstrap-table-es-CR.min.js | 4 +-
dist/locale/bootstrap-table-es-ES.js | 73 +-
dist/locale/bootstrap-table-es-ES.min.js | 4 +-
dist/locale/bootstrap-table-es-MX.js | 73 +-
dist/locale/bootstrap-table-es-MX.min.js | 4 +-
dist/locale/bootstrap-table-es-NI.js | 73 +-
dist/locale/bootstrap-table-es-NI.min.js | 4 +-
dist/locale/bootstrap-table-es-SP.js | 73 +-
dist/locale/bootstrap-table-es-SP.min.js | 4 +-
dist/locale/bootstrap-table-et-EE.js | 73 +-
dist/locale/bootstrap-table-et-EE.min.js | 4 +-
dist/locale/bootstrap-table-eu-EU.js | 73 +-
dist/locale/bootstrap-table-eu-EU.min.js | 4 +-
dist/locale/bootstrap-table-fa-IR.js | 73 +-
dist/locale/bootstrap-table-fa-IR.min.js | 4 +-
dist/locale/bootstrap-table-fi-FI.js | 73 +-
dist/locale/bootstrap-table-fi-FI.min.js | 4 +-
dist/locale/bootstrap-table-fr-BE.js | 73 +-
dist/locale/bootstrap-table-fr-BE.min.js | 4 +-
dist/locale/bootstrap-table-fr-CH.js | 73 +-
dist/locale/bootstrap-table-fr-CH.min.js | 4 +-
dist/locale/bootstrap-table-fr-FR.js | 73 +-
dist/locale/bootstrap-table-fr-FR.min.js | 4 +-
dist/locale/bootstrap-table-fr-LU.js | 73 +-
dist/locale/bootstrap-table-fr-LU.min.js | 4 +-
dist/locale/bootstrap-table-he-IL.js | 73 +-
dist/locale/bootstrap-table-he-IL.min.js | 4 +-
dist/locale/bootstrap-table-hi-IN.js | 73 +-
dist/locale/bootstrap-table-hi-IN.min.js | 4 +-
dist/locale/bootstrap-table-hr-HR.js | 73 +-
dist/locale/bootstrap-table-hr-HR.min.js | 4 +-
dist/locale/bootstrap-table-hu-HU.js | 73 +-
dist/locale/bootstrap-table-hu-HU.min.js | 4 +-
dist/locale/bootstrap-table-id-ID.js | 73 +-
dist/locale/bootstrap-table-id-ID.min.js | 4 +-
dist/locale/bootstrap-table-it-IT.js | 73 +-
dist/locale/bootstrap-table-it-IT.min.js | 4 +-
dist/locale/bootstrap-table-ja-JP.js | 73 +-
dist/locale/bootstrap-table-ja-JP.min.js | 4 +-
dist/locale/bootstrap-table-ka-GE.js | 73 +-
dist/locale/bootstrap-table-ka-GE.min.js | 4 +-
dist/locale/bootstrap-table-ko-KR.js | 73 +-
dist/locale/bootstrap-table-ko-KR.min.js | 4 +-
dist/locale/bootstrap-table-lb-LU.js | 73 +-
dist/locale/bootstrap-table-lb-LU.min.js | 4 +-
dist/locale/bootstrap-table-ms-MY.js | 73 +-
dist/locale/bootstrap-table-ms-MY.min.js | 4 +-
dist/locale/bootstrap-table-nb-NO.js | 73 +-
dist/locale/bootstrap-table-nb-NO.min.js | 4 +-
dist/locale/bootstrap-table-nl-BE.js | 73 +-
dist/locale/bootstrap-table-nl-BE.min.js | 4 +-
dist/locale/bootstrap-table-nl-NL.js | 73 +-
dist/locale/bootstrap-table-nl-NL.min.js | 4 +-
dist/locale/bootstrap-table-pl-PL.js | 73 +-
dist/locale/bootstrap-table-pl-PL.min.js | 4 +-
dist/locale/bootstrap-table-pt-BR.js | 73 +-
dist/locale/bootstrap-table-pt-BR.min.js | 4 +-
dist/locale/bootstrap-table-pt-PT.js | 73 +-
dist/locale/bootstrap-table-pt-PT.min.js | 4 +-
dist/locale/bootstrap-table-ro-RO.js | 73 +-
dist/locale/bootstrap-table-ro-RO.min.js | 4 +-
dist/locale/bootstrap-table-ru-RU.js | 73 +-
dist/locale/bootstrap-table-ru-RU.min.js | 4 +-
dist/locale/bootstrap-table-sk-SK.js | 73 +-
dist/locale/bootstrap-table-sk-SK.min.js | 4 +-
dist/locale/bootstrap-table-sl-SI.js | 73 +-
dist/locale/bootstrap-table-sl-SI.min.js | 4 +-
dist/locale/bootstrap-table-sr-Cyrl-RS.js | 73 +-
dist/locale/bootstrap-table-sr-Cyrl-RS.min.js | 4 +-
dist/locale/bootstrap-table-sr-Latn-RS.js | 73 +-
dist/locale/bootstrap-table-sr-Latn-RS.min.js | 4 +-
dist/locale/bootstrap-table-sv-SE.js | 73 +-
dist/locale/bootstrap-table-sv-SE.min.js | 4 +-
dist/locale/bootstrap-table-th-TH.js | 73 +-
dist/locale/bootstrap-table-th-TH.min.js | 4 +-
dist/locale/bootstrap-table-tr-TR.js | 73 +-
dist/locale/bootstrap-table-tr-TR.min.js | 4 +-
dist/locale/bootstrap-table-uk-UA.js | 73 +-
dist/locale/bootstrap-table-uk-UA.min.js | 4 +-
dist/locale/bootstrap-table-ur-PK.js | 73 +-
dist/locale/bootstrap-table-ur-PK.min.js | 4 +-
dist/locale/bootstrap-table-uz-Latn-UZ.js | 73 +-
dist/locale/bootstrap-table-uz-Latn-UZ.min.js | 4 +-
dist/locale/bootstrap-table-vi-VN.js | 73 +-
dist/locale/bootstrap-table-vi-VN.min.js | 4 +-
dist/locale/bootstrap-table-zh-CN.js | 73 +-
dist/locale/bootstrap-table-zh-CN.min.js | 4 +-
dist/locale/bootstrap-table-zh-TW.js | 73 +-
dist/locale/bootstrap-table-zh-TW.min.js | 4 +-
.../bootstrap-table/bootstrap-table.css | 687 ++-
.../themes/bootstrap-table/bootstrap-table.js | 86 +-
.../bootstrap-table/bootstrap-table.min.css | 4 +-
.../bootstrap-table/bootstrap-table.min.js | 4 +-
dist/themes/bulma/bootstrap-table-bulma.css | 384 +-
dist/themes/bulma/bootstrap-table-bulma.js | 84 +-
.../bulma/bootstrap-table-bulma.min.css | 4 +-
.../themes/bulma/bootstrap-table-bulma.min.js | 4 +-
.../foundation/bootstrap-table-foundation.css | 368 +-
.../foundation/bootstrap-table-foundation.js | 84 +-
.../bootstrap-table-foundation.min.css | 4 +-
.../bootstrap-table-foundation.min.js | 4 +-
.../bootstrap-table-materialize.css | 365 +-
.../bootstrap-table-materialize.js | 84 +-
.../bootstrap-table-materialize.min.css | 4 +-
.../bootstrap-table-materialize.min.js | 4 +-
.../semantic/bootstrap-table-semantic.css | 368 +-
.../semantic/bootstrap-table-semantic.js | 84 +-
.../semantic/bootstrap-table-semantic.min.css | 4 +-
.../semantic/bootstrap-table-semantic.min.js | 4 +-
package.json | 2 +-
site/news.md | 4 +
src/bootstrap-table.js | 2 +-
src/bootstrap-table.scss | 2 +-
src/constants/index.js | 2 +-
210 files changed, 15842 insertions(+), 11259 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/1_Bug_report.yaml b/.github/ISSUE_TEMPLATE/1_Bug_report.yaml
index 5aa2e2fe2..4ae7faf43 100644
--- a/.github/ISSUE_TEMPLATE/1_Bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/1_Bug_report.yaml
@@ -7,7 +7,7 @@ body:
id: affected-versions
attributes:
label: Bootstraptable version(s) affected
- placeholder: 1.23.2
+ placeholder: 1.23.3
validations:
required: true
- type: textarea
diff --git a/_config.yml b/_config.yml
index ff003bcc8..ff64db53e 100644
--- a/_config.yml
+++ b/_config.yml
@@ -27,7 +27,7 @@ algolia:
index_name: bootstrap-table
# Custom variables
-current_version: 1.23.2
+current_version: 1.23.3
title: "Bootstrap Table"
description: "An extended table to the integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)"
authors: "Zhixin Wen, and Bootstrap Table contributors"
diff --git a/bootstrap-table.jquery.json b/bootstrap-table.jquery.json
index ea99609b0..8094cf52b 100644
--- a/bootstrap-table.jquery.json
+++ b/bootstrap-table.jquery.json
@@ -1,6 +1,6 @@
{
"name": "bootstrap-table",
- "version": "1.23.2",
+ "version": "1.23.3",
"title": "Bootstrap Table",
"description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
"author": {
diff --git a/dist/bootstrap-table-locale-all.js b/dist/bootstrap-table-locale-all.js
index 40f0db436..96ba81b75 100644
--- a/dist/bootstrap-table-locale-all.js
+++ b/dist/bootstrap-table-locale-all.js
@@ -11,7 +11,7 @@
};
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
- var global$a =
+ var globalThis_1 =
// eslint-disable-next-line es/no-global-this -- safe
check(typeof globalThis == 'object' && globalThis) ||
check(typeof window == 'object' && window) ||
@@ -162,7 +162,7 @@
return typeof it == 'object' ? it !== null : isCallable$b(it);
};
- var global$9 = global$a;
+ var globalThis$b = globalThis_1;
var isCallable$a = isCallable$c;
var aFunction = function (argument) {
@@ -170,20 +170,25 @@
};
var getBuiltIn$3 = function (namespace, method) {
- return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
+ return arguments.length < 2 ? aFunction(globalThis$b[namespace]) : globalThis$b[namespace] && globalThis$b[namespace][method];
};
var uncurryThis$8 = functionUncurryThis;
var objectIsPrototypeOf = uncurryThis$8({}.isPrototypeOf);
- var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
+ var globalThis$a = globalThis_1;
- var global$8 = global$a;
- var userAgent = engineUserAgent;
+ var navigator = globalThis$a.navigator;
+ var userAgent$1 = navigator && navigator.userAgent;
- var process = global$8.process;
- var Deno = global$8.Deno;
+ var environmentUserAgent = userAgent$1 ? String(userAgent$1) : '';
+
+ var globalThis$9 = globalThis_1;
+ var userAgent = environmentUserAgent;
+
+ var process = globalThis$9.process;
+ var Deno = globalThis$9.Deno;
var versions = process && process.versions || Deno && Deno.version;
var v8 = versions && versions.v8;
var match, version;
@@ -205,14 +210,14 @@
}
}
- var engineV8Version = version;
+ var environmentV8Version = version;
/* eslint-disable es/no-symbol -- required for testing */
- var V8_VERSION$2 = engineV8Version;
+ var V8_VERSION$2 = environmentV8Version;
var fails$8 = fails$c;
- var global$7 = global$a;
+ var globalThis$8 = globalThis_1;
- var $String$3 = global$7.String;
+ var $String$3 = globalThis$8.String;
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
@@ -296,30 +301,30 @@
var sharedStore = {exports: {}};
- var global$6 = global$a;
+ var globalThis$7 = globalThis_1;
// eslint-disable-next-line es/no-object-defineproperty -- safe
var defineProperty$2 = Object.defineProperty;
var defineGlobalProperty$3 = function (key, value) {
try {
- defineProperty$2(global$6, key, { value: value, configurable: true, writable: true });
+ defineProperty$2(globalThis$7, key, { value: value, configurable: true, writable: true });
} catch (error) {
- global$6[key] = value;
+ globalThis$7[key] = value;
} return value;
};
- var globalThis$1 = global$a;
+ var globalThis$6 = globalThis_1;
var defineGlobalProperty$2 = defineGlobalProperty$3;
var SHARED = '__core-js_shared__';
- var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
+ var store$3 = sharedStore.exports = globalThis$6[SHARED] || defineGlobalProperty$2(SHARED, {});
(store$3.versions || (store$3.versions = [])).push({
- version: '3.37.1',
+ version: '3.38.1',
mode: 'global',
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
- license: 'https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE',
+ license: 'https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE',
source: 'https://github.com/zloirock/core-js'
});
@@ -363,14 +368,14 @@
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
};
- var global$5 = global$a;
+ var globalThis$5 = globalThis_1;
var shared$2 = shared$3;
var hasOwn$6 = hasOwnProperty_1;
var uid$1 = uid$2;
var NATIVE_SYMBOL = symbolConstructorDetection;
var USE_SYMBOL_AS_UID = useSymbolAsUid;
- var Symbol$1 = global$5.Symbol;
+ var Symbol$1 = globalThis$5.Symbol;
var WellKnownSymbolsStore = shared$2('wks');
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
@@ -418,10 +423,10 @@
return isSymbol(key) ? key : key + '';
};
- var global$4 = global$a;
+ var globalThis$4 = globalThis_1;
var isObject$4 = isObject$7;
- var document$1 = global$4.document;
+ var document$1 = globalThis$4.document;
// typeof document.createElement is 'object' in old IE
var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
@@ -580,10 +585,10 @@
var inspectSource$2 = store$1.inspectSource;
- var global$3 = global$a;
+ var globalThis$3 = globalThis_1;
var isCallable$5 = isCallable$c;
- var WeakMap$1 = global$3.WeakMap;
+ var WeakMap$1 = globalThis$3.WeakMap;
var weakMapBasicDetection = isCallable$5(WeakMap$1) && /native code/.test(String(WeakMap$1));
@@ -599,7 +604,7 @@
var hiddenKeys$3 = {};
var NATIVE_WEAK_MAP = weakMapBasicDetection;
- var global$2 = global$a;
+ var globalThis$2 = globalThis_1;
var isObject$2 = isObject$7;
var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
var hasOwn$3 = hasOwnProperty_1;
@@ -608,8 +613,8 @@
var hiddenKeys$2 = hiddenKeys$3;
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
- var TypeError$1 = global$2.TypeError;
- var WeakMap = global$2.WeakMap;
+ var TypeError$1 = globalThis$2.TypeError;
+ var WeakMap = globalThis$2.WeakMap;
var set, get, has;
var enforce = function (it) {
@@ -947,7 +952,7 @@
var isForced_1 = isForced$1;
- var global$1 = global$a;
+ var globalThis$1 = globalThis_1;
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
var createNonEnumerableProperty = createNonEnumerableProperty$2;
var defineBuiltIn = defineBuiltIn$1;
@@ -976,11 +981,11 @@
var STATIC = options.stat;
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
if (GLOBAL) {
- target = global$1;
+ target = globalThis$1;
} else if (STATIC) {
- target = global$1[TARGET] || defineGlobalProperty(TARGET, {});
+ target = globalThis$1[TARGET] || defineGlobalProperty(TARGET, {});
} else {
- target = global$1[TARGET] && global$1[TARGET].prototype;
+ target = globalThis$1[TARGET] && globalThis$1[TARGET].prototype;
}
if (target) for (key in source) {
sourceProperty = source[key];
@@ -1152,7 +1157,7 @@
var fails$2 = fails$c;
var wellKnownSymbol$1 = wellKnownSymbol$6;
- var V8_VERSION$1 = engineV8Version;
+ var V8_VERSION$1 = environmentV8Version;
var SPECIES = wellKnownSymbol$1('species');
@@ -1181,7 +1186,7 @@
var arraySpeciesCreate = arraySpeciesCreate$1;
var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$1;
var wellKnownSymbol = wellKnownSymbol$6;
- var V8_VERSION = engineV8Version;
+ var V8_VERSION = environmentV8Version;
var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
@@ -1306,563 +1311,573 @@
});
/**
- * Bootstrap Table Catalan translation
- * Authors: Marc Pina
- * Claudi Martinez
- * Joan Puigcerver
+ * Bootstrap Table Arabic translation
+ * Author: Othman Ali Modaes
*/
- $$2.fn.bootstrapTable.locales['ca-ES'] = $$2.fn.bootstrapTable.locales['ca'] = {
+ $$2.fn.bootstrapTable.locales['ar-SA'] = $$2.fn.bootstrapTable.locales['ar'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copia resultats';
+ return 'نسخ الصفوف';
},
formatPrint: function formatPrint() {
- return 'Imprimeix';
+ return 'طباعة';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Espereu, si us plau';
+ return 'جارٍ التحميل، يرجى الانتظار...';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " resultats per p\xE0gina");
+ return "".concat(pageNumber, " \u0635\u0641 \u0644\u0643\u0644 \u0635\u0641\u062D\u0629");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Mostrant resultats ".concat(pageFrom, " fins ").concat(pageTo, " - ").concat(totalRows, " resultats (filtrats d'un total de ").concat(totalNotFiltered, " resultats)");
+ return "\u0627\u0644\u0638\u0627\u0647\u0631 ".concat(pageFrom, " \u0625\u0644\u0649 ").concat(pageTo, " \u0645\u0646 ").concat(totalRows, " \u0633\u062C\u0644 ").concat(totalNotFiltered, " \u0625\u062C\u0645\u0627\u0644\u064A \u0627\u0644\u0635\u0641\u0648\u0641)");
}
- return "Mostrant resultats ".concat(pageFrom, " fins ").concat(pageTo, " - ").concat(totalRows, " resultats en total");
+ return "\u0627\u0644\u0638\u0627\u0647\u0631 ".concat(pageFrom, " \u0625\u0644\u0649 ").concat(pageTo, " \u0645\u0646 ").concat(totalRows, " \u0633\u062C\u0644");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'Pàgina anterior';
+ return 'الصفحة السابقة';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "A la p\xE0gina ".concat(page);
+ return "\u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'Pàgina següent';
+ return 'الصفحة التالية';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Mostrant ".concat(totalRows, " resultats");
+ return "\u0639\u0631\u0636 ".concat(totalRows, " \u0623\u0639\u0645\u062F\u0629");
},
formatClearSearch: function formatClearSearch() {
- return 'Neteja cerca';
+ return 'مسح مربع البحث';
},
formatSearch: function formatSearch() {
- return 'Cerca';
+ return 'بحث';
},
formatNoMatches: function formatNoMatches() {
- return 'No s\'han trobat resultats';
+ return 'لا توجد نتائج مطابقة للبحث';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Amaga/Mostra paginació';
+ /* eslint-disable no-useless-escape */
+ return 'إخفاء/إظهار ترقيم الصفحات';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Mostra paginació';
+ return 'إظهار ترقيم الصفحات';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Amaga paginació';
+ return 'إخفاء ترقيم الصفحات';
},
formatRefresh: function formatRefresh() {
- return 'Refresca';
+ return 'تحديث';
},
formatToggleOn: function formatToggleOn() {
- return 'Mostra vista de tarjeta';
+ return 'إظهار كبطاقات';
},
formatToggleOff: function formatToggleOff() {
- return 'Amaga vista de tarjeta';
+ return 'إلغاء البطاقات';
},
formatColumns: function formatColumns() {
- return 'Columnes';
+ return 'أعمدة';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Alterna totes';
+ return 'تبديل الكل';
},
formatFullscreen: function formatFullscreen() {
- return 'Pantalla completa';
+ return 'الشاشة كاملة';
},
formatAllRows: function formatAllRows() {
- return 'Tots';
+ return 'الكل';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresca';
+ return 'تحديث تلقائي';
},
formatExport: function formatExport() {
- return 'Exporta dades';
+ return 'تصدير البيانات';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'قفز';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Cerca avançada';
+ return 'بحث متقدم';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Tanca';
+ return 'إغلاق';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Mostra/Amaga controls';
+ return 'عرض/إخفاء عناصر التصفية';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Mostra controls';
+ return 'إخفاء عناصر التصفية';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Amaga controls';
+ return 'عرض عناصر التصفية';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ca-ES']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ar-SA']);
/**
- * Bootstrap Table Czech translation
- * Author: Lukas Kral (monarcha@seznam.cz)
- * Author: Jakub Svestka
+ * Bootstrap Table Afrikaans translation
+ * Author: Phillip Kruger
*/
- $$2.fn.bootstrapTable.locales['cs-CZ'] = $$2.fn.bootstrapTable.locales['cs'] = {
+ $$2.fn.bootstrapTable.locales['af-ZA'] = $$2.fn.bootstrapTable.locales['af'] = {
formatCopyRows: function formatCopyRows() {
- return 'Kopírovat řádky';
+ return 'Kopieer lyne';
},
formatPrint: function formatPrint() {
- return 'Tisk';
+ return 'Druk uit';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Čekejte, prosím';
+ return 'Laai tans';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " polo\u017Eek na str\xE1nku");
+ return "".concat(pageNumber, " re\xEBls per bladsy");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Zobrazena ".concat(pageFrom, ". - ").concat(pageTo, " . polo\u017Eka z celkov\xFDch ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Wys ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " lyne (gefiltreer vanaf ").concat(totalNotFiltered, " lyne)");
}
- return "Zobrazena ".concat(pageFrom, ". - ").concat(pageTo, " . polo\u017Eka z celkov\xFDch ").concat(totalRows);
+ return "Wys ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " lyne");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'předchozí strana';
+ return 'vorige bladsy';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "na stranu ".concat(page);
+ return "na bladsy ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'další strana';
+ return 'volgende bladsy';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Zobrazuji ".concat(totalRows, " \u0159\xE1dek");
+ return "".concat(totalRows, "-re\xEBl vertoon");
},
formatClearSearch: function formatClearSearch() {
- return 'Smazat hledání';
+ return 'Duidelike soektog';
},
formatSearch: function formatSearch() {
- return 'Vyhledávání';
+ return 'Navorsing';
},
formatNoMatches: function formatNoMatches() {
- return 'Nenalezena žádná vyhovující položka';
+ return 'Geen resultate nie';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Skrýt/Zobrazit stránkování';
+ return 'Versteek/Wys paginasie';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Zobrazit stránkování';
+ return 'Wys paginasie';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Skrýt stránkování';
+ return 'Versteek paginasie';
},
formatRefresh: function formatRefresh() {
- return 'Aktualizovat';
+ return 'Verfris';
},
formatToggleOn: function formatToggleOn() {
- return 'Zobrazit karty';
+ return 'Wys kaartaansig';
},
formatToggleOff: function formatToggleOff() {
- return 'Zobrazit tabulku';
+ return 'Versteek kaartaansig';
},
formatColumns: function formatColumns() {
- return 'Sloupce';
+ return 'Kolomme';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Zobrazit/Skrýt vše';
+ return 'Wys alles';
},
formatFullscreen: function formatFullscreen() {
- return 'Zapnout/Vypnout fullscreen';
+ return 'Volskerm';
},
formatAllRows: function formatAllRows() {
- return 'Vše';
+ return 'Alles';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Automatické obnovení';
+ return 'Verfris outomaties';
},
formatExport: function formatExport() {
- return 'Export dat';
+ return 'Voer data uit';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'Gaan na';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Pokročilé hledání';
+ return 'Gevorderde soektog';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Zavřít';
+ return 'Maak';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Skrýt/Zobrazit ovladače';
+ return 'Versteek/Wys kontroles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Skrýt ovladače';
+ return 'Versteek kontroles';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Zobrazit ovladače';
+ return 'Wys kontroles';
+ },
+ formatToggleCustomViewOn: function formatToggleCustomViewOn() {
+ return 'Wys pasgemaakte aansig';
+ },
+ formatToggleCustomViewOff: function formatToggleCustomViewOff() {
+ return 'Versteek pasgemaakte aansig';
+ },
+ formatClearFilters: function formatClearFilters() {
+ return 'Verwyder filters';
+ },
+ formatAddLevel: function formatAddLevel() {
+ return 'Voeg \'n vlak by';
+ },
+ formatCancel: function formatCancel() {
+ return 'Kanselleer';
+ },
+ formatColumn: function formatColumn() {
+ return 'Kolom';
+ },
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Vee \'n vlak uit';
+ },
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return 'Duplikaatinskrywings is gevind!';
+ },
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Verwyder of wysig asseblief duplikaatinskrywings';
+ },
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Multi-sorteer';
+ },
+ formatOrder: function formatOrder() {
+ return 'Bestelling';
+ },
+ formatSort: function formatSort() {
+ return 'Rangskik';
+ },
+ formatSortBy: function formatSortBy() {
+ return 'Sorteer volgens';
+ },
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Stygende',
+ desc: 'Dalende'
+ };
+ },
+ formatThenBy: function formatThenBy() {
+ return 'Dan deur';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['cs-CZ']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['af-ZA']);
/**
- * Bootstrap Table German translation
- * Author: Paul Mohr - Sopamo
- */
+ * Bootstrap Table Bulgarian translation
+ * Author: Mikhail Kalatchev
+ */
- $$2.fn.bootstrapTable.locales['de-DE'] = $$2.fn.bootstrapTable.locales['de'] = {
+ $$2.fn.bootstrapTable.locales['bg-BG'] = $$2.fn.bootstrapTable.locales['bg'] = {
formatCopyRows: function formatCopyRows() {
- return 'Zeilen kopieren';
+ return 'Копиране на редове';
},
formatPrint: function formatPrint() {
- return 'Drucken';
+ return 'Печат';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Lade, bitte warten';
+ return 'Зареждане, моля изчакайте';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " Zeilen pro Seite.");
+ return "".concat(pageNumber, " \u0440\u0435\u0434\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Zeige Zeile ".concat(pageFrom, " bis ").concat(pageTo, " von ").concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', " (Gefiltert von ").concat(totalNotFiltered, " Zeile").concat(totalNotFiltered > 1 ? 'n' : '', ")");
+ return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 \u0440\u0435\u0434\u043E\u0432\u0435 \u043E\u0442 ".concat(pageFrom, " \u0434\u043E ").concat(pageTo, " \u043E\u0442 ").concat(totalRows, " (\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u0438 \u043E\u0442 \u043E\u0431\u0449\u043E ").concat(totalNotFiltered, ")");
}
- return "Zeige Zeile ".concat(pageFrom, " bis ").concat(pageTo, " von ").concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', ".");
+ return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 \u0440\u0435\u0434\u043E\u0432\u0435 \u043E\u0442 ".concat(pageFrom, " \u0434\u043E ").concat(pageTo, " \u043E\u0442 \u043E\u0431\u0449\u043E ").concat(totalRows);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'Vorherige Seite';
+ return 'предишна страница';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "Zu Seite ".concat(page);
+ return "\u0434\u043E \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'Nächste Seite';
+ return 'следваща страница';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Zeige ".concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', ".");
+ return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 ".concat(totalRows, " \u0440\u0435\u0434\u0430");
},
formatClearSearch: function formatClearSearch() {
- return 'Lösche Filter';
+ return 'Изчистване на търсенето';
},
formatSearch: function formatSearch() {
- return 'Suchen';
+ return 'Търсене';
},
formatNoMatches: function formatNoMatches() {
- return 'Keine passenden Ergebnisse gefunden';
+ return 'Не са намерени съвпадащи записи';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Verstecke/Zeige Nummerierung';
+ return 'Скриване/Показване на странициране';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Zeige Nummerierung';
+ return 'Показване на странициране';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Verstecke Nummerierung';
+ return 'Скриване на странициране';
},
formatRefresh: function formatRefresh() {
- return 'Neu laden';
+ return 'Обновяване';
},
formatToggleOn: function formatToggleOn() {
- return 'Normale Ansicht';
+ return 'Показване на изглед карта';
},
formatToggleOff: function formatToggleOff() {
- return 'Kartenansicht';
+ return 'Скриване на изглед карта';
},
formatColumns: function formatColumns() {
- return 'Spalten';
+ return 'Колони';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Alle umschalten';
+ return 'Превключване на всички';
},
formatFullscreen: function formatFullscreen() {
- return 'Vollbild';
+ return 'Цял екран';
},
formatAllRows: function formatAllRows() {
- return 'Alle';
+ return 'Всички';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Automatisches Neuladen';
+ return 'Автоматично обновяване';
},
formatExport: function formatExport() {
- return 'Datenexport';
+ return 'Експорт на данни';
},
formatJumpTo: function formatJumpTo() {
- return 'Springen';
+ return 'ОТИДИ';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Erweiterte Suche';
+ return 'Разширено търсене';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Schließen';
+ return 'Затваряне';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Verstecke/Zeige Filter';
+ return 'Скрива/показва контроли';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Verstecke Filter';
+ return 'Скрива контроли';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Zeige Filter';
- },
- formatAddLevel: function formatAddLevel() {
- return 'Ebene hinzufügen';
- },
- formatCancel: function formatCancel() {
- return 'Abbrechen';
- },
- formatColumn: function formatColumn() {
- return 'Spalte';
- },
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Ebene entfernen';
- },
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Doppelte Einträge gefunden!';
- },
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Bitte doppelte Spalten entfenen oder ändern';
- },
- formatMultipleSort: function formatMultipleSort() {
- return 'Mehrfachsortierung';
- },
- formatOrder: function formatOrder() {
- return 'Reihenfolge';
- },
- formatSort: function formatSort() {
- return 'Sortieren';
- },
- formatSortBy: function formatSortBy() {
- return 'Sortieren nach';
- },
- formatThenBy: function formatThenBy() {
- return 'anschließend';
- },
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Aufsteigend',
- desc: 'Absteigend'
- };
+ return 'Показва контроли';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['de-DE']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['bg-BG']);
/**
- * Bootstrap Table Greek translation
- * Author: giannisdallas
+ * Bootstrap Table Catalan translation
+ * Authors: Marc Pina
+ * Claudi Martinez
+ * Joan Puigcerver
*/
- $$2.fn.bootstrapTable.locales['el-GR'] = $$2.fn.bootstrapTable.locales['el'] = {
+ $$2.fn.bootstrapTable.locales['ca-ES'] = $$2.fn.bootstrapTable.locales['ca'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Copia resultats';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Imprimeix';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Φορτώνει, παρακαλώ περιμένετε';
+ return 'Espereu, si us plau';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u03B1\u03BD\u03AC \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1");
+ return "".concat(pageNumber, " resultats per p\xE0gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD ".concat(pageFrom, " \u03C9\u03C2 \u03C4\u03B7\u03BD ").concat(pageTo, " \u03B1\u03C0\u03CC \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF ").concat(totalRows, " \u03C3\u03B5\u03B9\u03C1\u03CE\u03BD (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Mostrant resultats ".concat(pageFrom, " fins ").concat(pageTo, " - ").concat(totalRows, " resultats (filtrats d'un total de ").concat(totalNotFiltered, " resultats)");
}
- return "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD ".concat(pageFrom, " \u03C9\u03C2 \u03C4\u03B7\u03BD ").concat(pageTo, " \u03B1\u03C0\u03CC \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF ").concat(totalRows, " \u03C3\u03B5\u03B9\u03C1\u03CE\u03BD");
+ return "Mostrant resultats ".concat(pageFrom, " fins ").concat(pageTo, " - ").concat(totalRows, " resultats en total");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'Pàgina anterior';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "A la p\xE0gina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'Pàgina següent';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Mostrant ".concat(totalRows, " resultats");
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Neteja cerca';
},
formatSearch: function formatSearch() {
- return 'Αναζητήστε';
+ return 'Cerca';
},
formatNoMatches: function formatNoMatches() {
- return 'Δεν βρέθηκαν αποτελέσματα';
+ return 'No s\'han trobat resultats';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
+ return 'Amaga/Mostra paginació';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Mostra paginació';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Amaga paginació';
},
formatRefresh: function formatRefresh() {
- return 'Refresh';
+ return 'Refresca';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Mostra vista de tarjeta';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Amaga vista de tarjeta';
},
formatColumns: function formatColumns() {
- return 'Columns';
+ return 'Columnes';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Alterna totes';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Pantalla completa';
},
formatAllRows: function formatAllRows() {
- return 'All';
+ return 'Tots';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Auto Refresca';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Exporta dades';
},
formatJumpTo: function formatJumpTo() {
return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Cerca avançada';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Tanca';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Mostra/Amaga controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Mostra controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Amaga controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['el-GR']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ca-ES']);
/**
- * Bootstrap Table Bulgarian translation
- * Author: Mikhail Kalatchev
+ * Bootstrap Table Czech translation
+ * Author: Lukas Kral (monarcha@seznam.cz)
+ * Author: Jakub Svestka
*/
- $$2.fn.bootstrapTable.locales['bg-BG'] = $$2.fn.bootstrapTable.locales['bg'] = {
+ $$2.fn.bootstrapTable.locales['cs-CZ'] = $$2.fn.bootstrapTable.locales['cs'] = {
formatCopyRows: function formatCopyRows() {
- return 'Копиране на редове';
+ return 'Kopírovat řádky';
},
formatPrint: function formatPrint() {
- return 'Печат';
+ return 'Tisk';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Зареждане, моля изчакайте';
+ return 'Čekejte, prosím';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u0440\u0435\u0434\u0430 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430");
+ return "".concat(pageNumber, " polo\u017Eek na str\xE1nku");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 \u0440\u0435\u0434\u043E\u0432\u0435 \u043E\u0442 ".concat(pageFrom, " \u0434\u043E ").concat(pageTo, " \u043E\u0442 ").concat(totalRows, " (\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u0438 \u043E\u0442 \u043E\u0431\u0449\u043E ").concat(totalNotFiltered, ")");
+ return "Zobrazena ".concat(pageFrom, ". - ").concat(pageTo, " . polo\u017Eka z celkov\xFDch ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 \u0440\u0435\u0434\u043E\u0432\u0435 \u043E\u0442 ".concat(pageFrom, " \u0434\u043E ").concat(pageTo, " \u043E\u0442 \u043E\u0431\u0449\u043E ").concat(totalRows);
+ return "Zobrazena ".concat(pageFrom, ". - ").concat(pageTo, " . polo\u017Eka z celkov\xFDch ").concat(totalRows);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'предишна страница';
+ return 'předchozí strana';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "\u0434\u043E \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 ".concat(page);
+ return "na stranu ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'следваща страница';
+ return 'další strana';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u0438 ".concat(totalRows, " \u0440\u0435\u0434\u0430");
+ return "Zobrazuji ".concat(totalRows, " \u0159\xE1dek");
},
formatClearSearch: function formatClearSearch() {
- return 'Изчистване на търсенето';
+ return 'Smazat hledání';
},
formatSearch: function formatSearch() {
- return 'Търсене';
+ return 'Vyhledávání';
},
formatNoMatches: function formatNoMatches() {
- return 'Не са намерени съвпадащи записи';
+ return 'Nenalezena žádná vyhovující položka';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Скриване/Показване на странициране';
+ return 'Skrýt/Zobrazit stránkování';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Показване на странициране';
+ return 'Zobrazit stránkování';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Скриване на странициране';
+ return 'Skrýt stránkování';
},
formatRefresh: function formatRefresh() {
- return 'Обновяване';
+ return 'Aktualizovat';
},
formatToggleOn: function formatToggleOn() {
- return 'Показване на изглед карта';
+ return 'Zobrazit karty';
},
formatToggleOff: function formatToggleOff() {
- return 'Скриване на изглед карта';
+ return 'Zobrazit tabulku';
},
formatColumns: function formatColumns() {
- return 'Колони';
+ return 'Sloupce';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Превключване на всички';
+ return 'Zobrazit/Skrýt vše';
},
formatFullscreen: function formatFullscreen() {
- return 'Цял екран';
+ return 'Zapnout/Vypnout fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Всички';
+ return 'Vše';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Автоматично обновяване';
+ return 'Automatické obnovení';
},
formatExport: function formatExport() {
- return 'Експорт на данни';
+ return 'Export dat';
},
formatJumpTo: function formatJumpTo() {
- return 'ОТИДИ';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Разширено търсене';
+ return 'Pokročilé hledání';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Затваряне';
+ return 'Zavřít';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Скрива/показва контроли';
+ return 'Skrýt/Zobrazit ovladače';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Скрива контроли';
+ return 'Skrýt ovladače';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Показва контроли';
+ return 'Zobrazit ovladače';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['bg-BG']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['cs-CZ']);
/**
- * Bootstrap Table English translation
- * Author: Zhixin Wen
+ * Bootstrap Table danish translation
+ * Author: Your Name Jan Borup Coyle, github@coyle.dk
*/
- $$2.fn.bootstrapTable.locales['en-US'] = $$2.fn.bootstrapTable.locales['en'] = {
+ $$2.fn.bootstrapTable.locales['da-DK'] = $$2.fn.bootstrapTable.locales['da'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -1870,16 +1885,16 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Loading, please wait';
+ return 'Indlæser, vent venligst';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " rows per page");
+ return "".concat(pageNumber, " poster pr side");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Viser ".concat(pageFrom, " til ").concat(pageTo, " af ").concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '', " (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows");
+ return "Viser ".concat(pageFrom, " til ").concat(pageTo, " af ").concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '');
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
return 'previous page';
@@ -1891,19 +1906,19 @@
return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Viser ".concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '');
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Ryd filtre';
},
formatSearch: function formatSearch() {
- return 'Search';
+ return 'Søg';
},
formatNoMatches: function formatNoMatches() {
- return 'No matching records found';
+ return 'Ingen poster fundet';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
+ return 'Skjul/vis nummerering';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
return 'Show pagination';
@@ -1912,7 +1927,7 @@
return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Refresh';
+ return 'Opdater';
},
formatToggleOn: function formatToggleOn() {
return 'Show card view';
@@ -1921,7 +1936,7 @@
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Columns';
+ return 'Kolonner';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
return 'Toggle all';
@@ -1930,13 +1945,13 @@
return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'All';
+ return 'Alle';
},
formatAutoRefresh: function formatAutoRefresh() {
return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Eksporter';
},
formatJumpTo: function formatJumpTo() {
return 'GO';
@@ -1957,342 +1972,377 @@
return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['en-US']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['da-DK']);
/**
- * Traducción de librería Bootstrap Table a Español (Chile)
- * @author Brian Álvarez Azócar
- * email brianalvarezazocar@gmail.com
- */
+ * Bootstrap Table German translation
+ * Author: Paul Mohr - Sopamo
+ */
- $$2.fn.bootstrapTable.locales['es-CL'] = {
+ $$2.fn.bootstrapTable.locales['de-DE'] = $$2.fn.bootstrapTable.locales['de'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copiar Filas';
+ return 'Zeilen kopieren';
},
formatPrint: function formatPrint() {
- return 'Imprimir';
+ return 'Drucken';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Cargando, espere por favor';
+ return 'Lade, bitte warten';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " filas por p\xE1gina");
+ return "".concat(pageNumber, " Zeilen pro Seite.");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de ").concat(totalNotFiltered, " filas totales)");
+ return "Zeige Zeile ".concat(pageFrom, " bis ").concat(pageTo, " von ").concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', " (Gefiltert von ").concat(totalNotFiltered, " Zeile").concat(totalNotFiltered > 1 ? 'n' : '', ")");
}
- return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
+ return "Zeige Zeile ".concat(pageFrom, " bis ").concat(pageTo, " von ").concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', ".");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'página anterior';
+ return 'Vorherige Seite';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "a la p\xE1gina ".concat(page);
+ return "Zu Seite ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'siguiente página';
+ return 'Nächste Seite';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Mostrando ".concat(totalRows, " filas");
+ return "Zeige ".concat(totalRows, " Zeile").concat(totalRows > 1 ? 'n' : '', ".");
},
formatClearSearch: function formatClearSearch() {
- return 'Limpiar búsqueda';
+ return 'Lösche Filter';
},
formatSearch: function formatSearch() {
- return 'Buscar';
+ return 'Suchen';
},
formatNoMatches: function formatNoMatches() {
- return 'No se encontraron registros';
+ return 'Keine passenden Ergebnisse gefunden';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Ocultar/Mostrar paginación';
+ return 'Verstecke/Zeige Nummerierung';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Mostrar paginación';
+ return 'Zeige Nummerierung';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Ocultar paginación';
+ return 'Verstecke Nummerierung';
},
formatRefresh: function formatRefresh() {
- return 'Refrescar';
+ return 'Neu laden';
},
formatToggleOn: function formatToggleOn() {
- return 'Mostrar vista de carta';
+ return 'Normale Ansicht';
},
formatToggleOff: function formatToggleOff() {
- return 'Ocultar vista de carta';
+ return 'Kartenansicht';
},
formatColumns: function formatColumns() {
- return 'Columnas';
+ return 'Spalten';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Cambiar todo';
+ return 'Alle umschalten';
},
formatFullscreen: function formatFullscreen() {
- return 'Pantalla completa';
+ return 'Vollbild';
},
formatAllRows: function formatAllRows() {
- return 'Todo';
+ return 'Alle';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Recargar';
+ return 'Automatisches Neuladen';
},
formatExport: function formatExport() {
- return 'Exportar datos';
+ return 'Datenexport';
},
formatJumpTo: function formatJumpTo() {
- return 'IR';
+ return 'Springen';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Búsqueda avanzada';
+ return 'Erweiterte Suche';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Cerrar';
+ return 'Schließen';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Ocultar/Mostrar controles';
+ return 'Verstecke/Zeige Filter';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Ocultar controles';
+ return 'Verstecke Filter';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Mostrar controles';
+ return 'Zeige Filter';
+ },
+ formatAddLevel: function formatAddLevel() {
+ return 'Ebene hinzufügen';
+ },
+ formatCancel: function formatCancel() {
+ return 'Abbrechen';
+ },
+ formatColumn: function formatColumn() {
+ return 'Spalte';
+ },
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Ebene entfernen';
+ },
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return 'Doppelte Einträge gefunden!';
+ },
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Bitte doppelte Spalten entfenen oder ändern';
+ },
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Mehrfachsortierung';
+ },
+ formatOrder: function formatOrder() {
+ return 'Reihenfolge';
+ },
+ formatSort: function formatSort() {
+ return 'Sortieren';
+ },
+ formatSortBy: function formatSortBy() {
+ return 'Sortieren nach';
+ },
+ formatThenBy: function formatThenBy() {
+ return 'anschließend';
+ },
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Aufsteigend',
+ desc: 'Absteigend'
+ };
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-CL']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['de-DE']);
/**
- * Bootstrap Table Spanish (Argentina) translation
- * Author: Felix Vera (felix.vera@gmail.com)
- * Edited by: DarkThinking (https://github.com/DarkThinking)
+ * Bootstrap Table Greek translation
+ * Author: giannisdallas
*/
- $$2.fn.bootstrapTable.locales['es-AR'] = {
+ $$2.fn.bootstrapTable.locales['el-GR'] = $$2.fn.bootstrapTable.locales['el'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copiar Filas';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'Imprimir';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Cargando, espere por favor';
+ return 'Φορτώνει, παρακαλώ περιμένετε';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " registros por p\xE1gina");
+ return "".concat(pageNumber, " \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u03B1\u03BD\u03AC \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Mostrando desde ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de ").concat(totalNotFiltered, " columnas totales)");
+ return "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD ".concat(pageFrom, " \u03C9\u03C2 \u03C4\u03B7\u03BD ").concat(pageTo, " \u03B1\u03C0\u03CC \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF ").concat(totalRows, " \u03C3\u03B5\u03B9\u03C1\u03CE\u03BD (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Mostrando desde ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
+ return "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD ".concat(pageFrom, " \u03C9\u03C2 \u03C4\u03B7\u03BD ").concat(pageTo, " \u03B1\u03C0\u03CC \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF ").concat(totalRows, " \u03C3\u03B5\u03B9\u03C1\u03CE\u03BD");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'página anterior';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "a la p\xE1gina ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'siguiente página';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Mostrando ".concat(totalRows, " columnas");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Limpiar búsqueda';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Buscar';
+ return 'Αναζητήστε';
},
formatNoMatches: function formatNoMatches() {
- return 'No se encontraron registros';
+ return 'Δεν βρέθηκαν αποτελέσματα';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Ocultar/Mostrar paginación';
+ return 'Hide/Show pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Mostrar paginación';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Ocultar paginación';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Recargar';
+ return 'Refresh';
},
formatToggleOn: function formatToggleOn() {
- return 'Mostrar vista de carta';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return 'Ocultar vista de carta';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Columnas';
+ return 'Columns';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Cambiar todo';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return 'Pantalla completa';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Todo';
+ return 'All';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Recargar';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Exportar datos';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'Ir';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Búsqueda avanzada';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Cerrar';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Ocultar/Mostrar controles';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Ocultar controles';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Mostrar controles';
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-AR']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['el-GR']);
/**
- * Bootstrap Table Spanish (Costa Rica) translation
- * Author: Dennis Hernández
- * Review: Jei (@jeijei4) (20/Oct/2022)
+ * Bootstrap Table English translation
+ * Author: Zhixin Wen
*/
- $$2.fn.bootstrapTable.locales['es-CR'] = {
+ $$2.fn.bootstrapTable.locales['en-US'] = $$2.fn.bootstrapTable.locales['en'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copiar filas';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'Imprimir';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Cargando, por favor espere';
+ return 'Loading, please wait';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " filas por p\xE1gina");
+ return "".concat(pageNumber, " rows per page");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de un total de ").concat(totalNotFiltered, " filas)");
+ return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
+ return "Showing ".concat(pageFrom, " to ").concat(pageTo, " of ").concat(totalRows, " rows");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'página anterior';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "ir a la p\xE1gina ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'página siguiente';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Mostrando ".concat(totalRows, " filas");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Limpiar búsqueda';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Buscar';
+ return 'Search';
},
formatNoMatches: function formatNoMatches() {
- return 'No se encontraron resultados';
+ return 'No matching records found';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Mostrar/ocultar paginación';
+ return 'Hide/Show pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Mostrar paginación';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Ocultar paginación';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Actualizar';
+ return 'Refresh';
},
formatToggleOn: function formatToggleOn() {
- return 'Mostrar vista en tarjetas';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return 'Ocultar vista en tarjetas';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Columnas';
+ return 'Columns';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Alternar todo';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return 'Pantalla completa';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Todas las filas';
+ return 'All';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Actualización automática';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Exportar';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'Ver';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Búsqueda avanzada';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Cerrar';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Mostrar/ocultar controles';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Ocultar controles';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Mostrar controles';
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-CR']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['en-US']);
/**
- * Bootstrap Table Spanish Spain translation
- * Author: Marc Pina
- * Update: @misteregis
+ * Bootstrap Table Spanish (Argentina) translation
+ * Author: Felix Vera (felix.vera@gmail.com)
+ * Edited by: DarkThinking (https://github.com/DarkThinking)
*/
- $$2.fn.bootstrapTable.locales['es-ES'] = $$2.fn.bootstrapTable.locales['es'] = {
+ $$2.fn.bootstrapTable.locales['es-AR'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copiar filas';
+ return 'Copiar Filas';
},
formatPrint: function formatPrint() {
return 'Imprimir';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Cargando, por favor espere';
+ return 'Cargando, espere por favor';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " resultados por p\xE1gina");
+ return "".concat(pageNumber, " registros por p\xE1gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
- var plural = totalRows > 1 ? 's' : '';
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Mostrando desde ".concat(pageFrom, " hasta ").concat(pageTo, " - En total ").concat(totalRows, " resultado").concat(plural, " (filtrado de un total de ").concat(totalNotFiltered, " fila").concat(plural, ")");
+ return "Mostrando desde ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de ").concat(totalNotFiltered, " columnas totales)");
}
- return "Mostrando desde ".concat(pageFrom, " hasta ").concat(pageTo, " - En total ").concat(totalRows, " resultado").concat(plural);
+ return "Mostrando desde ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
return 'página anterior';
@@ -2304,7 +2354,7 @@
return 'siguiente página';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Mostrando ".concat(totalRows, " fila").concat(totalRows > 1 ? 's' : '');
+ return "Mostrando ".concat(totalRows, " columnas");
},
formatClearSearch: function formatClearSearch() {
return 'Limpiar búsqueda';
@@ -2313,7 +2363,7 @@
return 'Buscar';
},
formatNoMatches: function formatNoMatches() {
- return 'No se encontraron resultados coincidentes';
+ return 'No se encontraron registros';
},
formatPaginationSwitch: function formatPaginationSwitch() {
return 'Ocultar/Mostrar paginación';
@@ -2343,16 +2393,16 @@
return 'Pantalla completa';
},
formatAllRows: function formatAllRows() {
- return 'Todos';
+ return 'Todo';
},
formatAutoRefresh: function formatAutoRefresh() {
return 'Auto Recargar';
},
formatExport: function formatExport() {
- return 'Exportar los datos';
+ return 'Exportar datos';
},
formatJumpTo: function formatJumpTo() {
- return 'IR';
+ return 'Ir';
},
formatAdvancedSearch: function formatAdvancedSearch() {
return 'Búsqueda avanzada';
@@ -2361,65 +2411,24 @@
return 'Cerrar';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Ocultar/Exibir controles';
+ return 'Ocultar/Mostrar controles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
return 'Ocultar controles';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
return 'Mostrar controles';
- },
- formatAddLevel: function formatAddLevel() {
- return 'Agregar nivel';
- },
- formatCancel: function formatCancel() {
- return 'Cancelar';
- },
- formatColumn: function formatColumn() {
- return 'Columna';
- },
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Eliminar nivel';
- },
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return '¡Se encontraron entradas duplicadas!';
- },
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Por favor, elimine o modifique las columnas duplicadas';
- },
- formatMultipleSort: function formatMultipleSort() {
- return 'Ordenación múltiple';
- },
- formatOrder: function formatOrder() {
- return 'Orden';
- },
- formatSort: function formatSort() {
- return 'Ordenar';
- },
- formatSortBy: function formatSortBy() {
- return 'Ordenar por';
- },
- formatThenBy: function formatThenBy() {
- return 'a continuación';
- },
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Ascendente',
- desc: 'Descendente'
- };
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-ES']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-AR']);
/**
- * Bootstrap Table Spanish (México) translation (Obtenido de traducción de Argentina)
- * Author: Felix Vera (felix.vera@gmail.com)
- * Copiado: Mauricio Vera (mauricioa.vera@gmail.com)
- * Revisión: J Manuel Corona (jmcg92@gmail.com) (13/Feb/2018).
- * Revisión: Ricardo González (rickygzz85@gmail.com) (20/Oct/2021)
+ * Traducción de librería Bootstrap Table a Español (Chile)
+ * @author Brian Álvarez Azócar
+ * email brianalvarezazocar@gmail.com
*/
- $$2.fn.bootstrapTable.locales['es-MX'] = {
+ $$2.fn.bootstrapTable.locales['es-CL'] = {
formatCopyRows: function formatCopyRows() {
return 'Copiar Filas';
},
@@ -2430,7 +2439,7 @@
return 'Cargando, espere por favor';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " resultados por p\xE1gina");
+ return "".concat(pageNumber, " filas por p\xE1gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
@@ -2442,10 +2451,10 @@
return 'página anterior';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "ir a la p\xE1gina ".concat(page);
+ return "a la p\xE1gina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'página siguiente';
+ return 'siguiente página';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
return "Mostrando ".concat(totalRows, " filas");
@@ -2457,10 +2466,10 @@
return 'Buscar';
},
formatNoMatches: function formatNoMatches() {
- return 'No se encontraron registros que coincidan';
+ return 'No se encontraron registros';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Mostrar/ocultar paginación';
+ return 'Ocultar/Mostrar paginación';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
return 'Mostrar paginación';
@@ -2469,19 +2478,19 @@
return 'Ocultar paginación';
},
formatRefresh: function formatRefresh() {
- return 'Actualizar';
+ return 'Refrescar';
},
formatToggleOn: function formatToggleOn() {
- return 'Mostrar vista';
+ return 'Mostrar vista de carta';
},
formatToggleOff: function formatToggleOff() {
- return 'Ocultar vista';
+ return 'Ocultar vista de carta';
},
formatColumns: function formatColumns() {
return 'Columnas';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Alternar todo';
+ return 'Cambiar todo';
},
formatFullscreen: function formatFullscreen() {
return 'Pantalla completa';
@@ -2490,7 +2499,7 @@
return 'Todo';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto actualizar';
+ return 'Auto Recargar';
},
formatExport: function formatExport() {
return 'Exportar datos';
@@ -2514,43 +2523,44 @@
return 'Mostrar controles';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-MX']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-CL']);
/**
- * Bootstrap Table Spanish (Nicaragua) translation
+ * Bootstrap Table Spanish (Costa Rica) translation
* Author: Dennis Hernández
+ * Review: Jei (@jeijei4) (20/Oct/2022)
*/
- $$2.fn.bootstrapTable.locales['es-NI'] = {
+ $$2.fn.bootstrapTable.locales['es-CR'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Copiar filas';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Imprimir';
},
formatLoadingMessage: function formatLoadingMessage() {
return 'Cargando, por favor espere';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " registros por p\xE1gina");
+ return "".concat(pageNumber, " filas por p\xE1gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de un total de ").concat(totalNotFiltered, " filas)");
}
- return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total");
+ return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'página anterior';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "ir a la p\xE1gina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'página siguiente';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Mostrando ".concat(totalRows, " filas");
},
formatClearSearch: function formatClearSearch() {
return 'Limpiar búsqueda';
@@ -2559,55 +2569,55 @@
return 'Buscar';
},
formatNoMatches: function formatNoMatches() {
- return 'No se encontraron registros';
+ return 'No se encontraron resultados';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
+ return 'Mostrar/ocultar paginación';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Mostrar paginación';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Ocultar paginación';
},
formatRefresh: function formatRefresh() {
- return 'Refrescar';
+ return 'Actualizar';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Mostrar vista en tarjetas';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Ocultar vista en tarjetas';
},
formatColumns: function formatColumns() {
return 'Columnas';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Alternar todo';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Pantalla completa';
},
formatAllRows: function formatAllRows() {
- return 'Todo';
+ return 'Todas las filas';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Actualización automática';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Exportar';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'Ver';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Búsqueda avanzada';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Cerrar';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Ocultar/Mostrar controles';
+ return 'Mostrar/ocultar controles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
return 'Ocultar controles';
@@ -2616,268 +2626,312 @@
return 'Mostrar controles';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-NI']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-CR']);
/**
- * Bootstrap Table Basque (Basque Country) translation
- * Author: Iker Ibarguren Berasaluze
+ * Bootstrap Table Spanish Spain translation
+ * Author: Marc Pina
+ * Update: @misteregis
*/
- $$2.fn.bootstrapTable.locales['eu-EU'] = $$2.fn.bootstrapTable.locales['eu'] = {
+ $$2.fn.bootstrapTable.locales['es-ES'] = $$2.fn.bootstrapTable.locales['es'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Copiar filas';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Imprimir';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Itxaron mesedez';
+ return 'Cargando, por favor espere';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " emaitza orriko.");
+ return "".concat(pageNumber, " resultados por p\xE1gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
+ var plural = totalRows > 1 ? 's' : '';
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "".concat(totalRows, " erregistroetatik ").concat(pageFrom, "etik ").concat(pageTo, "erakoak erakusten (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Mostrando desde ".concat(pageFrom, " hasta ").concat(pageTo, " - En total ").concat(totalRows, " resultado").concat(plural, " (filtrado de un total de ").concat(totalNotFiltered, " fila").concat(plural, ")");
}
- return "".concat(totalRows, " erregistroetatik ").concat(pageFrom, "etik ").concat(pageTo, "erakoak erakusten.");
+ return "Mostrando desde ".concat(pageFrom, " hasta ").concat(pageTo, " - En total ").concat(totalRows, " resultado").concat(plural);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'página anterior';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "a la p\xE1gina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'siguiente página';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Mostrando ".concat(totalRows, " fila").concat(totalRows > 1 ? 's' : '');
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Limpiar búsqueda';
},
formatSearch: function formatSearch() {
- return 'Bilatu';
+ return 'Buscar';
},
formatNoMatches: function formatNoMatches() {
- return 'Ez da emaitzarik aurkitu';
+ return 'No se encontraron resultados coincidentes';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Ezkutatu/Erakutsi orrikatzea';
+ return 'Ocultar/Mostrar paginación';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Mostrar paginación';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Ocultar paginación';
},
formatRefresh: function formatRefresh() {
- return 'Eguneratu';
+ return 'Recargar';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Mostrar vista de carta';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Ocultar vista de carta';
},
formatColumns: function formatColumns() {
- return 'Zutabeak';
+ return 'Columnas';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Cambiar todo';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Pantalla completa';
},
formatAllRows: function formatAllRows() {
- return 'Guztiak';
+ return 'Todos';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Auto Recargar';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Exportar los datos';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'IR';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Búsqueda avanzada';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Cerrar';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Ocultar/Exibir controles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Ocultar controles';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Mostrar controles';
+ },
+ formatAddLevel: function formatAddLevel() {
+ return 'Agregar nivel';
+ },
+ formatCancel: function formatCancel() {
+ return 'Cancelar';
+ },
+ formatColumn: function formatColumn() {
+ return 'Columna';
+ },
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Eliminar nivel';
+ },
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return '¡Se encontraron entradas duplicadas!';
+ },
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Por favor, elimine o modifique las columnas duplicadas';
+ },
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Ordenación múltiple';
+ },
+ formatOrder: function formatOrder() {
+ return 'Orden';
+ },
+ formatSort: function formatSort() {
+ return 'Ordenar';
+ },
+ formatSortBy: function formatSortBy() {
+ return 'Ordenar por';
+ },
+ formatThenBy: function formatThenBy() {
+ return 'a continuación';
+ },
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Ascendente',
+ desc: 'Descendente'
+ };
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['eu-EU']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-ES']);
/**
- * Bootstrap Table Estonian translation
- * Author: kristjan@logist.it>
+ * Bootstrap Table Spanish (México) translation (Obtenido de traducción de Argentina)
+ * Author: Felix Vera (felix.vera@gmail.com)
+ * Copiado: Mauricio Vera (mauricioa.vera@gmail.com)
+ * Revisión: J Manuel Corona (jmcg92@gmail.com) (13/Feb/2018).
+ * Revisión: Ricardo González (rickygzz85@gmail.com) (20/Oct/2021)
*/
- $$2.fn.bootstrapTable.locales['et-EE'] = $$2.fn.bootstrapTable.locales['et'] = {
+ $$2.fn.bootstrapTable.locales['es-MX'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Copiar Filas';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Imprimir';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Päring käib, palun oota';
+ return 'Cargando, espere por favor';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " rida lehe kohta");
+ return "".concat(pageNumber, " resultados por p\xE1gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "N\xE4itan tulemusi ".concat(pageFrom, " kuni ").concat(pageTo, " - kokku ").concat(totalRows, " tulemust (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas (filtrado de ").concat(totalNotFiltered, " filas totales)");
}
- return "N\xE4itan tulemusi ".concat(pageFrom, " kuni ").concat(pageTo, " - kokku ").concat(totalRows, " tulemust");
+ return "Mostrando ".concat(pageFrom, " a ").concat(pageTo, " de ").concat(totalRows, " filas");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'página anterior';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "ir a la p\xE1gina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'página siguiente';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Mostrando ".concat(totalRows, " filas");
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Limpiar búsqueda';
},
formatSearch: function formatSearch() {
- return 'Otsi';
+ return 'Buscar';
},
formatNoMatches: function formatNoMatches() {
- return 'Päringu tingimustele ei vastanud ühtegi tulemust';
+ return 'No se encontraron registros que coincidan';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Näita/Peida lehtedeks jagamine';
+ return 'Mostrar/ocultar paginación';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Mostrar paginación';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Ocultar paginación';
},
formatRefresh: function formatRefresh() {
- return 'Värskenda';
+ return 'Actualizar';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Mostrar vista';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Ocultar vista';
},
formatColumns: function formatColumns() {
- return 'Veerud';
+ return 'Columnas';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Alternar todo';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Pantalla completa';
},
formatAllRows: function formatAllRows() {
- return 'Kõik';
+ return 'Todo';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Auto actualizar';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Exportar datos';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'IR';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Búsqueda avanzada';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Cerrar';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Ocultar/Mostrar controles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Ocultar controles';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Mostrar controles';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['et-EE']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-MX']);
/**
- * Bootstrap Table Persian translation
- * Author: MJ Vakili
+ * Bootstrap Table Spanish (Nicaragua) translation
+ * Author: Dennis Hernández
*/
- $$2.fn.bootstrapTable.locales['fa-IR'] = $$2.fn.bootstrapTable.locales['fa'] = {
+ $$2.fn.bootstrapTable.locales['es-NI'] = {
formatCopyRows: function formatCopyRows() {
- return 'کپی ردیف ها';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'پرینت';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'در حال بارگذاری, لطفا صبر کنید';
+ return 'Cargando, por favor espere';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u0631\u06A9\u0648\u0631\u062F \u062F\u0631 \u0635\u0641\u062D\u0647");
+ return "".concat(pageNumber, " registros por p\xE1gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u0646\u0645\u0627\u06CC\u0634 ".concat(pageFrom, " \u062A\u0627 ").concat(pageTo, " \u0627\u0632 ").concat(totalRows, " \u0631\u062F\u06CC\u0641 (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "\u0646\u0645\u0627\u06CC\u0634 ".concat(pageFrom, " \u062A\u0627 ").concat(pageTo, " \u0627\u0632 ").concat(totalRows, " \u0631\u062F\u06CC\u0641");
+ return "Mostrando de ".concat(pageFrom, " a ").concat(pageTo, " registros de ").concat(totalRows, " registros en total");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'صفحه قبلی';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "\u0628\u0647 \u0635\u0641\u062D\u0647 ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'صفحه بعدی';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "\u0646\u0645\u0627\u06CC\u0634 ".concat(totalRows, " \u0633\u0637\u0631\u0647\u0627");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'پاک کردن جستجو';
+ return 'Limpiar búsqueda';
},
formatSearch: function formatSearch() {
- return 'جستجو';
+ return 'Buscar';
},
formatNoMatches: function formatNoMatches() {
- return 'رکوردی یافت نشد.';
+ return 'No se encontraron registros';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'نمایش/مخفی صفحه بندی';
+ return 'Hide/Show pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'نمایش صفحه بندی';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'پنهان کردن صفحه بندی';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'به روز رسانی';
+ return 'Refrescar';
},
formatToggleOn: function formatToggleOn() {
return 'Show card view';
@@ -2886,50 +2940,50 @@
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'سطر ها';
+ return 'Columnas';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'تغییر وضعیت همه';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return 'تمام صفحه';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'همه';
+ return 'Todo';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'رفرش اتوماتیک';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'خروجی دیتا';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'برو';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'جستجوی پیشرفته';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'بستن';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'پنهان/نمایش دادن کنترل ها';
+ return 'Ocultar/Mostrar controles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'پنهان کردن کنترل ها';
+ return 'Ocultar controles';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'نمایش کنترل ها';
+ return 'Mostrar controles';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fa-IR']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-NI']);
/**
- * Bootstrap Table Finnish translations
- * Author: Minna Lehtomäki
+ * Bootstrap Table Spanish (España) translation
+ * Author: Antonio Pérez
*/
- $$2.fn.bootstrapTable.locales['fi-FI'] = $$2.fn.bootstrapTable.locales['fi'] = {
+ $$2.fn.bootstrapTable.locales['es-SP'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -2937,16 +2991,16 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Ladataan, ole hyvä ja odota';
+ return 'Cargando, por favor espera';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " rivi\xE4 sivulla");
+ return "".concat(pageNumber, " registros por página.");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "N\xE4ytet\xE4\xE4n rivit ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "".concat(pageFrom, " - ").concat(pageTo, " de ").concat(totalRows, " registros (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "N\xE4ytet\xE4\xE4n rivit ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows);
+ return "".concat(pageFrom, " - ").concat(pageTo, " de ").concat(totalRows, " registros.");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
return 'previous page';
@@ -2961,16 +3015,16 @@
return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Poista suodattimet';
+ return 'Limpiar búsqueda';
},
formatSearch: function formatSearch() {
- return 'Hae';
+ return 'Buscar';
},
formatNoMatches: function formatNoMatches() {
- return 'Hakuehtoja vastaavia tuloksia ei löytynyt';
+ return 'No se han encontrado registros.';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Näytä/Piilota sivutus';
+ return 'Hide/Show pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
return 'Show pagination';
@@ -2979,7 +3033,7 @@
return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Päivitä';
+ return 'Actualizar';
},
formatToggleOn: function formatToggleOn() {
return 'Show card view';
@@ -2988,7 +3042,7 @@
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Sarakkeet';
+ return 'Columnas';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
return 'Toggle all';
@@ -2997,13 +3051,13 @@
return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Kaikki';
+ return 'Todo';
},
formatAutoRefresh: function formatAutoRefresh() {
return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Vie tiedot';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
return 'GO';
@@ -3015,326 +3069,432 @@
return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Ocultar/Mostrar controles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Ocultar controles';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Mostrar controles';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fi-FI']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-SP']);
/**
- * Bootstrap Table French (Belgium) translation
- * Author: Julien Bisconti (julien.bisconti@gmail.com)
- * Nevets82
+ * Bootstrap Table Estonian translation
+ * Author: kristjan@logist.it>
*/
- $$2.fn.bootstrapTable.locales['fr-BE'] = {
+ $$2.fn.bootstrapTable.locales['et-EE'] = $$2.fn.bootstrapTable.locales['et'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copier les lignes';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'Imprimer';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Chargement en cours';
+ return 'Päring käib, palun oota';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " lignes par page");
+ return "".concat(pageNumber, " rida lehe kohta");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9es \xE0 partir de ").concat(totalNotFiltered, " lignes)");
+ return "N\xE4itan tulemusi ".concat(pageFrom, " kuni ").concat(pageTo, " - kokku ").concat(totalRows, " tulemust (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
+ return "N\xE4itan tulemusi ".concat(pageFrom, " kuni ").concat(pageTo, " - kokku ").concat(totalRows, " tulemust");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'page précédente';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "vers la page ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'page suivante';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Affichage de ".concat(totalRows, " lignes");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Effacer la recherche';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Rechercher';
+ return 'Otsi';
},
formatNoMatches: function formatNoMatches() {
- return 'Aucun résultat';
+ return 'Päringu tingimustele ei vastanud ühtegi tulemust';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Masquer/Afficher la pagination';
+ return 'Näita/Peida lehtedeks jagamine';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Afficher la pagination';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Masquer la pagination';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Actualiser';
+ return 'Värskenda';
},
formatToggleOn: function formatToggleOn() {
- return 'Afficher la vue en cartes';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return 'Cacher la vue en cartes';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Colonnes';
+ return 'Veerud';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Tout afficher';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return 'Plein écran';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Tout';
+ return 'Kõik';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Actualiser automatiquement';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Exporter';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'Aller à';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Recherche avancée';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Fermer';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Masquer/Afficher les contrôles';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Masquer les contrôles';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Afficher les contrôles';
- },
- formatToggleCustomViewOn: function formatToggleCustomViewOn() {
- return 'Afficher la vue personnalisée';
+ return 'Show controls';
+ }
+ };
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['et-EE']);
+
+ /**
+ * Bootstrap Table Basque (Basque Country) translation
+ * Author: Iker Ibarguren Berasaluze
+ */
+
+ $$2.fn.bootstrapTable.locales['eu-EU'] = $$2.fn.bootstrapTable.locales['eu'] = {
+ formatCopyRows: function formatCopyRows() {
+ return 'Copy Rows';
},
- formatToggleCustomViewOff: function formatToggleCustomViewOff() {
- return 'Cacher la vue personnalisée';
+ formatPrint: function formatPrint() {
+ return 'Print';
},
- formatClearFilters: function formatClearFilters() {
- return 'Retirer les filtres';
+ formatLoadingMessage: function formatLoadingMessage() {
+ return 'Itxaron mesedez';
},
- formatAddLevel: function formatAddLevel() {
- return 'Ajouter un niveau';
+ formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
+ return "".concat(pageNumber, " emaitza orriko.");
},
- formatCancel: function formatCancel() {
- return 'Annuler';
+ formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
+ if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
+ return "".concat(totalRows, " erregistroetatik ").concat(pageFrom, "etik ").concat(pageTo, "erakoak erakusten (filtered from ").concat(totalNotFiltered, " total rows)");
+ }
+ return "".concat(totalRows, " erregistroetatik ").concat(pageFrom, "etik ").concat(pageTo, "erakoak erakusten.");
},
- formatColumn: function formatColumn() {
- return 'Colonne';
+ formatSRPaginationPreText: function formatSRPaginationPreText() {
+ return 'previous page';
},
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Supprimer un niveau';
+ formatSRPaginationPageText: function formatSRPaginationPageText(page) {
+ return "to page ".concat(page);
},
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Des entrées en double ont été trouvées !';
+ formatSRPaginationNextText: function formatSRPaginationNextText() {
+ return 'next page';
},
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Veuillez supprimer ou modifier les entrées en double';
+ formatDetailPagination: function formatDetailPagination(totalRows) {
+ return "Showing ".concat(totalRows, " rows");
},
- formatMultipleSort: function formatMultipleSort() {
- return 'Tri multiple';
+ formatClearSearch: function formatClearSearch() {
+ return 'Clear Search';
},
- formatOrder: function formatOrder() {
- return 'Ordre';
+ formatSearch: function formatSearch() {
+ return 'Bilatu';
},
- formatSort: function formatSort() {
- return 'Trier';
+ formatNoMatches: function formatNoMatches() {
+ return 'Ez da emaitzarik aurkitu';
},
- formatSortBy: function formatSortBy() {
- return 'Trier par';
+ formatPaginationSwitch: function formatPaginationSwitch() {
+ return 'Ezkutatu/Erakutsi orrikatzea';
},
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Ascendant',
- desc: 'Descendant'
- };
+ formatPaginationSwitchDown: function formatPaginationSwitchDown() {
+ return 'Show pagination';
},
- formatThenBy: function formatThenBy() {
- return 'Puis par';
+ formatPaginationSwitchUp: function formatPaginationSwitchUp() {
+ return 'Hide pagination';
+ },
+ formatRefresh: function formatRefresh() {
+ return 'Eguneratu';
+ },
+ formatToggleOn: function formatToggleOn() {
+ return 'Show card view';
+ },
+ formatToggleOff: function formatToggleOff() {
+ return 'Hide card view';
+ },
+ formatColumns: function formatColumns() {
+ return 'Zutabeak';
+ },
+ formatColumnsToggleAll: function formatColumnsToggleAll() {
+ return 'Toggle all';
+ },
+ formatFullscreen: function formatFullscreen() {
+ return 'Fullscreen';
+ },
+ formatAllRows: function formatAllRows() {
+ return 'Guztiak';
+ },
+ formatAutoRefresh: function formatAutoRefresh() {
+ return 'Auto Refresh';
+ },
+ formatExport: function formatExport() {
+ return 'Export data';
+ },
+ formatJumpTo: function formatJumpTo() {
+ return 'GO';
+ },
+ formatAdvancedSearch: function formatAdvancedSearch() {
+ return 'Advanced search';
+ },
+ formatAdvancedCloseButton: function formatAdvancedCloseButton() {
+ return 'Close';
+ },
+ formatFilterControlSwitch: function formatFilterControlSwitch() {
+ return 'Hide/Show controls';
+ },
+ formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
+ return 'Hide controls';
+ },
+ formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-BE']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['eu-EU']);
/**
- * Bootstrap Table French (Suisse) translation
- * Author: Nevets82
- */
+ * Bootstrap Table Persian translation
+ * Author: MJ Vakili
+ */
- $$2.fn.bootstrapTable.locales['fr-CH'] = {
+ $$2.fn.bootstrapTable.locales['fa-IR'] = $$2.fn.bootstrapTable.locales['fa'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copier les lignes';
+ return 'کپی ردیف ها';
},
formatPrint: function formatPrint() {
- return 'Imprimer';
+ return 'پرینت';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Chargement en cours';
+ return 'در حال بارگذاری, لطفا صبر کنید';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " lignes par page");
+ return "".concat(pageNumber, " \u0631\u06A9\u0648\u0631\u062F \u062F\u0631 \u0635\u0641\u062D\u0647");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9es \xE0 partir de ").concat(totalNotFiltered, " lignes)");
+ return "\u0646\u0645\u0627\u06CC\u0634 ".concat(pageFrom, " \u062A\u0627 ").concat(pageTo, " \u0627\u0632 ").concat(totalRows, " \u0631\u062F\u06CC\u0641 (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
+ return "\u0646\u0645\u0627\u06CC\u0634 ".concat(pageFrom, " \u062A\u0627 ").concat(pageTo, " \u0627\u0632 ").concat(totalRows, " \u0631\u062F\u06CC\u0641");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'page précédente';
+ return 'صفحه قبلی';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "vers la page ".concat(page);
+ return "\u0628\u0647 \u0635\u0641\u062D\u0647 ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'page suivante';
+ return 'صفحه بعدی';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Affichage de ".concat(totalRows, " lignes");
+ return "\u0646\u0645\u0627\u06CC\u0634 ".concat(totalRows, " \u0633\u0637\u0631\u0647\u0627");
},
formatClearSearch: function formatClearSearch() {
- return 'Effacer la recherche';
+ return 'پاک کردن جستجو';
},
formatSearch: function formatSearch() {
- return 'Rechercher';
+ return 'جستجو';
},
formatNoMatches: function formatNoMatches() {
- return 'Aucun résultat';
+ return 'رکوردی یافت نشد.';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Masquer/Afficher la pagination';
+ return 'نمایش/مخفی صفحه بندی';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Afficher la pagination';
+ return 'نمایش صفحه بندی';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Masquer la pagination';
+ return 'پنهان کردن صفحه بندی';
},
formatRefresh: function formatRefresh() {
- return 'Actualiser';
+ return 'به روز رسانی';
},
formatToggleOn: function formatToggleOn() {
- return 'Afficher la vue en cartes';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return 'Cacher la vue en cartes';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Colonnes';
+ return 'سطر ها';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Tout afficher';
+ return 'تغییر وضعیت همه';
},
formatFullscreen: function formatFullscreen() {
- return 'Plein écran';
+ return 'تمام صفحه';
},
formatAllRows: function formatAllRows() {
- return 'Tout';
+ return 'همه';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Actualiser automatiquement';
+ return 'رفرش اتوماتیک';
},
formatExport: function formatExport() {
- return 'Exporter';
+ return 'خروجی دیتا';
},
formatJumpTo: function formatJumpTo() {
- return 'Aller à';
+ return 'برو';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Recherche avancée';
+ return 'جستجوی پیشرفته';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Fermer';
+ return 'بستن';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Masquer/Afficher les contrôles';
+ return 'پنهان/نمایش دادن کنترل ها';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Masquer les contrôles';
+ return 'پنهان کردن کنترل ها';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Afficher les contrôles';
+ return 'نمایش کنترل ها';
+ }
+ };
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fa-IR']);
+
+ /**
+ * Bootstrap Table Finnish translations
+ * Author: Minna Lehtomäki
+ */
+
+ $$2.fn.bootstrapTable.locales['fi-FI'] = $$2.fn.bootstrapTable.locales['fi'] = {
+ formatCopyRows: function formatCopyRows() {
+ return 'Copy Rows';
},
- formatToggleCustomViewOn: function formatToggleCustomViewOn() {
- return 'Afficher la vue personnalisée';
+ formatPrint: function formatPrint() {
+ return 'Print';
},
- formatToggleCustomViewOff: function formatToggleCustomViewOff() {
- return 'Cacher la vue personnalisée';
+ formatLoadingMessage: function formatLoadingMessage() {
+ return 'Ladataan, ole hyvä ja odota';
},
- formatClearFilters: function formatClearFilters() {
- return 'Retirer les filtres';
+ formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
+ return "".concat(pageNumber, " rivi\xE4 sivulla");
},
- formatAddLevel: function formatAddLevel() {
- return 'Ajouter un niveau';
+ formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
+ if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
+ return "N\xE4ytet\xE4\xE4n rivit ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
+ }
+ return "N\xE4ytet\xE4\xE4n rivit ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows);
},
- formatCancel: function formatCancel() {
- return 'Annuler';
+ formatSRPaginationPreText: function formatSRPaginationPreText() {
+ return 'previous page';
},
- formatColumn: function formatColumn() {
- return 'Colonne';
+ formatSRPaginationPageText: function formatSRPaginationPageText(page) {
+ return "to page ".concat(page);
},
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Supprimer un niveau';
+ formatSRPaginationNextText: function formatSRPaginationNextText() {
+ return 'next page';
},
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Des entrées en double ont été trouvées !';
+ formatDetailPagination: function formatDetailPagination(totalRows) {
+ return "Showing ".concat(totalRows, " rows");
},
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Veuillez supprimer ou modifier les entrées en double';
+ formatClearSearch: function formatClearSearch() {
+ return 'Poista suodattimet';
},
- formatMultipleSort: function formatMultipleSort() {
- return 'Tri multiple';
+ formatSearch: function formatSearch() {
+ return 'Hae';
},
- formatOrder: function formatOrder() {
- return 'Ordre';
+ formatNoMatches: function formatNoMatches() {
+ return 'Hakuehtoja vastaavia tuloksia ei löytynyt';
},
- formatSort: function formatSort() {
- return 'Trier';
+ formatPaginationSwitch: function formatPaginationSwitch() {
+ return 'Näytä/Piilota sivutus';
},
- formatSortBy: function formatSortBy() {
- return 'Trier par';
+ formatPaginationSwitchDown: function formatPaginationSwitchDown() {
+ return 'Show pagination';
},
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Ascendant',
- desc: 'Descendant'
- };
+ formatPaginationSwitchUp: function formatPaginationSwitchUp() {
+ return 'Hide pagination';
},
- formatThenBy: function formatThenBy() {
- return 'Puis par';
+ formatRefresh: function formatRefresh() {
+ return 'Päivitä';
+ },
+ formatToggleOn: function formatToggleOn() {
+ return 'Show card view';
+ },
+ formatToggleOff: function formatToggleOff() {
+ return 'Hide card view';
+ },
+ formatColumns: function formatColumns() {
+ return 'Sarakkeet';
+ },
+ formatColumnsToggleAll: function formatColumnsToggleAll() {
+ return 'Toggle all';
+ },
+ formatFullscreen: function formatFullscreen() {
+ return 'Fullscreen';
+ },
+ formatAllRows: function formatAllRows() {
+ return 'Kaikki';
+ },
+ formatAutoRefresh: function formatAutoRefresh() {
+ return 'Auto Refresh';
+ },
+ formatExport: function formatExport() {
+ return 'Vie tiedot';
+ },
+ formatJumpTo: function formatJumpTo() {
+ return 'GO';
+ },
+ formatAdvancedSearch: function formatAdvancedSearch() {
+ return 'Advanced search';
+ },
+ formatAdvancedCloseButton: function formatAdvancedCloseButton() {
+ return 'Close';
+ },
+ formatFilterControlSwitch: function formatFilterControlSwitch() {
+ return 'Hide/Show controls';
+ },
+ formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
+ return 'Hide controls';
+ },
+ formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-CH']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fi-FI']);
/**
- * Bootstrap Table French (France) translation
- * Author: Dennis Hernández
- * Tidalf (https://github.com/TidalfFR)
+ * Bootstrap Table French (Belgium) translation
+ * Author: Julien Bisconti (julien.bisconti@gmail.com)
* Nevets82
*/
- $$2.fn.bootstrapTable.locales['fr-FR'] = $$2.fn.bootstrapTable.locales['fr'] = {
+ $$2.fn.bootstrapTable.locales['fr-BE'] = {
formatCopyRows: function formatCopyRows() {
return 'Copier les lignes';
},
@@ -3446,148 +3606,45 @@
formatColumn: function formatColumn() {
return 'Colonne';
},
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Supprimer un niveau';
- },
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Des entrées en double ont été trouvées !';
- },
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Veuillez supprimer ou modifier les entrées en double';
- },
- formatMultipleSort: function formatMultipleSort() {
- return 'Tri multiple';
- },
- formatOrder: function formatOrder() {
- return 'Ordre';
- },
- formatSort: function formatSort() {
- return 'Trier';
- },
- formatSortBy: function formatSortBy() {
- return 'Trier par';
- },
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Ascendant',
- desc: 'Descendant'
- };
- },
- formatThenBy: function formatThenBy() {
- return 'Puis par';
- }
- };
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-FR']);
-
- /**
- * Bootstrap Table Hebrew translation
- * Author: legshooter
- */
-
- $$2.fn.bootstrapTable.locales['he-IL'] = $$2.fn.bootstrapTable.locales['he'] = {
- formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
- },
- formatPrint: function formatPrint() {
- return 'Print';
- },
- formatLoadingMessage: function formatLoadingMessage() {
- return 'טוען, נא להמתין';
- },
- formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u05E9\u05D5\u05E8\u05D5\u05EA \u05D1\u05E2\u05DE\u05D5\u05D3");
- },
- formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u05DE\u05E6\u05D9\u05D2 ".concat(pageFrom, " \u05E2\u05D3 ").concat(pageTo, " \u05DE-").concat(totalRows, "\u05E9\u05D5\u05E8\u05D5\u05EA").concat(totalNotFiltered, " total rows)");
- }
- return "\u05DE\u05E6\u05D9\u05D2 ".concat(pageFrom, " \u05E2\u05D3 ").concat(pageTo, " \u05DE-").concat(totalRows, " \u05E9\u05D5\u05E8\u05D5\u05EA");
- },
- formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
- },
- formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
- },
- formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
- },
- formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
- },
- formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
- },
- formatSearch: function formatSearch() {
- return 'חיפוש';
- },
- formatNoMatches: function formatNoMatches() {
- return 'לא נמצאו רשומות תואמות';
- },
- formatPaginationSwitch: function formatPaginationSwitch() {
- return 'הסתר/הצג מספור דפים';
- },
- formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
- },
- formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
- },
- formatRefresh: function formatRefresh() {
- return 'רענן';
- },
- formatToggleOn: function formatToggleOn() {
- return 'Show card view';
- },
- formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
- },
- formatColumns: function formatColumns() {
- return 'עמודות';
- },
- formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
- },
- formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
- },
- formatAllRows: function formatAllRows() {
- return 'הכל';
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Supprimer un niveau';
},
- formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return 'Des entrées en double ont été trouvées !';
},
- formatExport: function formatExport() {
- return 'Export data';
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Veuillez supprimer ou modifier les entrées en double';
},
- formatJumpTo: function formatJumpTo() {
- return 'GO';
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Tri multiple';
},
- formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ formatOrder: function formatOrder() {
+ return 'Ordre';
},
- formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ formatSort: function formatSort() {
+ return 'Trier';
},
- formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ formatSortBy: function formatSortBy() {
+ return 'Trier par';
},
- formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Ascendant',
+ desc: 'Descendant'
+ };
},
- formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ formatThenBy: function formatThenBy() {
+ return 'Puis par';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['he-IL']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-BE']);
/**
- * Bootstrap Table French (Luxembourg) translation
+ * Bootstrap Table French (Suisse) translation
* Author: Nevets82
- * Editor: David Morais Ferreira (https://github.com/DavidMoraisFerreira/)
- */
+ */
- $$2.fn.bootstrapTable.locales['fr-LU'] = {
+ $$2.fn.bootstrapTable.locales['fr-CH'] = {
formatCopyRows: function formatCopyRows() {
return 'Copier les lignes';
},
@@ -3730,321 +3787,317 @@
return 'Puis par';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-LU']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-CH']);
/**
- * Bootstrap Table Spanish (España) translation
- * Author: Antonio Pérez
+ * Bootstrap Table French (France) translation
+ * Author: Dennis Hernández
+ * Tidalf (https://github.com/TidalfFR)
+ * Nevets82
*/
- $$2.fn.bootstrapTable.locales['es-SP'] = {
+ $$2.fn.bootstrapTable.locales['fr-FR'] = $$2.fn.bootstrapTable.locales['fr'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Copier les lignes';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Imprimer';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Cargando, por favor espera';
+ return 'Chargement en cours';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " registros por página.");
+ return "".concat(pageNumber, " lignes par page");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "".concat(pageFrom, " - ").concat(pageTo, " de ").concat(totalRows, " registros (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9es \xE0 partir de ").concat(totalNotFiltered, " lignes)");
}
- return "".concat(pageFrom, " - ").concat(pageTo, " de ").concat(totalRows, " registros.");
+ return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'page précédente';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "vers la page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'page suivante';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Affichage de ".concat(totalRows, " lignes");
},
formatClearSearch: function formatClearSearch() {
- return 'Limpiar búsqueda';
+ return 'Effacer la recherche';
},
formatSearch: function formatSearch() {
- return 'Buscar';
+ return 'Rechercher';
},
formatNoMatches: function formatNoMatches() {
- return 'No se han encontrado registros.';
+ return 'Aucun résultat';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
+ return 'Masquer/Afficher la pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Afficher la pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Masquer la pagination';
},
formatRefresh: function formatRefresh() {
- return 'Actualizar';
+ return 'Actualiser';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Afficher la vue en cartes';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Cacher la vue en cartes';
},
formatColumns: function formatColumns() {
- return 'Columnas';
+ return 'Colonnes';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Tout afficher';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Plein écran';
},
formatAllRows: function formatAllRows() {
- return 'Todo';
+ return 'Tout';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Actualiser automatiquement';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Exporter';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'Aller à';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Recherche avancée';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Fermer';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Ocultar/Mostrar controles';
+ return 'Masquer/Afficher les contrôles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Ocultar controles';
+ return 'Masquer les contrôles';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Mostrar controles';
- }
- };
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['es-SP']);
-
- /**
- * Bootstrap Table Croatian translation
- * Author: Petra Štrbenac (petra.strbenac@gmail.com)
- * Author: Petra Štrbenac (petra.strbenac@gmail.com)
- */
-
- $$2.fn.bootstrapTable.locales['hr-HR'] = $$2.fn.bootstrapTable.locales['hr'] = {
- formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
- },
- formatPrint: function formatPrint() {
- return 'Print';
- },
- formatLoadingMessage: function formatLoadingMessage() {
- return 'Molimo pričekajte';
- },
- formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " broj zapisa po stranici");
- },
- formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Prikazujem ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja zapisa ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
- }
- return "Prikazujem ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja zapisa ").concat(totalRows);
- },
- formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
- },
- formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
- },
- formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
- },
- formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
- },
- formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
- },
- formatSearch: function formatSearch() {
- return 'Pretraži';
- },
- formatNoMatches: function formatNoMatches() {
- return 'Nije pronađen niti jedan zapis';
- },
- formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Prikaži/sakrij stranice';
- },
- formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
- },
- formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Afficher les contrôles';
},
- formatRefresh: function formatRefresh() {
- return 'Osvježi';
+ formatToggleCustomViewOn: function formatToggleCustomViewOn() {
+ return 'Afficher la vue personnalisée';
},
- formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ formatToggleCustomViewOff: function formatToggleCustomViewOff() {
+ return 'Cacher la vue personnalisée';
},
- formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ formatClearFilters: function formatClearFilters() {
+ return 'Retirer les filtres';
},
- formatColumns: function formatColumns() {
- return 'Kolone';
+ formatAddLevel: function formatAddLevel() {
+ return 'Ajouter un niveau';
},
- formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ formatCancel: function formatCancel() {
+ return 'Annuler';
},
- formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ formatColumn: function formatColumn() {
+ return 'Colonne';
},
- formatAllRows: function formatAllRows() {
- return 'Sve';
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Supprimer un niveau';
},
- formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return 'Des entrées en double ont été trouvées !';
},
- formatExport: function formatExport() {
- return 'Export data';
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Veuillez supprimer ou modifier les entrées en double';
},
- formatJumpTo: function formatJumpTo() {
- return 'GO';
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Tri multiple';
},
- formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ formatOrder: function formatOrder() {
+ return 'Ordre';
},
- formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ formatSort: function formatSort() {
+ return 'Trier';
},
- formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ formatSortBy: function formatSortBy() {
+ return 'Trier par';
},
- formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Ascendant',
+ desc: 'Descendant'
+ };
},
- formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ formatThenBy: function formatThenBy() {
+ return 'Puis par';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hr-HR']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-FR']);
/**
- * Bootstrap Table Hindi translation
- * Author: Saurabh Sharma
+ * Bootstrap Table French (Luxembourg) translation
+ * Author: Nevets82
+ * Editor: David Morais Ferreira (https://github.com/DavidMoraisFerreira/)
*/
- $$2.fn.bootstrapTable.locales['hi-IN'] = {
+ $$2.fn.bootstrapTable.locales['fr-LU'] = {
formatCopyRows: function formatCopyRows() {
- return 'पंक्तियों की कॉपी करें';
+ return 'Copier les lignes';
},
formatPrint: function formatPrint() {
- return 'प्रिंट';
+ return 'Imprimer';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'लोड हो रहा है कृपया प्रतीक्षा करें';
+ return 'Chargement en cours';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u092A\u094D\u0930\u0924\u093F \u092A\u0943\u0937\u094D\u0920 \u092A\u0902\u0915\u094D\u0924\u093F\u092F\u093E\u0901");
+ return "".concat(pageNumber, " lignes par page");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "".concat(pageFrom, " - ").concat(pageTo, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E ").concat(totalRows, " \u092E\u0947\u0902 \u0938\u0947 ( ").concat(totalNotFiltered, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E)");
+ return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes (filtr\xE9es \xE0 partir de ").concat(totalNotFiltered, " lignes)");
}
- return "".concat(pageFrom, " - ").concat(pageTo, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E ").concat(totalRows, " \u092E\u0947\u0902 \u0938\u0947");
+ return "Affichage de ".concat(pageFrom, " \xE0 ").concat(pageTo, " sur ").concat(totalRows, " lignes");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'पिछला पृष्ठ';
+ return 'page précédente';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "".concat(page, " \u092A\u0943\u0937\u094D\u0920 \u092A\u0930");
+ return "vers la page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'अगला पृष्ठ';
+ return 'page suivante';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "".concat(totalRows, " \u092A\u0902\u0915\u094D\u0924\u093F\u092F\u093E\u0902");
+ return "Affichage de ".concat(totalRows, " lignes");
},
formatClearSearch: function formatClearSearch() {
- return 'सर्च क्लिअर करें';
+ return 'Effacer la recherche';
},
formatSearch: function formatSearch() {
- return 'सर्च';
+ return 'Rechercher';
},
formatNoMatches: function formatNoMatches() {
- return 'मेल खाते रिकॉर्ड नही मिले';
+ return 'Aucun résultat';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'छुपाओ/दिखाओ पृष्ठ संख्या';
+ return 'Masquer/Afficher la pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'दिखाओ पृष्ठ संख्या';
+ return 'Afficher la pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'छुपाओ पृष्ठ संख्या';
+ return 'Masquer la pagination';
},
formatRefresh: function formatRefresh() {
- return 'रिफ्रेश';
+ return 'Actualiser';
},
formatToggleOn: function formatToggleOn() {
- return 'कार्ड दृश्य दिखाएं';
+ return 'Afficher la vue en cartes';
},
formatToggleOff: function formatToggleOff() {
- return 'कार्ड दृश्य छुपाएं';
+ return 'Cacher la vue en cartes';
},
formatColumns: function formatColumns() {
- return 'कॉलम';
+ return 'Colonnes';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'टॉगल आल';
+ return 'Tout afficher';
},
formatFullscreen: function formatFullscreen() {
- return 'पूर्ण स्क्रीन';
+ return 'Plein écran';
},
formatAllRows: function formatAllRows() {
- return 'सब';
+ return 'Tout';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'ऑटो रिफ्रेश';
+ return 'Actualiser automatiquement';
},
formatExport: function formatExport() {
- return 'एक्सपोर्ट डाटा';
+ return 'Exporter';
},
formatJumpTo: function formatJumpTo() {
- return 'जाओ';
+ return 'Aller à';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'एडवांस सर्च';
+ return 'Recherche avancée';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'बंद करे';
+ return 'Fermer';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'छुपाओ/दिखाओ कंट्रोल्स';
+ return 'Masquer/Afficher les contrôles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'छुपाओ कंट्रोल्स';
+ return 'Masquer les contrôles';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'दिखाओ कंट्रोल्स';
+ return 'Afficher les contrôles';
+ },
+ formatToggleCustomViewOn: function formatToggleCustomViewOn() {
+ return 'Afficher la vue personnalisée';
+ },
+ formatToggleCustomViewOff: function formatToggleCustomViewOff() {
+ return 'Cacher la vue personnalisée';
+ },
+ formatClearFilters: function formatClearFilters() {
+ return 'Retirer les filtres';
+ },
+ formatAddLevel: function formatAddLevel() {
+ return 'Ajouter un niveau';
+ },
+ formatCancel: function formatCancel() {
+ return 'Annuler';
+ },
+ formatColumn: function formatColumn() {
+ return 'Colonne';
+ },
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Supprimer un niveau';
+ },
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return 'Des entrées en double ont été trouvées !';
+ },
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Veuillez supprimer ou modifier les entrées en double';
+ },
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Tri multiple';
+ },
+ formatOrder: function formatOrder() {
+ return 'Ordre';
+ },
+ formatSort: function formatSort() {
+ return 'Trier';
+ },
+ formatSortBy: function formatSortBy() {
+ return 'Trier par';
+ },
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Ascendant',
+ desc: 'Descendant'
+ };
+ },
+ formatThenBy: function formatThenBy() {
+ return 'Puis par';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hi-IN']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['fr-LU']);
/**
- * Bootstrap Table Hungarian translation
- * Author: Nagy Gergely
+ * Bootstrap Table Hebrew translation
+ * Author: legshooter
*/
- $$2.fn.bootstrapTable.locales['hu-HU'] = $$2.fn.bootstrapTable.locales['hu'] = {
+ $$2.fn.bootstrapTable.locales['he-IL'] = $$2.fn.bootstrapTable.locales['he'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -4052,16 +4105,16 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Betöltés, kérem várjon';
+ return 'טוען, נא להמתין';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " rekord per oldal");
+ return "".concat(pageNumber, " \u05E9\u05D5\u05E8\u05D5\u05EA \u05D1\u05E2\u05DE\u05D5\u05D3");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Megjelen\xEDtve ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " \xF6sszesen (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "\u05DE\u05E6\u05D9\u05D2 ".concat(pageFrom, " \u05E2\u05D3 ").concat(pageTo, " \u05DE-").concat(totalRows, "\u05E9\u05D5\u05E8\u05D5\u05EA").concat(totalNotFiltered, " total rows)");
}
- return "Megjelen\xEDtve ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " \xF6sszesen");
+ return "\u05DE\u05E6\u05D9\u05D2 ".concat(pageFrom, " \u05E2\u05D3 ").concat(pageTo, " \u05DE-").concat(totalRows, " \u05E9\u05D5\u05E8\u05D5\u05EA");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
return 'previous page';
@@ -4079,13 +4132,13 @@
return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Keresés';
+ return 'חיפוש';
},
formatNoMatches: function formatNoMatches() {
- return 'Nincs találat';
+ return 'לא נמצאו רשומות תואמות';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Lapozó elrejtése/megjelenítése';
+ return 'הסתר/הצג מספור דפים';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
return 'Show pagination';
@@ -4094,7 +4147,7 @@
return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Frissítés';
+ return 'רענן';
},
formatToggleOn: function formatToggleOn() {
return 'Show card view';
@@ -4103,7 +4156,7 @@
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Oszlopok';
+ return 'עמודות';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
return 'Toggle all';
@@ -4112,7 +4165,7 @@
return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Összes';
+ return 'הכל';
},
formatAutoRefresh: function formatAutoRefresh() {
return 'Auto Refresh';
@@ -4139,166 +4192,117 @@
return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hu-HU']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['he-IL']);
/**
- * Bootstrap Table Indonesian translation
- * Author: Andre Gardiner
+ * Bootstrap Table Hindi translation
+ * Author: Saurabh Sharma
*/
- $$2.fn.bootstrapTable.locales['id-ID'] = $$2.fn.bootstrapTable.locales['id'] = {
+ $$2.fn.bootstrapTable.locales['hi-IN'] = {
formatCopyRows: function formatCopyRows() {
- return 'Salin baris';
+ return 'पंक्तियों की कॉपी करें';
},
formatPrint: function formatPrint() {
- return 'Mencetak';
+ return 'प्रिंट';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Pemuatan sedang berlangsung';
+ return 'लोड हो रहा है कृपया प्रतीक्षा करें';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " baris per halaman");
+ return "".concat(pageNumber, " \u092A\u094D\u0930\u0924\u093F \u092A\u0943\u0937\u094D\u0920 \u092A\u0902\u0915\u094D\u0924\u093F\u092F\u093E\u0901");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Menampilkan dari ".concat(pageFrom, " hingga ").concat(pageTo, " pada ").concat(totalRows, " baris (difilter dari ").concat(totalNotFiltered, " baris)");
+ return "".concat(pageFrom, " - ").concat(pageTo, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E ").concat(totalRows, " \u092E\u0947\u0902 \u0938\u0947 ( ").concat(totalNotFiltered, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E)");
}
- return "Menampilkan dari ".concat(pageFrom, " hingga ").concat(pageTo, " pada ").concat(totalRows, " baris");
+ return "".concat(pageFrom, " - ").concat(pageTo, " \u092A\u0915\u094D\u0924\u093F\u092F\u093E ").concat(totalRows, " \u092E\u0947\u0902 \u0938\u0947");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'halaman sebelumnya';
+ return 'पिछला पृष्ठ';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "ke halaman ".concat(page);
+ return "".concat(page, " \u092A\u0943\u0937\u094D\u0920 \u092A\u0930");
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'halaman berikutnya';
+ return 'अगला पृष्ठ';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Tampilan ".concat(totalRows, " baris");
+ return "".concat(totalRows, " \u092A\u0902\u0915\u094D\u0924\u093F\u092F\u093E\u0902");
},
formatClearSearch: function formatClearSearch() {
- return 'Menghapus pencarian';
+ return 'सर्च क्लिअर करें';
},
formatSearch: function formatSearch() {
- return 'Pencarian';
+ return 'सर्च';
},
formatNoMatches: function formatNoMatches() {
- return 'Tidak ada hasil';
+ return 'मेल खाते रिकॉर्ड नही मिले';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Sembunyikan/Tampilkan penomoran halaman';
+ return 'छुपाओ/दिखाओ पृष्ठ संख्या';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Tampilkan penomoran halaman';
+ return 'दिखाओ पृष्ठ संख्या';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Sembunyikan penomoran halaman';
+ return 'छुपाओ पृष्ठ संख्या';
},
formatRefresh: function formatRefresh() {
- return 'Segarkan';
+ return 'रिफ्रेश';
},
formatToggleOn: function formatToggleOn() {
- return 'Menampilkan tampilan peta';
+ return 'कार्ड दृश्य दिखाएं';
},
formatToggleOff: function formatToggleOff() {
- return 'Menyembunyikan tampilan peta';
+ return 'कार्ड दृश्य छुपाएं';
},
formatColumns: function formatColumns() {
- return 'Kolom';
+ return 'कॉलम';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Tampilkan semua';
+ return 'टॉगल आल';
},
formatFullscreen: function formatFullscreen() {
- return 'Layar penuh';
+ return 'पूर्ण स्क्रीन';
},
formatAllRows: function formatAllRows() {
- return 'Semua';
+ return 'सब';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Penyegaran otomatis';
+ return 'ऑटो रिफ्रेश';
},
formatExport: function formatExport() {
- return 'Mengekspor data';
+ return 'एक्सपोर्ट डाटा';
},
formatJumpTo: function formatJumpTo() {
- return 'Pergi ke';
+ return 'जाओ';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Pencarian lanjutan';
+ return 'एडवांस सर्च';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Tutup';
+ return 'बंद करे';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Menyembunyikan/Menampilkan kontrol';
+ return 'छुपाओ/दिखाओ कंट्रोल्स';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Menyembunyikan kontrol';
+ return 'छुपाओ कंट्रोल्स';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Menampilkan kontrol';
- },
- formatToggleCustomViewOn: function formatToggleCustomViewOn() {
- return 'Menampilkan tampilan khusus';
- },
- formatToggleCustomViewOff: function formatToggleCustomViewOff() {
- return 'Menyembunyikan tampilan khusus';
- },
- formatClearFilters: function formatClearFilters() {
- return 'Menghapus filter';
- },
- formatAddLevel: function formatAddLevel() {
- return 'Menambahkan level';
- },
- formatCancel: function formatCancel() {
- return 'Batal';
- },
- formatColumn: function formatColumn() {
- return 'Kolom';
- },
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Menghapus level';
- },
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Entri duplikat telah ditemukan!';
- },
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Harap hapus atau ubah entri duplikat';
- },
- formatMultipleSort: function formatMultipleSort() {
- return 'Penyortiran ganda';
- },
- formatOrder: function formatOrder() {
- return 'Urutan';
- },
- formatSort: function formatSort() {
- return 'Penyortiran';
- },
- formatSortBy: function formatSortBy() {
- return 'Urutkan berdasarkan';
- },
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Menaik',
- desc: 'Menurun'
- };
- },
- formatThenBy: function formatThenBy() {
- return 'Kemudian oleh';
+ return 'दिखाओ कंट्रोल्स';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['id-ID']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hi-IN']);
/**
- * Bootstrap Table Italian translation
- * Author: Davide Renzi
- * Author: Davide Borsatto
- * Author: Alessio Felicioni
+ * Bootstrap Table Croatian translation
+ * Author: Petra Štrbenac (petra.strbenac@gmail.com)
+ * Author: Petra Štrbenac (petra.strbenac@gmail.com)
*/
- $$2.fn.bootstrapTable.locales['it-IT'] = $$2.fn.bootstrapTable.locales['it'] = {
+ $$2.fn.bootstrapTable.locales['hr-HR'] = $$2.fn.bootstrapTable.locales['hr'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -4306,82 +4310,82 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Caricamento in corso';
+ return 'Molimo pričekajte';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " elementi per pagina");
+ return "".concat(pageNumber, " broj zapisa po stranici");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Visualizzazione da ".concat(pageFrom, " a ").concat(pageTo, " di ").concat(totalRows, " elementi (filtrati da ").concat(totalNotFiltered, " elementi totali)");
+ return "Prikazujem ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja zapisa ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Visualizzazione da ".concat(pageFrom, " a ").concat(pageTo, " di ").concat(totalRows, " elementi");
+ return "Prikazujem ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja zapisa ").concat(totalRows);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'pagina precedente';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "alla pagina ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'pagina successiva';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Mostrando ".concat(totalRows, " elementi");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Pulisci filtri';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Cerca';
+ return 'Pretraži';
},
formatNoMatches: function formatNoMatches() {
- return 'Nessun elemento trovato';
+ return 'Nije pronađen niti jedan zapis';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Nascondi/Mostra paginazione';
+ return 'Prikaži/sakrij stranice';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Mostra paginazione';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Nascondi paginazione';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Aggiorna';
+ return 'Osvježi';
},
formatToggleOn: function formatToggleOn() {
- return 'Mostra visuale a scheda';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return 'Nascondi visuale a scheda';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Colonne';
+ return 'Kolone';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Mostra tutte';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return 'Schermo intero';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Tutto';
+ return 'Sve';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Aggiornamento';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Esporta dati';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'VAI';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Filtri avanzati';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Chiudi';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
return 'Hide/Show controls';
@@ -4393,14 +4397,14 @@
return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['it-IT']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hr-HR']);
/**
- * Bootstrap Table Japanese translation
- * Author: Azamshul Azizy
+ * Bootstrap Table Hungarian translation
+ * Author: Nagy Gergely
*/
- $$2.fn.bootstrapTable.locales['ja-JP'] = $$2.fn.bootstrapTable.locales['ja'] = {
+ $$2.fn.bootstrapTable.locales['hu-HU'] = $$2.fn.bootstrapTable.locales['hu'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -4408,16 +4412,16 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return '読み込み中です。少々お待ちください。';
+ return 'Betöltés, kérem várjon';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "\u30DA\u30FC\u30B8\u5F53\u305F\u308A\u6700\u5927".concat(pageNumber, "\u4EF6");
+ return "".concat(pageNumber, " rekord per oldal");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u5168".concat(totalRows, "\u4EF6\u304B\u3089\u3001").concat(pageFrom, "\u304B\u3089").concat(pageTo, "\u4EF6\u76EE\u307E\u3067\u8868\u793A\u3057\u3066\u3044\u307E\u3059 (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Megjelen\xEDtve ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " \xF6sszesen (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "\u5168".concat(totalRows, "\u4EF6\u304B\u3089\u3001").concat(pageFrom, "\u304B\u3089").concat(pageTo, "\u4EF6\u76EE\u307E\u3067\u8868\u793A\u3057\u3066\u3044\u307E\u3059");
+ return "Megjelen\xEDtve ".concat(pageFrom, " - ").concat(pageTo, " / ").concat(totalRows, " \xF6sszesen");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
return 'previous page';
@@ -4435,13 +4439,13 @@
return 'Clear Search';
},
formatSearch: function formatSearch() {
- return '検索';
+ return 'Keresés';
},
formatNoMatches: function formatNoMatches() {
- return '該当するレコードが見つかりません';
+ return 'Nincs találat';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'ページ数を表示・非表示';
+ return 'Lapozó elrejtése/megjelenítése';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
return 'Show pagination';
@@ -4450,7 +4454,7 @@
return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return '更新';
+ return 'Frissítés';
},
formatToggleOn: function formatToggleOn() {
return 'Show card view';
@@ -4459,7 +4463,7 @@
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return '列';
+ return 'Oszlopok';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
return 'Toggle all';
@@ -4468,7 +4472,7 @@
return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'すべて';
+ return 'Összes';
},
formatAutoRefresh: function formatAutoRefresh() {
return 'Auto Refresh';
@@ -4495,14 +4499,16 @@
return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ja-JP']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['hu-HU']);
/**
- * Bootstrap Table Georgian translation
- * Author: Levan Lotuashvili
+ * Bootstrap Table Italian translation
+ * Author: Davide Renzi
+ * Author: Davide Borsatto
+ * Author: Alessio Felicioni
*/
- $$2.fn.bootstrapTable.locales['ka-GE'] = $$2.fn.bootstrapTable.locales['ka'] = {
+ $$2.fn.bootstrapTable.locales['it-IT'] = $$2.fn.bootstrapTable.locales['it'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -4510,82 +4516,82 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'იტვირთება, გთხოვთ მოიცადოთ';
+ return 'Caricamento in corso';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10D7\u10D8\u10D7\u10DD \u10D2\u10D5\u10D4\u10E0\u10D3\u10D6\u10D4");
+ return "".concat(pageNumber, " elementi per pagina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u10DC\u10D0\u10E9\u10D5\u10D4\u10DC\u10D4\u10D1\u10D8\u10D0 ".concat(pageFrom, "-\u10D3\u10D0\u10DC ").concat(pageTo, "-\u10DB\u10D3\u10D4 \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10EF\u10D0\u10DB\u10E3\u10E0\u10D8 ").concat(totalRows, "-\u10D3\u10D0\u10DC (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Visualizzazione da ".concat(pageFrom, " a ").concat(pageTo, " di ").concat(totalRows, " elementi (filtrati da ").concat(totalNotFiltered, " elementi totali)");
}
- return "\u10DC\u10D0\u10E9\u10D5\u10D4\u10DC\u10D4\u10D1\u10D8\u10D0 ".concat(pageFrom, "-\u10D3\u10D0\u10DC ").concat(pageTo, "-\u10DB\u10D3\u10D4 \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10EF\u10D0\u10DB\u10E3\u10E0\u10D8 ").concat(totalRows, "-\u10D3\u10D0\u10DC");
+ return "Visualizzazione da ".concat(pageFrom, " a ").concat(pageTo, " di ").concat(totalRows, " elementi");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'pagina precedente';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "alla pagina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'pagina successiva';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Mostrando ".concat(totalRows, " elementi");
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Pulisci filtri';
},
formatSearch: function formatSearch() {
- return 'ძებნა';
+ return 'Cerca';
},
formatNoMatches: function formatNoMatches() {
- return 'მონაცემები არ არის';
+ return 'Nessun elemento trovato';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'გვერდების გადამრთველის დამალვა/გამოჩენა';
+ return 'Nascondi/Mostra paginazione';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Mostra paginazione';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Nascondi paginazione';
},
formatRefresh: function formatRefresh() {
- return 'განახლება';
+ return 'Aggiorna';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Mostra visuale a scheda';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Nascondi visuale a scheda';
},
formatColumns: function formatColumns() {
- return 'სვეტები';
+ return 'Colonne';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Mostra tutte';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Schermo intero';
},
formatAllRows: function formatAllRows() {
- return 'All';
+ return 'Tutto';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Auto Aggiornamento';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Esporta dati';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'VAI';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Filtri avanzati';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Chiudi';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
return 'Hide/Show controls';
@@ -4597,814 +4603,777 @@
return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ka-GE']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['it-IT']);
/**
- * Bootstrap Table Malay translation
- * Author: Azamshul Azizy
+ * Bootstrap Table Indonesian translation
+ * Author: Andre Gardiner
*/
- $$2.fn.bootstrapTable.locales['ms-MY'] = $$2.fn.bootstrapTable.locales['ms'] = {
+ $$2.fn.bootstrapTable.locales['id-ID'] = $$2.fn.bootstrapTable.locales['id'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Salin baris';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Mencetak';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Permintaan sedang dimuatkan. Sila tunggu sebentar';
+ return 'Pemuatan sedang berlangsung';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " rekod setiap muka surat");
+ return "".concat(pageNumber, " baris per halaman");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Sedang memaparkan rekod ".concat(pageFrom, " hingga ").concat(pageTo, " daripada jumlah ").concat(totalRows, " rekod (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Menampilkan dari ".concat(pageFrom, " hingga ").concat(pageTo, " pada ").concat(totalRows, " baris (difilter dari ").concat(totalNotFiltered, " baris)");
}
- return "Sedang memaparkan rekod ".concat(pageFrom, " hingga ").concat(pageTo, " daripada jumlah ").concat(totalRows, " rekod");
+ return "Menampilkan dari ".concat(pageFrom, " hingga ").concat(pageTo, " pada ").concat(totalRows, " baris");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'halaman sebelumnya';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "ke halaman ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'halaman berikutnya';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Tampilan ".concat(totalRows, " baris");
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Menghapus pencarian';
},
formatSearch: function formatSearch() {
- return 'Cari';
+ return 'Pencarian';
},
formatNoMatches: function formatNoMatches() {
- return 'Tiada rekod yang menyamai permintaan';
+ return 'Tidak ada hasil';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Tunjuk/sembunyi muka surat';
+ return 'Sembunyikan/Tampilkan penomoran halaman';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Tampilkan penomoran halaman';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Sembunyikan penomoran halaman';
},
formatRefresh: function formatRefresh() {
- return 'Muatsemula';
+ return 'Segarkan';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Menampilkan tampilan peta';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Menyembunyikan tampilan peta';
},
formatColumns: function formatColumns() {
- return 'Lajur';
+ return 'Kolom';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Tampilkan semua';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Layar penuh';
},
formatAllRows: function formatAllRows() {
return 'Semua';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Penyegaran otomatis';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Mengekspor data';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'Pergi ke';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Pencarian lanjutan';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Tutup';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Menyembunyikan/Menampilkan kontrol';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Menyembunyikan kontrol';
+ },
+ formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
+ return 'Menampilkan kontrol';
+ },
+ formatToggleCustomViewOn: function formatToggleCustomViewOn() {
+ return 'Menampilkan tampilan khusus';
+ },
+ formatToggleCustomViewOff: function formatToggleCustomViewOff() {
+ return 'Menyembunyikan tampilan khusus';
+ },
+ formatClearFilters: function formatClearFilters() {
+ return 'Menghapus filter';
+ },
+ formatAddLevel: function formatAddLevel() {
+ return 'Menambahkan level';
+ },
+ formatCancel: function formatCancel() {
+ return 'Batal';
+ },
+ formatColumn: function formatColumn() {
+ return 'Kolom';
+ },
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Menghapus level';
+ },
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return 'Entri duplikat telah ditemukan!';
+ },
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Harap hapus atau ubah entri duplikat';
+ },
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Penyortiran ganda';
+ },
+ formatOrder: function formatOrder() {
+ return 'Urutan';
+ },
+ formatSort: function formatSort() {
+ return 'Penyortiran';
+ },
+ formatSortBy: function formatSortBy() {
+ return 'Urutkan berdasarkan';
+ },
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Menaik',
+ desc: 'Menurun'
+ };
},
- formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ formatThenBy: function formatThenBy() {
+ return 'Kemudian oleh';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ms-MY']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['id-ID']);
/**
- * Bootstrap Table Korean translation
- * Author: Yi Tae-Hyeong (jsonobject@gmail.com)
- * Revision: Abel Yeom (abel.yeom@gmail.com)
+ * Bootstrap Table Japanese translation
+ * Author: Azamshul Azizy
*/
- $$2.fn.bootstrapTable.locales['ko-KR'] = $$2.fn.bootstrapTable.locales['ko'] = {
+ $$2.fn.bootstrapTable.locales['ja-JP'] = $$2.fn.bootstrapTable.locales['ja'] = {
formatCopyRows: function formatCopyRows() {
- return '행 복사';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return '프린트';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return '데이터를 불러오는 중입니다';
+ return '読み込み中です。少々お待ちください。';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "\uD398\uC774\uC9C0 \uB2F9 ".concat(pageNumber, "\uAC1C \uB370\uC774\uD130 \uCD9C\uB825");
+ return "\u30DA\u30FC\u30B8\u5F53\u305F\u308A\u6700\u5927".concat(pageNumber, "\u4EF6");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\uC804\uCCB4 ".concat(totalRows, "\uAC1C \uC911 ").concat(pageFrom, "~").concat(pageTo, "\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825, (\uC804\uCCB4 ").concat(totalNotFiltered, " \uD589\uC5D0\uC11C \uD544\uD130\uB428)");
+ return "\u5168".concat(totalRows, "\u4EF6\u304B\u3089\u3001").concat(pageFrom, "\u304B\u3089").concat(pageTo, "\u4EF6\u76EE\u307E\u3067\u8868\u793A\u3057\u3066\u3044\u307E\u3059 (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "\uC804\uCCB4 ".concat(totalRows, "\uAC1C \uC911 ").concat(pageFrom, "~").concat(pageTo, "\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825,");
+ return "\u5168".concat(totalRows, "\u4EF6\u304B\u3089\u3001").concat(pageFrom, "\u304B\u3089").concat(pageTo, "\u4EF6\u76EE\u307E\u3067\u8868\u793A\u3057\u3066\u3044\u307E\u3059");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return '이전 페이지';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "".concat(page, " \uD398\uC774\uC9C0\uB85C \uC774\uB3D9");
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return '다음 페이지';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "".concat(totalRows, " \uD589\uB4E4 \uD45C\uC2DC \uC911");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return '검색 초기화';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return '검색';
+ return '検索';
},
formatNoMatches: function formatNoMatches() {
- return '조회된 데이터가 없습니다.';
+ return '該当するレコードが見つかりません';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return '페이지 넘버 보기/숨기기';
+ return 'ページ数を表示・非表示';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return '페이지 넘버 보기';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return '페이지 넘버 숨기기';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return '새로 고침';
+ return '更新';
},
formatToggleOn: function formatToggleOn() {
- return '카드뷰 보기';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return '카드뷰 숨기기';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return '컬럼 필터링';
+ return '列';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return '전체 토글';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return '전체 화면';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return '전체';
+ return 'すべて';
},
formatAutoRefresh: function formatAutoRefresh() {
- return '자동 갱신';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return '데이터 추출';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return '이동';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return '심화 검색';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return '닫기';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return '컨트롤 보기/숨기기';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return '컨트롤 숨기기';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return '컨트롤 보기';
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ko-KR']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ja-JP']);
/**
- * Bootstrap Table Luxembourgish translation
- * Author: David Morais Ferreira (https://github.com/DavidMoraisFerreira)
+ * Bootstrap Table Georgian translation
+ * Author: Levan Lotuashvili
*/
- $$2.fn.bootstrapTable.locales['lb-LU'] = $$2.fn.bootstrapTable.locales['lb'] = {
+ $$2.fn.bootstrapTable.locales['ka-GE'] = $$2.fn.bootstrapTable.locales['ka'] = {
formatCopyRows: function formatCopyRows() {
- return 'Zeilen kopéieren';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'Drécken';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Gëtt gelueden, gedellëgt Iech wannechgelift ee Moment';
+ return 'იტვირთება, გთხოვთ მოიცადოთ';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " Zeilen per S\xE4it");
+ return "".concat(pageNumber, " \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10D7\u10D8\u10D7\u10DD \u10D2\u10D5\u10D4\u10E0\u10D3\u10D6\u10D4");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Weist Zeil ".concat(pageFrom, " bis ").concat(pageTo, " vun ").concat(totalRows, " Zeil").concat(totalRows > 1 ? 'en' : '', " (gefiltert vun insgesamt ").concat(totalNotFiltered, " Zeil").concat(totalRows > 1 ? 'en' : '', ")");
+ return "\u10DC\u10D0\u10E9\u10D5\u10D4\u10DC\u10D4\u10D1\u10D8\u10D0 ".concat(pageFrom, "-\u10D3\u10D0\u10DC ").concat(pageTo, "-\u10DB\u10D3\u10D4 \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10EF\u10D0\u10DB\u10E3\u10E0\u10D8 ").concat(totalRows, "-\u10D3\u10D0\u10DC (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Weist Zeil ".concat(pageFrom, " bis ").concat(pageTo, " vun ").concat(totalRows, " Zeil").concat(totalRows > 1 ? 'en' : '');
+ return "\u10DC\u10D0\u10E9\u10D5\u10D4\u10DC\u10D4\u10D1\u10D8\u10D0 ".concat(pageFrom, "-\u10D3\u10D0\u10DC ").concat(pageTo, "-\u10DB\u10D3\u10D4 \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10EF\u10D0\u10DB\u10E3\u10E0\u10D8 ").concat(totalRows, "-\u10D3\u10D0\u10DC");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'viregt Säit';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "op S\xE4it ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'nächst Säit';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Weist ".concat(totalRows, " Zeilen");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Sich réckgängeg maachen';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Sich';
+ return 'ძებნა';
},
formatNoMatches: function formatNoMatches() {
- return 'Keng passend Anträg fonnt';
+ return 'მონაცემები არ არის';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Paginatioun uweisen/verstoppen';
+ return 'გვერდების გადამრთველის დამალვა/გამოჩენა';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Paginatioun uweisen';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Paginatioun verstoppen';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Nei lueden';
+ return 'განახლება';
},
formatToggleOn: function formatToggleOn() {
- return 'Kaartenusiicht uweisen';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return 'Kaartenusiicht verstoppen';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Kolonnen';
+ return 'სვეტები';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'All ëmschalten';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return 'Vollbild';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
return 'All';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Automatescht neilueden';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Daten exportéieren';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'Sprangen';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Erweidert Sich';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Zoumaachen';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Schaltelementer uweisen/verstoppen';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Schaltelementer verstoppen';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Schaltelementer uweisen';
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['lb-LU']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ka-GE']);
/**
- * Bootstrap Table Dutch (België) translation
- * Author: Nevets82
+ * Bootstrap Table Korean translation
+ * Author: Yi Tae-Hyeong (jsonobject@gmail.com)
+ * Revision: Abel Yeom (abel.yeom@gmail.com)
*/
- $$2.fn.bootstrapTable.locales['nl-BE'] = {
+ $$2.fn.bootstrapTable.locales['ko-KR'] = $$2.fn.bootstrapTable.locales['ko'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return '행 복사';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return '프린트';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Laden, even geduld';
+ return '데이터를 불러오는 중입니다';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " records per pagina");
+ return "\uD398\uC774\uC9C0 \uB2F9 ".concat(pageNumber, "\uAC1C \uB370\uC774\uD130 \uCD9C\uB825");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '', " (gefilterd van ").concat(totalNotFiltered, " records in totaal)");
+ return "\uC804\uCCB4 ".concat(totalRows, "\uAC1C \uC911 ").concat(pageFrom, "~").concat(pageTo, "\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825, (\uC804\uCCB4 ").concat(totalNotFiltered, " \uD589\uC5D0\uC11C \uD544\uD130\uB428)");
}
- return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
+ return "\uC804\uCCB4 ".concat(totalRows, "\uAC1C \uC911 ").concat(pageFrom, "~").concat(pageTo, "\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825,");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'vorige pagina';
+ return '이전 페이지';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "tot pagina ".concat(page);
+ return "".concat(page, " \uD398\uC774\uC9C0\uB85C \uC774\uB3D9");
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'volgende pagina';
+ return '다음 페이지';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Toon ".concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
+ return "".concat(totalRows, " \uD589\uB4E4 \uD45C\uC2DC \uC911");
},
formatClearSearch: function formatClearSearch() {
- return 'Verwijder filters';
+ return '검색 초기화';
},
formatSearch: function formatSearch() {
- return 'Zoeken';
+ return '검색';
},
formatNoMatches: function formatNoMatches() {
- return 'Geen resultaten gevonden';
+ return '조회된 데이터가 없습니다.';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Verberg/Toon paginering';
+ return '페이지 넘버 보기/숨기기';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Toon paginering';
+ return '페이지 넘버 보기';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Verberg paginering';
+ return '페이지 넘버 숨기기';
},
formatRefresh: function formatRefresh() {
- return 'Vernieuwen';
+ return '새로 고침';
},
formatToggleOn: function formatToggleOn() {
- return 'Toon kaartweergave';
+ return '카드뷰 보기';
},
formatToggleOff: function formatToggleOff() {
- return 'Verberg kaartweergave';
+ return '카드뷰 숨기기';
},
formatColumns: function formatColumns() {
- return 'Kolommen';
+ return '컬럼 필터링';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Allen omschakelen';
+ return '전체 토글';
},
formatFullscreen: function formatFullscreen() {
- return 'Volledig scherm';
+ return '전체 화면';
},
formatAllRows: function formatAllRows() {
- return 'Alle';
+ return '전체';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Automatisch vernieuwen';
+ return '자동 갱신';
},
formatExport: function formatExport() {
- return 'Exporteer gegevens';
+ return '데이터 추출';
},
formatJumpTo: function formatJumpTo() {
- return 'GA';
+ return '이동';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Geavanceerd zoeken';
+ return '심화 검색';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Sluiten';
+ return '닫기';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Verberg/Toon controls';
+ return '컨트롤 보기/숨기기';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Verberg controls';
- },
- formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Toon controls';
- },
- formatAddLevel: function formatAddLevel() {
- return 'Niveau toevoegen';
- },
- formatCancel: function formatCancel() {
- return 'Annuleren';
- },
- formatColumn: function formatColumn() {
- return 'Kolom';
- },
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Niveau verwijderen';
- },
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Duplicaten gevonden!';
- },
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Gelieve dubbele kolommen te verwijderen of wijzigen';
- },
- formatMultipleSort: function formatMultipleSort() {
- return 'Meervoudige sortering';
- },
- formatOrder: function formatOrder() {
- return 'Volgorde';
- },
- formatSort: function formatSort() {
- return 'Sorteren';
- },
- formatSortBy: function formatSortBy() {
- return 'Sorteren op';
- },
- formatThenBy: function formatThenBy() {
- return 'vervolgens';
+ return '컨트롤 숨기기';
},
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Oplopend',
- desc: 'Aflopend'
- };
+ formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
+ return '컨트롤 보기';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nl-BE']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ko-KR']);
/**
- * Bootstrap Table norwegian translation
- * Author: Jim Nordbø, jim@nordb.no
+ * Bootstrap Table Luxembourgish translation
+ * Author: David Morais Ferreira (https://github.com/DavidMoraisFerreira)
*/
- $$2.fn.bootstrapTable.locales['nb-NO'] = $$2.fn.bootstrapTable.locales['nb'] = {
+ $$2.fn.bootstrapTable.locales['lb-LU'] = $$2.fn.bootstrapTable.locales['lb'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Zeilen kopéieren';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Drécken';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Oppdaterer, vennligst vent';
+ return 'Gëtt gelueden, gedellëgt Iech wannechgelift ee Moment';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " poster pr side");
+ return "".concat(pageNumber, " Zeilen per S\xE4it");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Viser ".concat(pageFrom, " til ").concat(pageTo, " av ").concat(totalRows, " rekker (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Weist Zeil ".concat(pageFrom, " bis ").concat(pageTo, " vun ").concat(totalRows, " Zeil").concat(totalRows > 1 ? 'en' : '', " (gefiltert vun insgesamt ").concat(totalNotFiltered, " Zeil").concat(totalRows > 1 ? 'en' : '', ")");
}
- return "Viser ".concat(pageFrom, " til ").concat(pageTo, " av ").concat(totalRows, " rekker");
+ return "Weist Zeil ".concat(pageFrom, " bis ").concat(pageTo, " vun ").concat(totalRows, " Zeil").concat(totalRows > 1 ? 'en' : '');
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'viregt Säit';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "op S\xE4it ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'nächst Säit';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Weist ".concat(totalRows, " Zeilen");
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Sich réckgängeg maachen';
},
formatSearch: function formatSearch() {
- return 'Søk';
+ return 'Sich';
},
formatNoMatches: function formatNoMatches() {
- return 'Ingen poster funnet';
+ return 'Keng passend Anträg fonnt';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
+ return 'Paginatioun uweisen/verstoppen';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Paginatioun uweisen';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Paginatioun verstoppen';
},
formatRefresh: function formatRefresh() {
- return 'Oppdater';
+ return 'Nei lueden';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Kaartenusiicht uweisen';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Kaartenusiicht verstoppen';
},
formatColumns: function formatColumns() {
- return 'Kolonner';
+ return 'Kolonnen';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'All ëmschalten';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Vollbild';
},
formatAllRows: function formatAllRows() {
return 'All';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Automatescht neilueden';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Daten exportéieren';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'Sprangen';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Erweidert Sich';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Zoumaachen';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Schaltelementer uweisen/verstoppen';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Schaltelementer verstoppen';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Schaltelementer uweisen';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nb-NO']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['lb-LU']);
/**
- * Bootstrap Table Polish translation
- * Author: zergu
- * Update: kerogos
+ * Bootstrap Table Malay translation
+ * Author: Azamshul Azizy
*/
- $$2.fn.bootstrapTable.locales['pl-PL'] = $$2.fn.bootstrapTable.locales['pl'] = {
+ $$2.fn.bootstrapTable.locales['ms-MY'] = $$2.fn.bootstrapTable.locales['ms'] = {
formatCopyRows: function formatCopyRows() {
- return 'Kopiuj wiersze';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Ładowanie, proszę czekać';
+ return 'Permintaan sedang dimuatkan. Sila tunggu sebentar';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " rekord\xF3w na stron\u0119");
+ return "".concat(pageNumber, " rekod setiap muka surat");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Wy\u015Bwietlanie rekord\xF3w od ".concat(pageFrom, " do ").concat(pageTo, " z ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Sedang memaparkan rekod ".concat(pageFrom, " hingga ").concat(pageTo, " daripada jumlah ").concat(totalRows, " rekod (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Wy\u015Bwietlanie rekord\xF3w od ".concat(pageFrom, " do ").concat(pageTo, " z ").concat(totalRows);
+ return "Sedang memaparkan rekod ".concat(pageFrom, " hingga ").concat(pageTo, " daripada jumlah ").concat(totalRows, " rekod");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'poprzednia strona';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "z ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'następna strona';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Wy\u015Bwietla ".concat(totalRows, " wierszy");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Wyczyść wyszukiwanie';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Szukaj';
+ return 'Cari';
},
formatNoMatches: function formatNoMatches() {
- return 'Niestety, nic nie znaleziono';
+ return 'Tiada rekod yang menyamai permintaan';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Pokaż/ukryj stronicowanie';
+ return 'Tunjuk/sembunyi muka surat';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Pokaż stronicowanie';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Ukryj stronicowanie';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Odśwież';
+ return 'Muatsemula';
},
formatToggleOn: function formatToggleOn() {
- return 'Pokaż układ karty';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return 'Ukryj układ karty';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Kolumny';
+ return 'Lajur';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Zaznacz wszystko';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Wszystkie';
+ return 'Semua';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto odświeżanie';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Eksport danych';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'Przejdź';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Wyszukiwanie zaawansowane';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Zamknij';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Pokaż/Ukryj';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Pokaż';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Ukryj';
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pl-PL']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ms-MY']);
/**
- * Bootstrap Table Brazilian Portuguese Translation
- * Author: Eduardo Cerqueira
- * Update: João Mello
- * Update: Leandro Felizari
- * Update: Fernando Marcos Souza Silva
- * Update: @misteregis
+ * Bootstrap Table norwegian translation
+ * Author: Jim Nordbø, jim@nordb.no
*/
- $$2.fn.bootstrapTable.locales['pt-BR'] = $$2.fn.bootstrapTable.locales['br'] = {
+ $$2.fn.bootstrapTable.locales['nb-NO'] = $$2.fn.bootstrapTable.locales['nb'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copiar linhas';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'Imprimir';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Carregando, aguarde';
+ return 'Oppdaterer, vennligst vent';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " registros por p\xE1gina");
+ return "".concat(pageNumber, " poster pr side");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
- var plural = totalRows > 1 ? 's' : '';
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Exibindo ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linha").concat(plural, " (filtrado de um total de ").concat(totalNotFiltered, " linha").concat(plural, ")");
+ return "Viser ".concat(pageFrom, " til ").concat(pageTo, " av ").concat(totalRows, " rekker (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Exibindo ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linha").concat(plural);
+ return "Viser ".concat(pageFrom, " til ").concat(pageTo, " av ").concat(totalRows, " rekker");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'página anterior';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "ir para a p\xE1gina ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'próxima página';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Mostrando ".concat(totalRows, " linha").concat(totalRows > 1 ? 's' : '');
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Limpar Pesquisa';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Pesquisar';
+ return 'Søk';
},
formatNoMatches: function formatNoMatches() {
- return 'Nenhum registro encontrado';
+ return 'Ingen poster funnet';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Ocultar/Exibir paginação';
+ return 'Hide/Show pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Mostrar Paginação';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Esconder Paginação';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Recarregar';
+ return 'Oppdater';
},
formatToggleOn: function formatToggleOn() {
- return 'Mostrar visualização de cartão';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Colunas';
+ return 'Kolonner';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Alternar tudo';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return 'Tela cheia';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Tudo';
+ return 'All';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Atualização Automática';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Exportar dados';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'Ir';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Pesquisa Avançada';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Fechar';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Ocultar/Exibir controles';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Ocultar controles';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Exibir controles';
- },
- formatAddLevel: function formatAddLevel() {
- return 'Adicionar nível';
- },
- formatCancel: function formatCancel() {
- return 'Cancelar';
- },
- formatColumn: function formatColumn() {
- return 'Coluna';
- },
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Remover nível';
- },
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Encontradas entradas duplicadas!';
- },
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Por favor, remova ou altere as colunas duplicadas';
- },
- formatMultipleSort: function formatMultipleSort() {
- return 'Ordenação múltipla';
- },
- formatOrder: function formatOrder() {
- return 'Ordem';
- },
- formatSort: function formatSort() {
- return 'Ordenar';
- },
- formatSortBy: function formatSortBy() {
- return 'Ordenar por';
- },
- formatThenBy: function formatThenBy() {
- return 'em seguida';
- },
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Crescente',
- desc: 'Decrescente'
- };
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pt-BR']);
-
- /**
- * Bootstrap Table Dutch (Nederland) translation
- * Author: Your Name
- * Nevets82
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nb-NO']);
+
+ /**
+ * Bootstrap Table Dutch (België) translation
+ * Author: Nevets82
*/
- $$2.fn.bootstrapTable.locales['nl-NL'] = $$2.fn.bootstrapTable.locales['nl'] = {
+ $$2.fn.bootstrapTable.locales['nl-BE'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -5538,762 +5507,847 @@
};
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nl-NL']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nl-BE']);
/**
- * Bootstrap Table Portuguese Portugal Translation
- * Author: Burnspirit
- * Update: @misteregis
+ * Bootstrap Table Dutch (Nederland) translation
+ * Author: Your Name
+ * Nevets82
*/
- $$2.fn.bootstrapTable.locales['pt-PT'] = $$2.fn.bootstrapTable.locales['pt'] = {
+ $$2.fn.bootstrapTable.locales['nl-NL'] = $$2.fn.bootstrapTable.locales['nl'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copiar Linhas';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'Imprimir';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'A carregar, por favor aguarde';
+ return 'Laden, even geduld';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " registos por p\xE1gina");
+ return "".concat(pageNumber, " records per pagina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
- var plural = totalRows > 1 ? 's' : '';
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "A mostrar ".concat(pageFrom, " até ").concat(pageTo, " de ").concat(totalRows, " linha").concat(plural, " (filtrado de um total de ").concat(totalNotFiltered, " linha").concat(plural, ")");
+ return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '', " (gefilterd van ").concat(totalNotFiltered, " records in totaal)");
}
- return "A mostrar ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linha").concat(plural);
+ return "Toon ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'página anterior';
+ return 'vorige pagina';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "ir para p\xE1gina ".concat(page);
+ return "tot pagina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'próxima página';
+ return 'volgende pagina';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Mostrando ".concat(totalRows, " linha").concat(totalRows > 1 ? 's' : '');
+ return "Toon ".concat(totalRows, " record").concat(totalRows > 1 ? 's' : '');
},
formatClearSearch: function formatClearSearch() {
- return 'Limpar Pesquisa';
+ return 'Verwijder filters';
},
formatSearch: function formatSearch() {
- return 'Pesquisa';
+ return 'Zoeken';
},
formatNoMatches: function formatNoMatches() {
- return 'Nenhum registo encontrado';
+ return 'Geen resultaten gevonden';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Esconder/Mostrar paginação';
+ return 'Verberg/Toon paginering';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Mostrar página';
+ return 'Toon paginering';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Esconder página';
+ return 'Verberg paginering';
},
formatRefresh: function formatRefresh() {
- return 'Actualizar';
+ return 'Vernieuwen';
},
formatToggleOn: function formatToggleOn() {
- return 'Mostrar vista em forma de cartão';
+ return 'Toon kaartweergave';
},
formatToggleOff: function formatToggleOff() {
- return 'Esconder vista em forma de cartão';
+ return 'Verberg kaartweergave';
},
formatColumns: function formatColumns() {
- return 'Colunas';
+ return 'Kolommen';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Activar tudo';
+ return 'Allen omschakelen';
},
formatFullscreen: function formatFullscreen() {
- return 'Ecrã completo';
+ return 'Volledig scherm';
},
formatAllRows: function formatAllRows() {
- return 'Tudo';
+ return 'Alle';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Actualização autmática';
+ return 'Automatisch vernieuwen';
},
formatExport: function formatExport() {
- return 'Exportar dados';
+ return 'Exporteer gegevens';
},
formatJumpTo: function formatJumpTo() {
- return 'Avançar';
+ return 'GA';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Pesquisa avançada';
+ return 'Geavanceerd zoeken';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Fechar';
+ return 'Sluiten';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Ocultar/Exibir controles';
+ return 'Verberg/Toon controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Esconder controlos';
+ return 'Verberg controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Exibir controlos';
+ return 'Toon controls';
},
formatAddLevel: function formatAddLevel() {
- return 'Adicionar nível';
+ return 'Niveau toevoegen';
},
formatCancel: function formatCancel() {
- return 'Cancelar';
+ return 'Annuleren';
},
formatColumn: function formatColumn() {
- return 'Coluna';
+ return 'Kolom';
},
formatDeleteLevel: function formatDeleteLevel() {
- return 'Remover nível';
+ return 'Niveau verwijderen';
},
formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Foram encontradas entradas duplicadas!';
+ return 'Duplicaten gevonden!';
},
formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Por favor, remova ou altere as colunas duplicadas';
+ return 'Gelieve dubbele kolommen te verwijderen of wijzigen';
},
formatMultipleSort: function formatMultipleSort() {
- return 'Ordenação múltipla';
+ return 'Meervoudige sortering';
},
formatOrder: function formatOrder() {
- return 'Ordem';
+ return 'Volgorde';
},
formatSort: function formatSort() {
- return 'Ordenar';
+ return 'Sorteren';
},
formatSortBy: function formatSortBy() {
- return 'Ordenar por';
+ return 'Sorteren op';
},
formatThenBy: function formatThenBy() {
- return 'em seguida';
+ return 'vervolgens';
},
formatSortOrders: function formatSortOrders() {
return {
- asc: 'Ascendente',
- desc: 'Descendente'
+ asc: 'Oplopend',
+ desc: 'Aflopend'
};
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pt-PT']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['nl-NL']);
/**
- * Bootstrap Table Romanian translation
- * Author: cristake
+ * Bootstrap Table Polish translation
+ * Author: zergu
+ * Update: kerogos
*/
- $$2.fn.bootstrapTable.locales['ro-RO'] = $$2.fn.bootstrapTable.locales['ro'] = {
+ $$2.fn.bootstrapTable.locales['pl-PL'] = $$2.fn.bootstrapTable.locales['pl'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Kopiuj wiersze';
},
formatPrint: function formatPrint() {
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Se incarca, va rugam asteptati';
+ return 'Ładowanie, proszę czekać';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " inregistrari pe pagina");
+ return "".concat(pageNumber, " rekord\xF3w na stron\u0119");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Arata de la ".concat(pageFrom, " pana la ").concat(pageTo, " din ").concat(totalRows, " randuri (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Wy\u015Bwietlanie rekord\xF3w od ".concat(pageFrom, " do ").concat(pageTo, " z ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Arata de la ".concat(pageFrom, " pana la ").concat(pageTo, " din ").concat(totalRows, " randuri");
+ return "Wy\u015Bwietlanie rekord\xF3w od ".concat(pageFrom, " do ").concat(pageTo, " z ").concat(totalRows);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'poprzednia strona';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "z ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'następna strona';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Wy\u015Bwietla ".concat(totalRows, " wierszy");
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Wyczyść wyszukiwanie';
},
formatSearch: function formatSearch() {
- return 'Cauta';
+ return 'Szukaj';
},
formatNoMatches: function formatNoMatches() {
- return 'Nu au fost gasite inregistrari';
+ return 'Niestety, nic nie znaleziono';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Ascunde/Arata paginatia';
+ return 'Pokaż/ukryj stronicowanie';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Pokaż stronicowanie';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Ukryj stronicowanie';
},
formatRefresh: function formatRefresh() {
- return 'Reincarca';
+ return 'Odśwież';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Pokaż układ karty';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Ukryj układ karty';
},
formatColumns: function formatColumns() {
- return 'Coloane';
+ return 'Kolumny';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Zaznacz wszystko';
},
formatFullscreen: function formatFullscreen() {
return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Toate';
+ return 'Wszystkie';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Auto odświeżanie';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Eksport danych';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'Przejdź';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Wyszukiwanie zaawansowane';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Zamknij';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Pokaż/Ukryj';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Pokaż';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Ukryj';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ro-RO']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pl-PL']);
/**
- * Bootstrap Table danish translation
- * Author: Your Name Jan Borup Coyle, github@coyle.dk
+ * Bootstrap Table Brazilian Portuguese Translation
+ * Author: Eduardo Cerqueira
+ * Update: João Mello
+ * Update: Leandro Felizari
+ * Update: Fernando Marcos Souza Silva
+ * Update: @misteregis
*/
- $$2.fn.bootstrapTable.locales['da-DK'] = $$2.fn.bootstrapTable.locales['da'] = {
+ $$2.fn.bootstrapTable.locales['pt-BR'] = $$2.fn.bootstrapTable.locales['br'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Copiar linhas';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Imprimir';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Indlæser, vent venligst';
+ return 'Carregando, aguarde';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " poster pr side");
+ return "".concat(pageNumber, " registros por p\xE1gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
+ var plural = totalRows > 1 ? 's' : '';
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Viser ".concat(pageFrom, " til ").concat(pageTo, " af ").concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '', " (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Exibindo ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linha").concat(plural, " (filtrado de um total de ").concat(totalNotFiltered, " linha").concat(plural, ")");
}
- return "Viser ".concat(pageFrom, " til ").concat(pageTo, " af ").concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '');
+ return "Exibindo ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linha").concat(plural);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'página anterior';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "ir para a p\xE1gina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'próxima página';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Viser ".concat(totalRows, " r\xE6kke").concat(totalRows > 1 ? 'r' : '');
+ return "Mostrando ".concat(totalRows, " linha").concat(totalRows > 1 ? 's' : '');
},
formatClearSearch: function formatClearSearch() {
- return 'Ryd filtre';
+ return 'Limpar Pesquisa';
},
formatSearch: function formatSearch() {
- return 'Søg';
+ return 'Pesquisar';
},
formatNoMatches: function formatNoMatches() {
- return 'Ingen poster fundet';
+ return 'Nenhum registro encontrado';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Skjul/vis nummerering';
+ return 'Ocultar/Exibir paginação';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Mostrar Paginação';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Esconder Paginação';
},
formatRefresh: function formatRefresh() {
- return 'Opdater';
+ return 'Recarregar';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Mostrar visualização de cartão';
},
formatToggleOff: function formatToggleOff() {
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Kolonner';
+ return 'Colunas';
+ },
+ formatColumnsToggleAll: function formatColumnsToggleAll() {
+ return 'Alternar tudo';
+ },
+ formatFullscreen: function formatFullscreen() {
+ return 'Tela cheia';
+ },
+ formatAllRows: function formatAllRows() {
+ return 'Tudo';
+ },
+ formatAutoRefresh: function formatAutoRefresh() {
+ return 'Atualização Automática';
+ },
+ formatExport: function formatExport() {
+ return 'Exportar dados';
+ },
+ formatJumpTo: function formatJumpTo() {
+ return 'Ir';
+ },
+ formatAdvancedSearch: function formatAdvancedSearch() {
+ return 'Pesquisa Avançada';
+ },
+ formatAdvancedCloseButton: function formatAdvancedCloseButton() {
+ return 'Fechar';
+ },
+ formatFilterControlSwitch: function formatFilterControlSwitch() {
+ return 'Ocultar/Exibir controles';
+ },
+ formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
+ return 'Ocultar controles';
+ },
+ formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
+ return 'Exibir controles';
},
- formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ formatAddLevel: function formatAddLevel() {
+ return 'Adicionar nível';
},
- formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ formatCancel: function formatCancel() {
+ return 'Cancelar';
},
- formatAllRows: function formatAllRows() {
- return 'Alle';
+ formatColumn: function formatColumn() {
+ return 'Coluna';
},
- formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Remover nível';
},
- formatExport: function formatExport() {
- return 'Eksporter';
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return 'Encontradas entradas duplicadas!';
},
- formatJumpTo: function formatJumpTo() {
- return 'GO';
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Por favor, remova ou altere as colunas duplicadas';
},
- formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Ordenação múltipla';
},
- formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ formatOrder: function formatOrder() {
+ return 'Ordem';
},
- formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ formatSort: function formatSort() {
+ return 'Ordenar';
},
- formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ formatSortBy: function formatSortBy() {
+ return 'Ordenar por';
},
- formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ formatThenBy: function formatThenBy() {
+ return 'em seguida';
+ },
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Crescente',
+ desc: 'Decrescente'
+ };
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['da-DK']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pt-BR']);
/**
- * Bootstrap Table Slovak translation
- * Author: Jozef Dúc
+ * Bootstrap Table Portuguese Portugal Translation
+ * Author: Burnspirit
+ * Update: @misteregis
*/
- $$2.fn.bootstrapTable.locales['sk-SK'] = $$2.fn.bootstrapTable.locales['sk'] = {
+ $$2.fn.bootstrapTable.locales['pt-PT'] = $$2.fn.bootstrapTable.locales['pt'] = {
formatCopyRows: function formatCopyRows() {
- return 'Skopírovať riadky';
+ return 'Copiar Linhas';
},
formatPrint: function formatPrint() {
- return 'Vytlačiť';
+ return 'Imprimir';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Prosím čakajte';
+ return 'A carregar, por favor aguarde';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " z\xE1znamov na stranu");
+ return "".concat(pageNumber, " registos por p\xE1gina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
+ var plural = totalRows > 1 ? 's' : '';
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Zobrazen\xE1 ".concat(pageFrom, ". - ").concat(pageTo, ". polo\u017Eka z celkov\xFDch ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "A mostrar ".concat(pageFrom, " até ").concat(pageTo, " de ").concat(totalRows, " linha").concat(plural, " (filtrado de um total de ").concat(totalNotFiltered, " linha").concat(plural, ")");
}
- return "Zobrazen\xE1 ".concat(pageFrom, ". - ").concat(pageTo, ". polo\u017Eka z celkov\xFDch ").concat(totalRows);
+ return "A mostrar ".concat(pageFrom, " at\xE9 ").concat(pageTo, " de ").concat(totalRows, " linha").concat(plural);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'Predchádzajúca strana';
+ return 'página anterior';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "na stranu ".concat(page);
+ return "ir para p\xE1gina ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'Nasledujúca strana';
+ return 'próxima página';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Zobrazuje sa ".concat(totalRows, " riadkov");
+ return "Mostrando ".concat(totalRows, " linha").concat(totalRows > 1 ? 's' : '');
},
formatClearSearch: function formatClearSearch() {
- return 'Odstráň filtre';
+ return 'Limpar Pesquisa';
},
formatSearch: function formatSearch() {
- return 'Vyhľadávanie';
+ return 'Pesquisa';
},
formatNoMatches: function formatNoMatches() {
- return 'Nenájdená žiadna vyhovujúca položka';
+ return 'Nenhum registo encontrado';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Skry/Zobraz stránkovanie';
+ return 'Esconder/Mostrar paginação';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Zobraziť stránkovanie';
+ return 'Mostrar página';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Skryť stránkovanie';
+ return 'Esconder página';
},
formatRefresh: function formatRefresh() {
- return 'Obnoviť';
+ return 'Actualizar';
},
formatToggleOn: function formatToggleOn() {
- return 'Zobraziť kartové zobrazenie';
+ return 'Mostrar vista em forma de cartão';
},
formatToggleOff: function formatToggleOff() {
- return 'skryť kartové zobrazenie';
+ return 'Esconder vista em forma de cartão';
},
formatColumns: function formatColumns() {
- return 'Stĺpce';
+ return 'Colunas';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Prepnúť všetky';
+ return 'Activar tudo';
},
formatFullscreen: function formatFullscreen() {
- return 'Celá obrazovka';
+ return 'Ecrã completo';
},
formatAllRows: function formatAllRows() {
- return 'Všetky';
+ return 'Tudo';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Automatické obnovenie';
+ return 'Actualização autmática';
},
formatExport: function formatExport() {
- return 'Exportuj dáta';
+ return 'Exportar dados';
},
formatJumpTo: function formatJumpTo() {
- return 'Ísť';
+ return 'Avançar';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Pokročilé vyhľadávanie';
+ return 'Pesquisa avançada';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Zatvoriť';
+ return 'Fechar';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Zobraziť/Skryť tlačidlá';
+ return 'Ocultar/Exibir controles';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Skryť tlačidlá';
+ return 'Esconder controlos';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Zobraziť tlačidlá';
+ return 'Exibir controlos';
+ },
+ formatAddLevel: function formatAddLevel() {
+ return 'Adicionar nível';
+ },
+ formatCancel: function formatCancel() {
+ return 'Cancelar';
+ },
+ formatColumn: function formatColumn() {
+ return 'Coluna';
+ },
+ formatDeleteLevel: function formatDeleteLevel() {
+ return 'Remover nível';
+ },
+ formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
+ return 'Foram encontradas entradas duplicadas!';
+ },
+ formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
+ return 'Por favor, remova ou altere as colunas duplicadas';
+ },
+ formatMultipleSort: function formatMultipleSort() {
+ return 'Ordenação múltipla';
+ },
+ formatOrder: function formatOrder() {
+ return 'Ordem';
+ },
+ formatSort: function formatSort() {
+ return 'Ordenar';
+ },
+ formatSortBy: function formatSortBy() {
+ return 'Ordenar por';
+ },
+ formatThenBy: function formatThenBy() {
+ return 'em seguida';
+ },
+ formatSortOrders: function formatSortOrders() {
+ return {
+ asc: 'Ascendente',
+ desc: 'Descendente'
+ };
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sk-SK']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['pt-PT']);
/**
- * Bootstrap Table Russian translation
- * Author: Dunaevsky Maxim
+ * Bootstrap Table Romanian translation
+ * Author: cristake
*/
- $$2.fn.bootstrapTable.locales['ru-RU'] = $$2.fn.bootstrapTable.locales['ru'] = {
+ $$2.fn.bootstrapTable.locales['ro-RO'] = $$2.fn.bootstrapTable.locales['ro'] = {
formatCopyRows: function formatCopyRows() {
- return 'Скопировать строки';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'Печать';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Пожалуйста, подождите, идёт загрузка';
+ return 'Se incarca, va rugam asteptati';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443");
+ return "".concat(pageNumber, " inregistrari pe pagina");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows, " (\u043E\u0442\u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u043D\u043E, \u0432\u0441\u0435\u0433\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 ").concat(totalNotFiltered, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439)");
+ return "Arata de la ".concat(pageFrom, " pana la ").concat(pageTo, " din ").concat(totalRows, " randuri (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows);
+ return "Arata de la ".concat(pageFrom, " pana la ").concat(pageTo, " din ").concat(totalRows, " randuri");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'предыдущая страница';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "\u043F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 ".concat(page);
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'следующая страница';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u043E ".concat(totalRows, " \u0441\u0442\u0440\u043E\u043A");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Очистить фильтры';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Поиск';
+ return 'Cauta';
},
formatNoMatches: function formatNoMatches() {
- return 'Ничего не найдено';
+ return 'Nu au fost gasite inregistrari';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Скрыть/Показать постраничную навигацию';
+ return 'Ascunde/Arata paginatia';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Показать постраничную навигацию';
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Скрыть постраничную навигацию';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Обновить';
+ return 'Reincarca';
},
formatToggleOn: function formatToggleOn() {
- return 'Показать записи в виде карточек';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return 'Табличный режим просмотра';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Колонки';
+ return 'Coloane';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Выбрать все';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return 'Полноэкранный режим';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Все';
+ return 'Toate';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Автоматическое обновление';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Экспортировать данные';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
- return 'Стр.';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Расширенный поиск';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Закрыть';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Скрыть/Показать панель инструментов';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Скрыть панель инструментов';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Показать панель инструментов';
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ru-RU']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ro-RO']);
/**
- * Bootstrap Table Serbian Latin RS translation
- * Author: Vladimir Kanazir (vladimir@kanazir.com)
+ * Bootstrap Table Russian translation
+ * Author: Dunaevsky Maxim
*/
- $$2.fn.bootstrapTable.locales['sr-Latn-RS'] = {
+ $$2.fn.bootstrapTable.locales['ru-RU'] = $$2.fn.bootstrapTable.locales['ru'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Скопировать строки';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Печать';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Molim sačekaj';
+ return 'Пожалуйста, подождите, идёт загрузка';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " redova po strani");
+ return "".concat(pageNumber, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Prikazano ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja redova ").concat(totalRows, " (filtrirano od ").concat(totalNotFiltered, ")");
+ return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows, " (\u043E\u0442\u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u043D\u043E, \u0432\u0441\u0435\u0433\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 ").concat(totalNotFiltered, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439)");
}
- return "Prikazano ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja redova ").concat(totalRows);
+ return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'prethodna strana';
+ return 'предыдущая страница';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "na stranu ".concat(page);
+ return "\u043F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'sledeća strana';
+ return 'следующая страница';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Prikazano ".concat(totalRows, " redova");
+ return "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u043E ".concat(totalRows, " \u0441\u0442\u0440\u043E\u043A");
},
formatClearSearch: function formatClearSearch() {
- return 'Obriši pretragu';
+ return 'Очистить фильтры';
},
formatSearch: function formatSearch() {
- return 'Pronađi';
+ return 'Поиск';
},
formatNoMatches: function formatNoMatches() {
- return 'Nije pronađen ni jedan podatak';
+ return 'Ничего не найдено';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Prikaži/sakrij paginaciju';
+ return 'Скрыть/Показать постраничную навигацию';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Prikaži paginaciju';
+ return 'Показать постраничную навигацию';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Sakrij paginaciju';
+ return 'Скрыть постраничную навигацию';
},
formatRefresh: function formatRefresh() {
- return 'Osveži';
+ return 'Обновить';
},
formatToggleOn: function formatToggleOn() {
- return 'Prikaži kartice';
+ return 'Показать записи в виде карточек';
},
formatToggleOff: function formatToggleOff() {
- return 'Sakrij kartice';
+ return 'Табличный режим просмотра';
},
formatColumns: function formatColumns() {
- return 'Kolone';
+ return 'Колонки';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Prikaži/sakrij sve';
+ return 'Выбрать все';
},
formatFullscreen: function formatFullscreen() {
- return 'Ceo ekran';
+ return 'Полноэкранный режим';
},
formatAllRows: function formatAllRows() {
- return 'Sve';
+ return 'Все';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Automatsko osvežavanje';
+ return 'Автоматическое обновление';
},
formatExport: function formatExport() {
- return 'Izvezi podatke';
+ return 'Экспортировать данные';
},
formatJumpTo: function formatJumpTo() {
- return 'Idi';
+ return 'Стр.';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Napredna pretraga';
+ return 'Расширенный поиск';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Zatvori';
+ return 'Закрыть';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Скрыть/Показать панель инструментов';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Скрыть панель инструментов';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Показать панель инструментов';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sr-Latn-RS']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ru-RU']);
/**
- * Bootstrap Table Swedish translation
- * Author: C Bratt
+ * Bootstrap Table Slovak translation
+ * Author: Jozef Dúc
*/
- $$2.fn.bootstrapTable.locales['sv-SE'] = $$2.fn.bootstrapTable.locales['sv'] = {
+ $$2.fn.bootstrapTable.locales['sk-SK'] = $$2.fn.bootstrapTable.locales['sk'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Skopírovať riadky';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Vytlačiť';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Laddar, vänligen vänta';
+ return 'Prosím čakajte';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " rader per sida");
+ return "".concat(pageNumber, " z\xE1znamov na stranu");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Visa ".concat(pageFrom, " till ").concat(pageTo, " av ").concat(totalRows, " rader (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Zobrazen\xE1 ".concat(pageFrom, ". - ").concat(pageTo, ". polo\u017Eka z celkov\xFDch ").concat(totalRows, " (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Visa ".concat(pageFrom, " till ").concat(pageTo, " av ").concat(totalRows, " rader");
+ return "Zobrazen\xE1 ".concat(pageFrom, ". - ").concat(pageTo, ". polo\u017Eka z celkov\xFDch ").concat(totalRows);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'Predchádzajúca strana';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "na stranu ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'Nasledujúca strana';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "Zobrazuje sa ".concat(totalRows, " riadkov");
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Odstráň filtre';
},
formatSearch: function formatSearch() {
- return 'Sök';
+ return 'Vyhľadávanie';
},
formatNoMatches: function formatNoMatches() {
- return 'Inga matchande resultat funna.';
+ return 'Nenájdená žiadna vyhovujúca položka';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
+ return 'Skry/Zobraz stránkovanie';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Zobraziť stránkovanie';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Skryť stránkovanie';
},
formatRefresh: function formatRefresh() {
- return 'Uppdatera';
+ return 'Obnoviť';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Zobraziť kartové zobrazenie';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'skryť kartové zobrazenie';
},
formatColumns: function formatColumns() {
- return 'kolumn';
+ return 'Stĺpce';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Prepnúť všetky';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Celá obrazovka';
},
formatAllRows: function formatAllRows() {
- return 'All';
+ return 'Všetky';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Automatické obnovenie';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Exportuj dáta';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'Ísť';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Pokročilé vyhľadávanie';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Zatvoriť';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Zobraziť/Skryť tlačidlá';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Skryť tlačidlá';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Zobraziť tlačidlá';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sv-SE']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sk-SK']);
/**
* Bootstrap Table Slovenian translation
@@ -6398,115 +6452,113 @@
Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sl-SI']);
/**
- * Bootstrap Table Turkish translation
- * Author: Emin Şen
- * Author: Sercan Cakir
- * Update From: Sait KURT
+ * Bootstrap Table Serbian Cyrilic RS translation
+ * Author: Vladimir Kanazir (vladimir@kanazir.com)
*/
- $$2.fn.bootstrapTable.locales['tr-TR'] = $$2.fn.bootstrapTable.locales['tr'] = {
+ $$2.fn.bootstrapTable.locales['sr-Cyrl-RS'] = $$2.fn.bootstrapTable.locales['sr'] = {
formatCopyRows: function formatCopyRows() {
- return 'Satırları Kopyala';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return 'Yazdır';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Yükleniyor, lütfen bekleyin';
+ return 'Молим сачекај';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "Sayfa ba\u015F\u0131na ".concat(pageNumber, " kay\u0131t.");
+ return "".concat(pageNumber, " \u0440\u0435\u0434\u043E\u0432\u0430 \u043F\u043E \u0441\u0442\u0440\u0430\u043D\u0438");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "".concat(totalRows, " kay\u0131ttan ").concat(pageFrom, "-").concat(pageTo, " aras\u0131 g\xF6steriliyor (").concat(totalNotFiltered, " toplam sat\u0131r filtrelendi).");
+ return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(pageFrom, ". - ").concat(pageTo, ". \u043E\u0434 \u0443\u043A\u0443\u043F\u043D\u043E\u0433 \u0431\u0440\u043E\u0458\u0430 \u0440\u0435\u0434\u043E\u0432\u0430 ").concat(totalRows, " (\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u043E \u043E\u0434 ").concat(totalNotFiltered, ")");
}
- return "".concat(totalRows, " kay\u0131ttan ").concat(pageFrom, "-").concat(pageTo, " aras\u0131 g\xF6steriliyor.");
+ return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(pageFrom, ". - ").concat(pageTo, ". \u043E\u0434 \u0443\u043A\u0443\u043F\u043D\u043E\u0433 \u0431\u0440\u043E\u0458\u0430 \u0440\u0435\u0434\u043E\u0432\u0430 ").concat(totalRows);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'önceki sayfa';
+ return 'претходна страна';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "sayfa ".concat(page);
+ return "\u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0443 ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'sonraki sayfa';
+ return 'следећа страна';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "".concat(totalRows, " sat\u0131r g\xF6steriliyor");
+ return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(totalRows, " \u0440\u0435\u0434\u043E\u0432\u0430");
},
formatClearSearch: function formatClearSearch() {
- return 'Aramayı Temizle';
+ return 'Обриши претрагу';
},
formatSearch: function formatSearch() {
- return 'Ara';
+ return 'Пронађи';
},
formatNoMatches: function formatNoMatches() {
- return 'Eşleşen kayıt bulunamadı.';
+ return 'Није пронађен ни један податак';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Sayfalamayı Gizle/Göster';
+ return 'Прикажи/сакриј пагинацију';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Sayfalamayı Göster';
+ return 'Прикажи пагинацију';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Sayfalamayı Gizle';
+ return 'Сакриј пагинацију';
},
formatRefresh: function formatRefresh() {
- return 'Yenile';
+ return 'Освежи';
},
formatToggleOn: function formatToggleOn() {
- return 'Kart Görünümünü Göster';
+ return 'Прикажи картице';
},
formatToggleOff: function formatToggleOff() {
- return 'Kart Görünümünü Gizle';
+ return 'Сакриј картице';
},
formatColumns: function formatColumns() {
- return 'Sütunlar';
+ return 'Колоне';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Tümünü Kapat';
+ return 'Прикажи/сакриј све';
},
formatFullscreen: function formatFullscreen() {
- return 'Tam Ekran';
+ return 'Цео екран';
},
formatAllRows: function formatAllRows() {
- return 'Tüm Satırlar';
+ return 'Све';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Otomatik Yenileme';
+ return 'Аутоматско освежавање';
},
formatExport: function formatExport() {
- return 'Verileri Dışa Aktar';
+ return 'Извези податке';
},
formatJumpTo: function formatJumpTo() {
- return 'Git';
+ return 'Иди';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Gelişmiş Arama';
+ return 'Напредна претрага';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Kapat';
+ return 'Затвори';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Kontrolleri Gizle/Göster';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Kontrolleri Gizle';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Kontrolleri Göster';
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['tr-TR']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sr-Cyrl-RS']);
/**
- * Bootstrap Table Serbian Cyrilic RS translation
+ * Bootstrap Table Serbian Latin RS translation
* Author: Vladimir Kanazir (vladimir@kanazir.com)
*/
- $$2.fn.bootstrapTable.locales['sr-Cyrl-RS'] = $$2.fn.bootstrapTable.locales['sr'] = {
+ $$2.fn.bootstrapTable.locales['sr-Latn-RS'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -6514,82 +6566,82 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Молим сачекај';
+ return 'Molim sačekaj';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u0440\u0435\u0434\u043E\u0432\u0430 \u043F\u043E \u0441\u0442\u0440\u0430\u043D\u0438");
+ return "".concat(pageNumber, " redova po strani");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(pageFrom, ". - ").concat(pageTo, ". \u043E\u0434 \u0443\u043A\u0443\u043F\u043D\u043E\u0433 \u0431\u0440\u043E\u0458\u0430 \u0440\u0435\u0434\u043E\u0432\u0430 ").concat(totalRows, " (\u0444\u0438\u043B\u0442\u0440\u0438\u0440\u0430\u043D\u043E \u043E\u0434 ").concat(totalNotFiltered, ")");
+ return "Prikazano ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja redova ").concat(totalRows, " (filtrirano od ").concat(totalNotFiltered, ")");
}
- return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(pageFrom, ". - ").concat(pageTo, ". \u043E\u0434 \u0443\u043A\u0443\u043F\u043D\u043E\u0433 \u0431\u0440\u043E\u0458\u0430 \u0440\u0435\u0434\u043E\u0432\u0430 ").concat(totalRows);
+ return "Prikazano ".concat(pageFrom, ". - ").concat(pageTo, ". od ukupnog broja redova ").concat(totalRows);
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'претходна страна';
+ return 'prethodna strana';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "\u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0443 ".concat(page);
+ return "na stranu ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'следећа страна';
+ return 'sledeća strana';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "\u041F\u0440\u0438\u043A\u0430\u0437\u0430\u043D\u043E ".concat(totalRows, " \u0440\u0435\u0434\u043E\u0432\u0430");
+ return "Prikazano ".concat(totalRows, " redova");
},
formatClearSearch: function formatClearSearch() {
- return 'Обриши претрагу';
+ return 'Obriši pretragu';
},
formatSearch: function formatSearch() {
- return 'Пронађи';
+ return 'Pronađi';
},
formatNoMatches: function formatNoMatches() {
- return 'Није пронађен ни један податак';
+ return 'Nije pronađen ni jedan podatak';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Прикажи/сакриј пагинацију';
+ return 'Prikaži/sakrij paginaciju';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Прикажи пагинацију';
+ return 'Prikaži paginaciju';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Сакриј пагинацију';
+ return 'Sakrij paginaciju';
},
formatRefresh: function formatRefresh() {
- return 'Освежи';
+ return 'Osveži';
},
formatToggleOn: function formatToggleOn() {
- return 'Прикажи картице';
+ return 'Prikaži kartice';
},
formatToggleOff: function formatToggleOff() {
- return 'Сакриј картице';
+ return 'Sakrij kartice';
},
formatColumns: function formatColumns() {
- return 'Колоне';
+ return 'Kolone';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Прикажи/сакриј све';
+ return 'Prikaži/sakrij sve';
},
formatFullscreen: function formatFullscreen() {
- return 'Цео екран';
+ return 'Ceo ekran';
},
formatAllRows: function formatAllRows() {
- return 'Све';
+ return 'Sve';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Аутоматско освежавање';
+ return 'Automatsko osvežavanje';
},
formatExport: function formatExport() {
- return 'Извези податке';
+ return 'Izvezi podatke';
},
formatJumpTo: function formatJumpTo() {
- return 'Иди';
+ return 'Idi';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Напредна претрага';
+ return 'Napredna pretraga';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Затвори';
+ return 'Zatvori';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
return 'Hide/Show controls';
@@ -6601,14 +6653,14 @@
return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sr-Cyrl-RS']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sr-Latn-RS']);
/**
- * Bootstrap Table Uzbek translation
- * Author: Nabijon Masharipov
+ * Bootstrap Table Swedish translation
+ * Author: C Bratt
*/
- $$2.fn.bootstrapTable.locales['uz-Latn-UZ'] = $$2.fn.bootstrapTable.locales['uz'] = {
+ $$2.fn.bootstrapTable.locales['sv-SE'] = $$2.fn.bootstrapTable.locales['sv'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -6616,16 +6668,16 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'Yuklanyapti, iltimos kuting';
+ return 'Laddar, vänligen vänta';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " qator har sahifada");
+ return "".concat(pageNumber, " rader per sida");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Ko'rsatypati ".concat(pageFrom, " dan ").concat(pageTo, " gacha ").concat(totalRows, " qatorlarni (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "Visa ".concat(pageFrom, " till ").concat(pageTo, " av ").concat(totalRows, " rader (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "Ko'rsatypati ".concat(pageFrom, " dan ").concat(pageTo, " gacha ").concat(totalRows, " qatorlarni");
+ return "Visa ".concat(pageFrom, " till ").concat(pageTo, " av ").concat(totalRows, " rader");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
return 'previous page';
@@ -6640,16 +6692,16 @@
return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return 'Filtrlarni tozalash';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'Qidirish';
+ return 'Sök';
},
formatNoMatches: function formatNoMatches() {
- return 'Hech narsa topilmadi';
+ return 'Inga matchande resultat funna.';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Sahifalashni yashirish/ko\'rsatish';
+ return 'Hide/Show pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
return 'Show pagination';
@@ -6658,7 +6710,7 @@
return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'Yangilash';
+ return 'Uppdatera';
},
formatToggleOn: function formatToggleOn() {
return 'Show card view';
@@ -6667,7 +6719,7 @@
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'Ustunlar';
+ return 'kolumn';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
return 'Toggle all';
@@ -6676,13 +6728,13 @@
return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return 'Hammasi';
+ return 'All';
},
formatAutoRefresh: function formatAutoRefresh() {
return 'Auto Refresh';
},
formatExport: function formatExport() {
- return 'Eksport';
+ return 'Export data';
},
formatJumpTo: function formatJumpTo() {
return 'GO';
@@ -6703,14 +6755,14 @@
return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['uz-Latn-UZ']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['sv-SE']);
/**
- * Bootstrap Table Urdu translation
- * Author: Malik
+ * Bootstrap Table Thai translation
+ * Author: Monchai S.
*/
- $$2.fn.bootstrapTable.locales['ur-PK'] = $$2.fn.bootstrapTable.locales['ur'] = {
+ $$2.fn.bootstrapTable.locales['th-TH'] = $$2.fn.bootstrapTable.locales['th'] = {
formatCopyRows: function formatCopyRows() {
return 'Copy Rows';
},
@@ -6718,16 +6770,16 @@
return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'براۓ مہربانی انتظار کیجئے';
+ return 'กำลังโหลดข้อมูล, กรุณารอสักครู่';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u0631\u06CC\u06A9\u0627\u0631\u0688\u0632 \u0641\u06CC \u0635\u0641\u06C1 ");
+ return "".concat(pageNumber, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D\u0E2B\u0E19\u0E49\u0E32");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u062F\u06CC\u06A9\u06BE\u06CC\u06BA ".concat(pageFrom, " \u0633\u06D2 ").concat(pageTo, " \u06A9\u06D2 ").concat(totalRows, "\u0631\u06CC\u06A9\u0627\u0631\u0688\u0632 (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48 ".concat(pageFrom, " \u0E16\u0E36\u0E07 ").concat(pageTo, " \u0E08\u0E32\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 ").concat(totalRows, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23 (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "\u062F\u06CC\u06A9\u06BE\u06CC\u06BA ".concat(pageFrom, " \u0633\u06D2 ").concat(pageTo, " \u06A9\u06D2 ").concat(totalRows, "\u0631\u06CC\u06A9\u0627\u0631\u0688\u0632");
+ return "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48 ".concat(pageFrom, " \u0E16\u0E36\u0E07 ").concat(pageTo, " \u0E08\u0E32\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 ").concat(totalRows, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
return 'previous page';
@@ -6745,10 +6797,10 @@
return 'Clear Search';
},
formatSearch: function formatSearch() {
- return 'تلاش';
+ return 'ค้นหา';
},
formatNoMatches: function formatNoMatches() {
- return 'کوئی ریکارڈ نہیں ملا';
+ return 'ไม่พบรายการที่ค้นหา !';
},
formatPaginationSwitch: function formatPaginationSwitch() {
return 'Hide/Show pagination';
@@ -6760,7 +6812,7 @@
return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return 'تازہ کریں';
+ return 'รีเฟรส';
},
formatToggleOn: function formatToggleOn() {
return 'Show card view';
@@ -6769,7 +6821,7 @@
return 'Hide card view';
},
formatColumns: function formatColumns() {
- return 'کالم';
+ return 'คอลัมน์';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
return 'Toggle all';
@@ -6805,109 +6857,111 @@
return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ur-PK']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['th-TH']);
/**
- * Bootstrap Table Thai translation
- * Author: Monchai S.
+ * Bootstrap Table Turkish translation
+ * Author: Emin Şen
+ * Author: Sercan Cakir
+ * Update From: Sait KURT
*/
- $$2.fn.bootstrapTable.locales['th-TH'] = $$2.fn.bootstrapTable.locales['th'] = {
+ $$2.fn.bootstrapTable.locales['tr-TR'] = $$2.fn.bootstrapTable.locales['tr'] = {
formatCopyRows: function formatCopyRows() {
- return 'Copy Rows';
+ return 'Satırları Kopyala';
},
formatPrint: function formatPrint() {
- return 'Print';
+ return 'Yazdır';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'กำลังโหลดข้อมูล, กรุณารอสักครู่';
+ return 'Yükleniyor, lütfen bekleyin';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D\u0E2B\u0E19\u0E49\u0E32");
+ return "Sayfa ba\u015F\u0131na ".concat(pageNumber, " kay\u0131t.");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48 ".concat(pageFrom, " \u0E16\u0E36\u0E07 ").concat(pageTo, " \u0E08\u0E32\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 ").concat(totalRows, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23 (filtered from ").concat(totalNotFiltered, " total rows)");
+ return "".concat(totalRows, " kay\u0131ttan ").concat(pageFrom, "-").concat(pageTo, " aras\u0131 g\xF6steriliyor (").concat(totalNotFiltered, " toplam sat\u0131r filtrelendi).");
}
- return "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48 ".concat(pageFrom, " \u0E16\u0E36\u0E07 ").concat(pageTo, " \u0E08\u0E32\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 ").concat(totalRows, " \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23");
+ return "".concat(totalRows, " kay\u0131ttan ").concat(pageFrom, "-").concat(pageTo, " aras\u0131 g\xF6steriliyor.");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'previous page';
+ return 'önceki sayfa';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "to page ".concat(page);
+ return "sayfa ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'next page';
+ return 'sonraki sayfa';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "Showing ".concat(totalRows, " rows");
+ return "".concat(totalRows, " sat\u0131r g\xF6steriliyor");
},
formatClearSearch: function formatClearSearch() {
- return 'Clear Search';
+ return 'Aramayı Temizle';
},
formatSearch: function formatSearch() {
- return 'ค้นหา';
+ return 'Ara';
},
formatNoMatches: function formatNoMatches() {
- return 'ไม่พบรายการที่ค้นหา !';
+ return 'Eşleşen kayıt bulunamadı.';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
+ return 'Sayfalamayı Gizle/Göster';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Show pagination';
+ return 'Sayfalamayı Göster';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Hide pagination';
+ return 'Sayfalamayı Gizle';
},
formatRefresh: function formatRefresh() {
- return 'รีเฟรส';
+ return 'Yenile';
},
formatToggleOn: function formatToggleOn() {
- return 'Show card view';
+ return 'Kart Görünümünü Göster';
},
formatToggleOff: function formatToggleOff() {
- return 'Hide card view';
+ return 'Kart Görünümünü Gizle';
},
formatColumns: function formatColumns() {
- return 'คอลัมน์';
+ return 'Sütunlar';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Toggle all';
+ return 'Tümünü Kapat';
},
formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
+ return 'Tam Ekran';
},
formatAllRows: function formatAllRows() {
- return 'All';
+ return 'Tüm Satırlar';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'Auto Refresh';
+ return 'Otomatik Yenileme';
},
formatExport: function formatExport() {
- return 'Export data';
+ return 'Verileri Dışa Aktar';
},
formatJumpTo: function formatJumpTo() {
- return 'GO';
+ return 'Git';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Advanced search';
+ return 'Gelişmiş Arama';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Close';
+ return 'Kapat';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Hide/Show controls';
+ return 'Kontrolleri Gizle/Göster';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Hide controls';
+ return 'Kontrolleri Gizle';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Show controls';
+ return 'Kontrolleri Göster';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['th-TH']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['tr-TR']);
/**
* Bootstrap Table Ukrainian translation
@@ -7012,106 +7066,208 @@
Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['uk-UA']);
/**
- * Bootstrap Table Chinese translation
- * Author: Zhixin Wen
+ * Bootstrap Table Urdu translation
+ * Author: Malik
*/
- $$2.fn.bootstrapTable.locales['zh-TW'] = {
+ $$2.fn.bootstrapTable.locales['ur-PK'] = $$2.fn.bootstrapTable.locales['ur'] = {
formatCopyRows: function formatCopyRows() {
- return '複製行';
+ return 'Copy Rows';
},
formatPrint: function formatPrint() {
- return '列印';
+ return 'Print';
},
formatLoadingMessage: function formatLoadingMessage() {
- return '正在努力地載入資料,請稍候';
+ return 'براۓ مہربانی انتظار کیجئے';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "\u6BCF\u9801\u986F\u793A ".concat(pageNumber, " \u9805\u8A18\u9304");
+ return "".concat(pageNumber, " \u0631\u06CC\u06A9\u0627\u0631\u0688\u0632 \u0641\u06CC \u0635\u0641\u06C1 ");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u986F\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u9805\u8A18\u9304\uFF0C\u7E3D\u5171 ").concat(totalRows, " \u9805\u8A18\u9304\uFF08\u5F9E ").concat(totalNotFiltered, " \u7E3D\u8A18\u9304\u4E2D\u904E\u6FFE\uFF09");
+ return "\u062F\u06CC\u06A9\u06BE\u06CC\u06BA ".concat(pageFrom, " \u0633\u06D2 ").concat(pageTo, " \u06A9\u06D2 ").concat(totalRows, "\u0631\u06CC\u06A9\u0627\u0631\u0688\u0632 (filtered from ").concat(totalNotFiltered, " total rows)");
}
- return "\u986F\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u9805\u8A18\u9304\uFF0C\u7E3D\u5171 ").concat(totalRows, " \u9805\u8A18\u9304");
+ return "\u062F\u06CC\u06A9\u06BE\u06CC\u06BA ".concat(pageFrom, " \u0633\u06D2 ").concat(pageTo, " \u06A9\u06D2 ").concat(totalRows, "\u0631\u06CC\u06A9\u0627\u0631\u0688\u0632");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return '上一頁';
+ return 'previous page';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "\u7B2C".concat(page, "\u9801");
+ return "to page ".concat(page);
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return '下一頁';
+ return 'next page';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "\u7E3D\u5171 ".concat(totalRows, " \u9805\u8A18\u9304");
+ return "Showing ".concat(totalRows, " rows");
},
formatClearSearch: function formatClearSearch() {
- return '清空過濾';
+ return 'Clear Search';
},
formatSearch: function formatSearch() {
- return '搜尋';
+ return 'تلاش';
},
formatNoMatches: function formatNoMatches() {
- return '沒有找到符合的結果';
+ return 'کوئی ریکارڈ نہیں ملا';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- return '隱藏/顯示分頁';
+ return 'Hide/Show pagination';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return '顯示分頁';
+ return 'Show pagination';
+ },
+ formatPaginationSwitchUp: function formatPaginationSwitchUp() {
+ return 'Hide pagination';
+ },
+ formatRefresh: function formatRefresh() {
+ return 'تازہ کریں';
+ },
+ formatToggleOn: function formatToggleOn() {
+ return 'Show card view';
+ },
+ formatToggleOff: function formatToggleOff() {
+ return 'Hide card view';
+ },
+ formatColumns: function formatColumns() {
+ return 'کالم';
+ },
+ formatColumnsToggleAll: function formatColumnsToggleAll() {
+ return 'Toggle all';
+ },
+ formatFullscreen: function formatFullscreen() {
+ return 'Fullscreen';
+ },
+ formatAllRows: function formatAllRows() {
+ return 'All';
+ },
+ formatAutoRefresh: function formatAutoRefresh() {
+ return 'Auto Refresh';
+ },
+ formatExport: function formatExport() {
+ return 'Export data';
+ },
+ formatJumpTo: function formatJumpTo() {
+ return 'GO';
+ },
+ formatAdvancedSearch: function formatAdvancedSearch() {
+ return 'Advanced search';
+ },
+ formatAdvancedCloseButton: function formatAdvancedCloseButton() {
+ return 'Close';
+ },
+ formatFilterControlSwitch: function formatFilterControlSwitch() {
+ return 'Hide/Show controls';
+ },
+ formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
+ return 'Hide controls';
+ },
+ formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
+ return 'Show controls';
+ }
+ };
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ur-PK']);
+
+ /**
+ * Bootstrap Table Uzbek translation
+ * Author: Nabijon Masharipov
+ */
+
+ $$2.fn.bootstrapTable.locales['uz-Latn-UZ'] = $$2.fn.bootstrapTable.locales['uz'] = {
+ formatCopyRows: function formatCopyRows() {
+ return 'Copy Rows';
+ },
+ formatPrint: function formatPrint() {
+ return 'Print';
+ },
+ formatLoadingMessage: function formatLoadingMessage() {
+ return 'Yuklanyapti, iltimos kuting';
+ },
+ formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
+ return "".concat(pageNumber, " qator har sahifada");
+ },
+ formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
+ if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
+ return "Ko'rsatypati ".concat(pageFrom, " dan ").concat(pageTo, " gacha ").concat(totalRows, " qatorlarni (filtered from ").concat(totalNotFiltered, " total rows)");
+ }
+ return "Ko'rsatypati ".concat(pageFrom, " dan ").concat(pageTo, " gacha ").concat(totalRows, " qatorlarni");
+ },
+ formatSRPaginationPreText: function formatSRPaginationPreText() {
+ return 'previous page';
+ },
+ formatSRPaginationPageText: function formatSRPaginationPageText(page) {
+ return "to page ".concat(page);
+ },
+ formatSRPaginationNextText: function formatSRPaginationNextText() {
+ return 'next page';
+ },
+ formatDetailPagination: function formatDetailPagination(totalRows) {
+ return "Showing ".concat(totalRows, " rows");
+ },
+ formatClearSearch: function formatClearSearch() {
+ return 'Filtrlarni tozalash';
+ },
+ formatSearch: function formatSearch() {
+ return 'Qidirish';
+ },
+ formatNoMatches: function formatNoMatches() {
+ return 'Hech narsa topilmadi';
+ },
+ formatPaginationSwitch: function formatPaginationSwitch() {
+ return 'Sahifalashni yashirish/ko\'rsatish';
+ },
+ formatPaginationSwitchDown: function formatPaginationSwitchDown() {
+ return 'Show pagination';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return '隱藏分頁';
+ return 'Hide pagination';
},
formatRefresh: function formatRefresh() {
- return '重新整理';
+ return 'Yangilash';
},
formatToggleOn: function formatToggleOn() {
- return '顯示卡片視圖';
+ return 'Show card view';
},
formatToggleOff: function formatToggleOff() {
- return '隱藏卡片視圖';
+ return 'Hide card view';
},
formatColumns: function formatColumns() {
- return '列';
+ return 'Ustunlar';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return '切換所有';
+ return 'Toggle all';
},
formatFullscreen: function formatFullscreen() {
- return '全屏';
+ return 'Fullscreen';
},
formatAllRows: function formatAllRows() {
- return '所有';
+ return 'Hammasi';
},
formatAutoRefresh: function formatAutoRefresh() {
- return '自動刷新';
+ return 'Auto Refresh';
},
formatExport: function formatExport() {
- return '導出數據';
+ return 'Eksport';
},
formatJumpTo: function formatJumpTo() {
- return '跳轉';
+ return 'GO';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return '高級搜尋';
+ return 'Advanced search';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return '關閉';
+ return 'Close';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return '隱藏/顯示過濾控制';
+ return 'Hide/Show controls';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return '隱藏過濾控制';
+ return 'Hide controls';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return '顯示過濾控制';
+ return 'Show controls';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['zh-TW']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['uz-Latn-UZ']);
/**
* Bootstrap Table Vietnamese translation
@@ -7216,156 +7372,6 @@
};
Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['vi-VN']);
- /**
- * Bootstrap Table Afrikaans translation
- * Author: Phillip Kruger
- */
-
- $$2.fn.bootstrapTable.locales['af-ZA'] = $$2.fn.bootstrapTable.locales['af'] = {
- formatCopyRows: function formatCopyRows() {
- return 'Kopieer lyne';
- },
- formatPrint: function formatPrint() {
- return 'Druk uit';
- },
- formatLoadingMessage: function formatLoadingMessage() {
- return 'Laai tans';
- },
- formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " re\xEBls per bladsy");
- },
- formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "Wys ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " lyne (gefiltreer vanaf ").concat(totalNotFiltered, " lyne)");
- }
- return "Wys ".concat(pageFrom, " tot ").concat(pageTo, " van ").concat(totalRows, " lyne");
- },
- formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'vorige bladsy';
- },
- formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "na bladsy ".concat(page);
- },
- formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'volgende bladsy';
- },
- formatDetailPagination: function formatDetailPagination(totalRows) {
- return "".concat(totalRows, "-re\xEBl vertoon");
- },
- formatClearSearch: function formatClearSearch() {
- return 'Duidelike soektog';
- },
- formatSearch: function formatSearch() {
- return 'Navorsing';
- },
- formatNoMatches: function formatNoMatches() {
- return 'Geen resultate nie';
- },
- formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Versteek/Wys paginasie';
- },
- formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'Wys paginasie';
- },
- formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'Versteek paginasie';
- },
- formatRefresh: function formatRefresh() {
- return 'Verfris';
- },
- formatToggleOn: function formatToggleOn() {
- return 'Wys kaartaansig';
- },
- formatToggleOff: function formatToggleOff() {
- return 'Versteek kaartaansig';
- },
- formatColumns: function formatColumns() {
- return 'Kolomme';
- },
- formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'Wys alles';
- },
- formatFullscreen: function formatFullscreen() {
- return 'Volskerm';
- },
- formatAllRows: function formatAllRows() {
- return 'Alles';
- },
- formatAutoRefresh: function formatAutoRefresh() {
- return 'Verfris outomaties';
- },
- formatExport: function formatExport() {
- return 'Voer data uit';
- },
- formatJumpTo: function formatJumpTo() {
- return 'Gaan na';
- },
- formatAdvancedSearch: function formatAdvancedSearch() {
- return 'Gevorderde soektog';
- },
- formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'Maak';
- },
- formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'Versteek/Wys kontroles';
- },
- formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'Versteek kontroles';
- },
- formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'Wys kontroles';
- },
- formatToggleCustomViewOn: function formatToggleCustomViewOn() {
- return 'Wys pasgemaakte aansig';
- },
- formatToggleCustomViewOff: function formatToggleCustomViewOff() {
- return 'Versteek pasgemaakte aansig';
- },
- formatClearFilters: function formatClearFilters() {
- return 'Verwyder filters';
- },
- formatAddLevel: function formatAddLevel() {
- return 'Voeg \'n vlak by';
- },
- formatCancel: function formatCancel() {
- return 'Kanselleer';
- },
- formatColumn: function formatColumn() {
- return 'Kolom';
- },
- formatDeleteLevel: function formatDeleteLevel() {
- return 'Vee \'n vlak uit';
- },
- formatDuplicateAlertTitle: function formatDuplicateAlertTitle() {
- return 'Duplikaatinskrywings is gevind!';
- },
- formatDuplicateAlertDescription: function formatDuplicateAlertDescription() {
- return 'Verwyder of wysig asseblief duplikaatinskrywings';
- },
- formatMultipleSort: function formatMultipleSort() {
- return 'Multi-sorteer';
- },
- formatOrder: function formatOrder() {
- return 'Bestelling';
- },
- formatSort: function formatSort() {
- return 'Rangskik';
- },
- formatSortBy: function formatSortBy() {
- return 'Sorteer volgens';
- },
- formatSortOrders: function formatSortOrders() {
- return {
- asc: 'Stygende',
- desc: 'Dalende'
- };
- },
- formatThenBy: function formatThenBy() {
- return 'Dan deur';
- }
- };
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['af-ZA']);
-
/**
* Bootstrap Table Chinese translation
* Author: Zhixin Wen
@@ -7469,106 +7475,105 @@
Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['zh-CN']);
/**
- * Bootstrap Table Arabic translation
- * Author: Othman Ali Modaes
+ * Bootstrap Table Chinese translation
+ * Author: Zhixin Wen
*/
- $$2.fn.bootstrapTable.locales['ar-SA'] = $$2.fn.bootstrapTable.locales['ar'] = {
+ $$2.fn.bootstrapTable.locales['zh-TW'] = {
formatCopyRows: function formatCopyRows() {
- return 'نسخ الصفوف';
+ return '複製行';
},
formatPrint: function formatPrint() {
- return 'طباعة';
+ return '列印';
},
formatLoadingMessage: function formatLoadingMessage() {
- return 'جارٍ التحميل، يرجى الانتظار...';
+ return '正在努力地載入資料,請稍候';
},
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return "".concat(pageNumber, " \u0635\u0641 \u0644\u0643\u0644 \u0635\u0641\u062D\u0629");
+ return "\u6BCF\u9801\u986F\u793A ".concat(pageNumber, " \u9805\u8A18\u9304");
},
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return "\u0627\u0644\u0638\u0627\u0647\u0631 ".concat(pageFrom, " \u0625\u0644\u0649 ").concat(pageTo, " \u0645\u0646 ").concat(totalRows, " \u0633\u062C\u0644 ").concat(totalNotFiltered, " \u0625\u062C\u0645\u0627\u0644\u064A \u0627\u0644\u0635\u0641\u0648\u0641)");
+ return "\u986F\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u9805\u8A18\u9304\uFF0C\u7E3D\u5171 ").concat(totalRows, " \u9805\u8A18\u9304\uFF08\u5F9E ").concat(totalNotFiltered, " \u7E3D\u8A18\u9304\u4E2D\u904E\u6FFE\uFF09");
}
- return "\u0627\u0644\u0638\u0627\u0647\u0631 ".concat(pageFrom, " \u0625\u0644\u0649 ").concat(pageTo, " \u0645\u0646 ").concat(totalRows, " \u0633\u062C\u0644");
+ return "\u986F\u793A\u7B2C ".concat(pageFrom, " \u5230\u7B2C ").concat(pageTo, " \u9805\u8A18\u9304\uFF0C\u7E3D\u5171 ").concat(totalRows, " \u9805\u8A18\u9304");
},
formatSRPaginationPreText: function formatSRPaginationPreText() {
- return 'الصفحة السابقة';
+ return '上一頁';
},
formatSRPaginationPageText: function formatSRPaginationPageText(page) {
- return "\u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062D\u0629 ".concat(page);
+ return "\u7B2C".concat(page, "\u9801");
},
formatSRPaginationNextText: function formatSRPaginationNextText() {
- return 'الصفحة التالية';
+ return '下一頁';
},
formatDetailPagination: function formatDetailPagination(totalRows) {
- return "\u0639\u0631\u0636 ".concat(totalRows, " \u0623\u0639\u0645\u062F\u0629");
+ return "\u7E3D\u5171 ".concat(totalRows, " \u9805\u8A18\u9304");
},
formatClearSearch: function formatClearSearch() {
- return 'مسح مربع البحث';
+ return '清空過濾';
},
formatSearch: function formatSearch() {
- return 'بحث';
+ return '搜尋';
},
formatNoMatches: function formatNoMatches() {
- return 'لا توجد نتائج مطابقة للبحث';
+ return '沒有找到符合的結果';
},
formatPaginationSwitch: function formatPaginationSwitch() {
- /* eslint-disable no-useless-escape */
- return 'إخفاء/إظهار ترقيم الصفحات';
+ return '隱藏/顯示分頁';
},
formatPaginationSwitchDown: function formatPaginationSwitchDown() {
- return 'إظهار ترقيم الصفحات';
+ return '顯示分頁';
},
formatPaginationSwitchUp: function formatPaginationSwitchUp() {
- return 'إخفاء ترقيم الصفحات';
+ return '隱藏分頁';
},
formatRefresh: function formatRefresh() {
- return 'تحديث';
+ return '重新整理';
},
formatToggleOn: function formatToggleOn() {
- return 'إظهار كبطاقات';
+ return '顯示卡片視圖';
},
formatToggleOff: function formatToggleOff() {
- return 'إلغاء البطاقات';
+ return '隱藏卡片視圖';
},
formatColumns: function formatColumns() {
- return 'أعمدة';
+ return '列';
},
formatColumnsToggleAll: function formatColumnsToggleAll() {
- return 'تبديل الكل';
+ return '切換所有';
},
formatFullscreen: function formatFullscreen() {
- return 'الشاشة كاملة';
+ return '全屏';
},
formatAllRows: function formatAllRows() {
- return 'الكل';
+ return '所有';
},
formatAutoRefresh: function formatAutoRefresh() {
- return 'تحديث تلقائي';
+ return '自動刷新';
},
formatExport: function formatExport() {
- return 'تصدير البيانات';
+ return '導出數據';
},
formatJumpTo: function formatJumpTo() {
- return 'قفز';
+ return '跳轉';
},
formatAdvancedSearch: function formatAdvancedSearch() {
- return 'بحث متقدم';
+ return '高級搜尋';
},
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
- return 'إغلاق';
+ return '關閉';
},
formatFilterControlSwitch: function formatFilterControlSwitch() {
- return 'عرض/إخفاء عناصر التصفية';
+ return '隱藏/顯示過濾控制';
},
formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
- return 'إخفاء عناصر التصفية';
+ return '隱藏過濾控制';
},
formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
- return 'عرض عناصر التصفية';
+ return '顯示過濾控制';
}
};
- Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['ar-SA']);
+ Object.assign($$2.fn.bootstrapTable.defaults, $$2.fn.bootstrapTable.locales['zh-TW']);
}));
diff --git a/dist/bootstrap-table-locale-all.min.js b/dist/bootstrap-table-locale-all.min.js
index b7fd59a5a..f09d88f10 100644
--- a/dist/bootstrap-table-locale-all.min.js
+++ b/dist/bootstrap-table-locale-all.min.js
@@ -1,10 +1,10 @@
/**
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
*
- * @version v1.23.2
+ * @version v1.23.3
* @homepage https://bootstrap-table.com
* @author wenzhixin (http://wenzhixin.net.cn/)
* @license MIT
*/
-!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],n):n((t="undefined"!=typeof globalThis?globalThis:t||self).jQuery)}(this,(function(t){"use strict";var n="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},r=function(t){return t&&t.Math===Math&&t},o=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n&&n)||r("object"==typeof n&&n)||function(){return this}()||Function("return this")(),e={},a=function(t){try{return!!t()}catch(t){return!0}},i=!a((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})),u=!a((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),c=u,f=Function.prototype.call,l=c?f.bind(f):function(){return f.apply(f,arguments)},s={},m={}.propertyIsEnumerable,g=Object.getOwnPropertyDescriptor,d=g&&!m.call({1:2},1);s.f=d?function(t){var n=g(this,t);return!!n&&n.enumerable}:m;var h,p,S=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}},w=u,P=Function.prototype,T=P.call,b=w&&P.bind.bind(T,T),C=w?b:function(t){return function(){return T.apply(t,arguments)}},v=C,R=v({}.toString),A=v("".slice),x=function(t){return A(R(t),8,-1)},y=a,O=x,k=Object,F=C("".split),M=y((function(){return!k("z").propertyIsEnumerable(0)}))?function(t){return"String"===O(t)?F(t,""):k(t)}:k,j=function(t){return null==t},D=j,N=TypeError,E=function(t){if(D(t))throw new N("Can't call method on "+t);return t},H=M,z=E,L=function(t){return H(z(t))},B="object"==typeof document&&document.all,U=void 0===B&&void 0!==B?function(t){return"function"==typeof t||t===B}:function(t){return"function"==typeof t},V=U,G=function(t){return"object"==typeof t?null!==t:V(t)},Z=o,J=U,I=function(t,n){return arguments.length<2?(r=Z[t],J(r)?r:void 0):Z[t]&&Z[t][n];var r},q=C({}.isPrototypeOf),K=o,W="undefined"!=typeof navigator&&String(navigator.userAgent)||"",Y=K.process,_=K.Deno,X=Y&&Y.versions||_&&_.version,Q=X&&X.v8;Q&&(p=(h=Q.split("."))[0]>0&&h[0]<4?1:+(h[0]+h[1])),!p&&W&&(!(h=W.match(/Edge\/(\d+)/))||h[1]>=74)&&(h=W.match(/Chrome\/(\d+)/))&&(p=+h[1]);var $=p,tt=$,nt=a,rt=o.String,ot=!!Object.getOwnPropertySymbols&&!nt((function(){var t=Symbol("symbol detection");return!rt(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&tt&&tt<41})),et=ot&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,at=I,it=U,ut=q,ct=Object,ft=et?function(t){return"symbol"==typeof t}:function(t){var n=at("Symbol");return it(n)&&ut(n.prototype,ct(t))},lt=String,st=U,mt=function(t){try{return lt(t)}catch(t){return"Object"}},gt=TypeError,dt=function(t){if(st(t))return t;throw new gt(mt(t)+" is not a function")},ht=j,pt=l,St=U,wt=G,Pt=TypeError,Tt={exports:{}},bt=o,Ct=Object.defineProperty,vt=function(t,n){try{Ct(bt,t,{value:n,configurable:!0,writable:!0})}catch(r){bt[t]=n}return n},Rt=o,At=vt,xt="__core-js_shared__",yt=Tt.exports=Rt[xt]||At(xt,{});(yt.versions||(yt.versions=[])).push({version:"3.37.1",mode:"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE",source:"https://github.com/zloirock/core-js"});var Ot=Tt.exports,kt=Ot,Ft=function(t,n){return kt[t]||(kt[t]=n||{})},Mt=E,jt=Object,Dt=function(t){return jt(Mt(t))},Nt=Dt,Et=C({}.hasOwnProperty),Ht=Object.hasOwn||function(t,n){return Et(Nt(t),n)},zt=C,Lt=0,Bt=Math.random(),Ut=zt(1..toString),Vt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Ut(++Lt+Bt,36)},Gt=Ft,Zt=Ht,Jt=Vt,It=ot,qt=et,Kt=o.Symbol,Wt=Gt("wks"),Yt=qt?Kt.for||Kt:Kt&&Kt.withoutSetter||Jt,_t=function(t){return Zt(Wt,t)||(Wt[t]=It&&Zt(Kt,t)?Kt[t]:Yt("Symbol."+t)),Wt[t]},Xt=l,Qt=G,$t=ft,tn=function(t,n){var r=t[n];return ht(r)?void 0:dt(r)},nn=function(t,n){var r,o;if("string"===n&&St(r=t.toString)&&!wt(o=pt(r,t)))return o;if(St(r=t.valueOf)&&!wt(o=pt(r,t)))return o;if("string"!==n&&St(r=t.toString)&&!wt(o=pt(r,t)))return o;throw new Pt("Can't convert object to primitive value")},rn=TypeError,on=_t("toPrimitive"),en=function(t,n){if(!Qt(t)||$t(t))return t;var r,o=tn(t,on);if(o){if(void 0===n&&(n="default"),r=Xt(o,t,n),!Qt(r)||$t(r))return r;throw new rn("Can't convert object to primitive value")}return void 0===n&&(n="number"),nn(t,n)},an=ft,un=function(t){var n=en(t,"string");return an(n)?n:n+""},cn=G,fn=o.document,ln=cn(fn)&&cn(fn.createElement),sn=function(t){return ln?fn.createElement(t):{}},mn=!i&&!a((function(){return 7!==Object.defineProperty(sn("div"),"a",{get:function(){return 7}}).a})),gn=i,dn=l,hn=s,pn=S,Sn=L,wn=un,Pn=Ht,Tn=mn,bn=Object.getOwnPropertyDescriptor;e.f=gn?bn:function(t,n){if(t=Sn(t),n=wn(n),Tn)try{return bn(t,n)}catch(t){}if(Pn(t,n))return pn(!dn(hn.f,t,n),t[n])};var Cn={},vn=i&&a((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Rn=G,An=String,xn=TypeError,yn=function(t){if(Rn(t))return t;throw new xn(An(t)+" is not an object")},On=i,kn=mn,Fn=vn,Mn=yn,jn=un,Dn=TypeError,Nn=Object.defineProperty,En=Object.getOwnPropertyDescriptor,Hn="enumerable",zn="configurable",Ln="writable";Cn.f=On?Fn?function(t,n,r){if(Mn(t),n=jn(n),Mn(r),"function"==typeof t&&"prototype"===n&&"value"in r&&Ln in r&&!r[Ln]){var o=En(t,n);o&&o[Ln]&&(t[n]=r.value,r={configurable:zn in r?r[zn]:o[zn],enumerable:Hn in r?r[Hn]:o[Hn],writable:!1})}return Nn(t,n,r)}:Nn:function(t,n,r){if(Mn(t),n=jn(n),Mn(r),kn)try{return Nn(t,n,r)}catch(t){}if("get"in r||"set"in r)throw new Dn("Accessors not supported");return"value"in r&&(t[n]=r.value),t};var Bn=Cn,Un=S,Vn=i?function(t,n,r){return Bn.f(t,n,Un(1,r))}:function(t,n,r){return t[n]=r,t},Gn={exports:{}},Zn=i,Jn=Ht,In=Function.prototype,qn=Zn&&Object.getOwnPropertyDescriptor,Kn=Jn(In,"name"),Wn={EXISTS:Kn,PROPER:Kn&&"something"===function(){}.name,CONFIGURABLE:Kn&&(!Zn||Zn&&qn(In,"name").configurable)},Yn=U,_n=Ot,Xn=C(Function.toString);Yn(_n.inspectSource)||(_n.inspectSource=function(t){return Xn(t)});var Qn,$n,tr,nr=_n.inspectSource,rr=U,or=o.WeakMap,er=rr(or)&&/native code/.test(String(or)),ar=Vt,ir=Ft("keys"),ur={},cr=er,fr=o,lr=G,sr=Vn,mr=Ht,gr=Ot,dr=function(t){return ir[t]||(ir[t]=ar(t))},hr=ur,pr="Object already initialized",Sr=fr.TypeError,wr=fr.WeakMap;if(cr||gr.state){var Pr=gr.state||(gr.state=new wr);Pr.get=Pr.get,Pr.has=Pr.has,Pr.set=Pr.set,Qn=function(t,n){if(Pr.has(t))throw new Sr(pr);return n.facade=t,Pr.set(t,n),n},$n=function(t){return Pr.get(t)||{}},tr=function(t){return Pr.has(t)}}else{var Tr=dr("state");hr[Tr]=!0,Qn=function(t,n){if(mr(t,Tr))throw new Sr(pr);return n.facade=t,sr(t,Tr,n),n},$n=function(t){return mr(t,Tr)?t[Tr]:{}},tr=function(t){return mr(t,Tr)}}var br={set:Qn,get:$n,has:tr,enforce:function(t){return tr(t)?$n(t):Qn(t,{})},getterFor:function(t){return function(n){var r;if(!lr(n)||(r=$n(n)).type!==t)throw new Sr("Incompatible receiver, "+t+" required");return r}}},Cr=C,vr=a,Rr=U,Ar=Ht,xr=i,yr=Wn.CONFIGURABLE,Or=nr,kr=br.enforce,Fr=br.get,Mr=String,jr=Object.defineProperty,Dr=Cr("".slice),Nr=Cr("".replace),Er=Cr([].join),Hr=xr&&!vr((function(){return 8!==jr((function(){}),"length",{value:8}).length})),zr=String(String).split("String"),Lr=Gn.exports=function(t,n,r){"Symbol("===Dr(Mr(n),0,7)&&(n="["+Nr(Mr(n),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(n="get "+n),r&&r.setter&&(n="set "+n),(!Ar(t,"name")||yr&&t.name!==n)&&(xr?jr(t,"name",{value:n,configurable:!0}):t.name=n),Hr&&r&&Ar(r,"arity")&&t.length!==r.arity&&jr(t,"length",{value:r.arity});try{r&&Ar(r,"constructor")&&r.constructor?xr&&jr(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var o=kr(t);return Ar(o,"source")||(o.source=Er(zr,"string"==typeof n?n:"")),t};Function.prototype.toString=Lr((function(){return Rr(this)&&Fr(this).source||Or(this)}),"toString");var Br=Gn.exports,Ur=U,Vr=Cn,Gr=Br,Zr=vt,Jr={},Ir=Math.ceil,qr=Math.floor,Kr=Math.trunc||function(t){var n=+t;return(n>0?qr:Ir)(n)},Wr=function(t){var n=+t;return n!=n||0===n?0:Kr(n)},Yr=Wr,_r=Math.max,Xr=Math.min,Qr=Wr,$r=Math.min,to=function(t){var n=Qr(t);return n>0?$r(n,9007199254740991):0},no=function(t){return to(t.length)},ro=L,oo=function(t,n){var r=Yr(t);return r<0?_r(r+n,0):Xr(r,n)},eo=no,ao=function(t){return function(n,r,o){var e=ro(n),a=eo(e);if(0===a)return!t&&-1;var i,u=oo(o,a);if(t&&r!=r){for(;a>u;)if((i=e[u++])!=i)return!0}else for(;a>u;u++)if((t||u in e)&&e[u]===r)return t||u||0;return!t&&-1}},io={includes:ao(!0),indexOf:ao(!1)},uo=Ht,co=L,fo=io.indexOf,lo=ur,so=C([].push),mo=function(t,n){var r,o=co(t),e=0,a=[];for(r in o)!uo(lo,r)&&uo(o,r)&&so(a,r);for(;n.length>e;)uo(o,r=n[e++])&&(~fo(a,r)||so(a,r));return a},go=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],ho=mo,po=go.concat("length","prototype");Jr.f=Object.getOwnPropertyNames||function(t){return ho(t,po)};var So={};So.f=Object.getOwnPropertySymbols;var wo=I,Po=Jr,To=So,bo=yn,Co=C([].concat),vo=wo("Reflect","ownKeys")||function(t){var n=Po.f(bo(t)),r=To.f;return r?Co(n,r(t)):n},Ro=Ht,Ao=vo,xo=e,yo=Cn,Oo=a,ko=U,Fo=/#|\.prototype\./,Mo=function(t,n){var r=Do[jo(t)];return r===Eo||r!==No&&(ko(n)?Oo(n):!!n)},jo=Mo.normalize=function(t){return String(t).replace(Fo,".").toLowerCase()},Do=Mo.data={},No=Mo.NATIVE="N",Eo=Mo.POLYFILL="P",Ho=Mo,zo=o,Lo=e.f,Bo=Vn,Uo=function(t,n,r,o){o||(o={});var e=o.enumerable,a=void 0!==o.name?o.name:n;if(Ur(r)&&Gr(r,a,o),o.global)e?t[n]=r:Zr(n,r);else{try{o.unsafe?t[n]&&(e=!0):delete t[n]}catch(t){}e?t[n]=r:Vr.f(t,n,{value:r,enumerable:!1,configurable:!o.nonConfigurable,writable:!o.nonWritable})}return t},Vo=vt,Go=function(t,n,r){for(var o=Ao(n),e=yo.f,a=xo.f,i=0;i9007199254740991)throw Ko("Maximum allowed index exceeded");return t},De=function(t,n,r){Wo?Yo.f(t,n,_o(0,r)):t[n]=r},Ne=function(t,n){return new(Ce(t))(0===n?0:n)},Ee=function(t){return Re>=51||!ve((function(){var n=[];return(n.constructor={})[Ae]=function(){return{foo:1}},1!==n[t](Boolean).foo}))},He=$,ze=_t("isConcatSpreadable"),Le=He>=51||!ye((function(){var t=[];return t[ze]=!1,t.concat()[0]!==t})),Be=function(t){if(!ke(t))return!1;var n=t[ze];return void 0!==n?!!n:Oe(t)};xe({target:"Array",proto:!0,arity:1,forced:!Le||!Ee("concat")},{concat:function(t){var n,r,o,e,a,i=Fe(this),u=Ne(i,0),c=0;for(n=-1,o=arguments.length;ne;)for(var u,c=Xe(arguments[e++]),f=a?ta(Ke(c),a(c)):Ke(c),l=f.length,s=0;l>s;)u=f[s++],Ze&&!Ie(i,c,u)||(r[u]=c[u]);return r}:Qe,ra=na;Jo({target:"Object",stat:!0,arity:2,forced:Object.assign!==ra},{assign:ra}),t.fn.bootstrapTable.locales["af-ZA"]=t.fn.bootstrapTable.locales.af={formatCopyRows:function(){return"Kopieer lyne"},formatPrint:function(){return"Druk uit"},formatLoadingMessage:function(){return"Laai tans"},formatRecordsPerPage:function(t){return"".concat(t," reëls per bladsy")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Wys ".concat(t," tot ").concat(n," van ").concat(r," lyne (gefiltreer vanaf ").concat(o," lyne)"):"Wys ".concat(t," tot ").concat(n," van ").concat(r," lyne")},formatSRPaginationPreText:function(){return"vorige bladsy"},formatSRPaginationPageText:function(t){return"na bladsy ".concat(t)},formatSRPaginationNextText:function(){return"volgende bladsy"},formatDetailPagination:function(t){return"".concat(t,"-reël vertoon")},formatClearSearch:function(){return"Duidelike soektog"},formatSearch:function(){return"Navorsing"},formatNoMatches:function(){return"Geen resultate nie"},formatPaginationSwitch:function(){return"Versteek/Wys paginasie"},formatPaginationSwitchDown:function(){return"Wys paginasie"},formatPaginationSwitchUp:function(){return"Versteek paginasie"},formatRefresh:function(){return"Verfris"},formatToggleOn:function(){return"Wys kaartaansig"},formatToggleOff:function(){return"Versteek kaartaansig"},formatColumns:function(){return"Kolomme"},formatColumnsToggleAll:function(){return"Wys alles"},formatFullscreen:function(){return"Volskerm"},formatAllRows:function(){return"Alles"},formatAutoRefresh:function(){return"Verfris outomaties"},formatExport:function(){return"Voer data uit"},formatJumpTo:function(){return"Gaan na"},formatAdvancedSearch:function(){return"Gevorderde soektog"},formatAdvancedCloseButton:function(){return"Maak"},formatFilterControlSwitch:function(){return"Versteek/Wys kontroles"},formatFilterControlSwitchHide:function(){return"Versteek kontroles"},formatFilterControlSwitchShow:function(){return"Wys kontroles"},formatToggleCustomViewOn:function(){return"Wys pasgemaakte aansig"},formatToggleCustomViewOff:function(){return"Versteek pasgemaakte aansig"},formatClearFilters:function(){return"Verwyder filters"},formatAddLevel:function(){return"Voeg 'n vlak by"},formatCancel:function(){return"Kanselleer"},formatColumn:function(){return"Kolom"},formatDeleteLevel:function(){return"Vee 'n vlak uit"},formatDuplicateAlertTitle:function(){return"Duplikaatinskrywings is gevind!"},formatDuplicateAlertDescription:function(){return"Verwyder of wysig asseblief duplikaatinskrywings"},formatMultipleSort:function(){return"Multi-sorteer"},formatOrder:function(){return"Bestelling"},formatSort:function(){return"Rangskik"},formatSortBy:function(){return"Sorteer volgens"},formatSortOrders:function(){return{asc:"Stygende",desc:"Dalende"}},formatThenBy:function(){return"Dan deur"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["af-ZA"]),t.fn.bootstrapTable.locales["bg-BG"]=t.fn.bootstrapTable.locales.bg={formatCopyRows:function(){return"Копиране на редове"},formatPrint:function(){return"Печат"},formatLoadingMessage:function(){return"Зареждане, моля изчакайте"},formatRecordsPerPage:function(t){return"".concat(t," реда на страница")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Показани редове от ".concat(t," до ").concat(n," от ").concat(r," (филтрирани от общо ").concat(o,")"):"Показани редове от ".concat(t," до ").concat(n," от общо ").concat(r)},formatSRPaginationPreText:function(){return"предишна страница"},formatSRPaginationPageText:function(t){return"до страница ".concat(t)},formatSRPaginationNextText:function(){return"следваща страница"},formatDetailPagination:function(t){return"Показани ".concat(t," реда")},formatClearSearch:function(){return"Изчистване на търсенето"},formatSearch:function(){return"Търсене"},formatNoMatches:function(){return"Не са намерени съвпадащи записи"},formatPaginationSwitch:function(){return"Скриване/Показване на странициране"},formatPaginationSwitchDown:function(){return"Показване на странициране"},formatPaginationSwitchUp:function(){return"Скриване на странициране"},formatRefresh:function(){return"Обновяване"},formatToggleOn:function(){return"Показване на изглед карта"},formatToggleOff:function(){return"Скриване на изглед карта"},formatColumns:function(){return"Колони"},formatColumnsToggleAll:function(){return"Превключване на всички"},formatFullscreen:function(){return"Цял екран"},formatAllRows:function(){return"Всички"},formatAutoRefresh:function(){return"Автоматично обновяване"},formatExport:function(){return"Експорт на данни"},formatJumpTo:function(){return"ОТИДИ"},formatAdvancedSearch:function(){return"Разширено търсене"},formatAdvancedCloseButton:function(){return"Затваряне"},formatFilterControlSwitch:function(){return"Скрива/показва контроли"},formatFilterControlSwitchHide:function(){return"Скрива контроли"},formatFilterControlSwitchShow:function(){return"Показва контроли"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["bg-BG"]),t.fn.bootstrapTable.locales["ar-SA"]=t.fn.bootstrapTable.locales.ar={formatCopyRows:function(){return"نسخ الصفوف"},formatPrint:function(){return"طباعة"},formatLoadingMessage:function(){return"جارٍ التحميل، يرجى الانتظار..."},formatRecordsPerPage:function(t){return"".concat(t," صف لكل صفحة")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"الظاهر ".concat(t," إلى ").concat(n," من ").concat(r," سجل ").concat(o," إجمالي الصفوف)"):"الظاهر ".concat(t," إلى ").concat(n," من ").concat(r," سجل")},formatSRPaginationPreText:function(){return"الصفحة السابقة"},formatSRPaginationPageText:function(t){return"إلى الصفحة ".concat(t)},formatSRPaginationNextText:function(){return"الصفحة التالية"},formatDetailPagination:function(t){return"عرض ".concat(t," أعمدة")},formatClearSearch:function(){return"مسح مربع البحث"},formatSearch:function(){return"بحث"},formatNoMatches:function(){return"لا توجد نتائج مطابقة للبحث"},formatPaginationSwitch:function(){return"إخفاء/إظهار ترقيم الصفحات"},formatPaginationSwitchDown:function(){return"إظهار ترقيم الصفحات"},formatPaginationSwitchUp:function(){return"إخفاء ترقيم الصفحات"},formatRefresh:function(){return"تحديث"},formatToggleOn:function(){return"إظهار كبطاقات"},formatToggleOff:function(){return"إلغاء البطاقات"},formatColumns:function(){return"أعمدة"},formatColumnsToggleAll:function(){return"تبديل الكل"},formatFullscreen:function(){return"الشاشة كاملة"},formatAllRows:function(){return"الكل"},formatAutoRefresh:function(){return"تحديث تلقائي"},formatExport:function(){return"تصدير البيانات"},formatJumpTo:function(){return"قفز"},formatAdvancedSearch:function(){return"بحث متقدم"},formatAdvancedCloseButton:function(){return"إغلاق"},formatFilterControlSwitch:function(){return"عرض/إخفاء عناصر التصفية"},formatFilterControlSwitchHide:function(){return"إخفاء عناصر التصفية"},formatFilterControlSwitchShow:function(){return"عرض عناصر التصفية"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ar-SA"]),t.fn.bootstrapTable.locales["ca-ES"]=t.fn.bootstrapTable.locales.ca={formatCopyRows:function(){return"Copia resultats"},formatPrint:function(){return"Imprimeix"},formatLoadingMessage:function(){return"Espereu, si us plau"},formatRecordsPerPage:function(t){return"".concat(t," resultats per pàgina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrant resultats ".concat(t," fins ").concat(n," - ").concat(r," resultats (filtrats d'un total de ").concat(o," resultats)"):"Mostrant resultats ".concat(t," fins ").concat(n," - ").concat(r," resultats en total")},formatSRPaginationPreText:function(){return"Pàgina anterior"},formatSRPaginationPageText:function(t){return"A la pàgina ".concat(t)},formatSRPaginationNextText:function(){return"Pàgina següent"},formatDetailPagination:function(t){return"Mostrant ".concat(t," resultats")},formatClearSearch:function(){return"Neteja cerca"},formatSearch:function(){return"Cerca"},formatNoMatches:function(){return"No s'han trobat resultats"},formatPaginationSwitch:function(){return"Amaga/Mostra paginació"},formatPaginationSwitchDown:function(){return"Mostra paginació"},formatPaginationSwitchUp:function(){return"Amaga paginació"},formatRefresh:function(){return"Refresca"},formatToggleOn:function(){return"Mostra vista de tarjeta"},formatToggleOff:function(){return"Amaga vista de tarjeta"},formatColumns:function(){return"Columnes"},formatColumnsToggleAll:function(){return"Alterna totes"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Tots"},formatAutoRefresh:function(){return"Auto Refresca"},formatExport:function(){return"Exporta dades"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Cerca avançada"},formatAdvancedCloseButton:function(){return"Tanca"},formatFilterControlSwitch:function(){return"Mostra/Amaga controls"},formatFilterControlSwitchHide:function(){return"Mostra controls"},formatFilterControlSwitchShow:function(){return"Amaga controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ca-ES"]),t.fn.bootstrapTable.locales["cs-CZ"]=t.fn.bootstrapTable.locales.cs={formatCopyRows:function(){return"Kopírovat řádky"},formatPrint:function(){return"Tisk"},formatLoadingMessage:function(){return"Čekejte, prosím"},formatRecordsPerPage:function(t){return"".concat(t," položek na stránku")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Zobrazena ".concat(t,". - ").concat(n," . položka z celkových ").concat(r," (filtered from ").concat(o," total rows)"):"Zobrazena ".concat(t,". - ").concat(n," . položka z celkových ").concat(r)},formatSRPaginationPreText:function(){return"předchozí strana"},formatSRPaginationPageText:function(t){return"na stranu ".concat(t)},formatSRPaginationNextText:function(){return"další strana"},formatDetailPagination:function(t){return"Zobrazuji ".concat(t," řádek")},formatClearSearch:function(){return"Smazat hledání"},formatSearch:function(){return"Vyhledávání"},formatNoMatches:function(){return"Nenalezena žádná vyhovující položka"},formatPaginationSwitch:function(){return"Skrýt/Zobrazit stránkování"},formatPaginationSwitchDown:function(){return"Zobrazit stránkování"},formatPaginationSwitchUp:function(){return"Skrýt stránkování"},formatRefresh:function(){return"Aktualizovat"},formatToggleOn:function(){return"Zobrazit karty"},formatToggleOff:function(){return"Zobrazit tabulku"},formatColumns:function(){return"Sloupce"},formatColumnsToggleAll:function(){return"Zobrazit/Skrýt vše"},formatFullscreen:function(){return"Zapnout/Vypnout fullscreen"},formatAllRows:function(){return"Vše"},formatAutoRefresh:function(){return"Automatické obnovení"},formatExport:function(){return"Export dat"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Pokročilé hledání"},formatAdvancedCloseButton:function(){return"Zavřít"},formatFilterControlSwitch:function(){return"Skrýt/Zobrazit ovladače"},formatFilterControlSwitchHide:function(){return"Skrýt ovladače"},formatFilterControlSwitchShow:function(){return"Zobrazit ovladače"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["cs-CZ"]),t.fn.bootstrapTable.locales["da-DK"]=t.fn.bootstrapTable.locales.da={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Indlæser, vent venligst"},formatRecordsPerPage:function(t){return"".concat(t," poster pr side")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Viser ".concat(t," til ").concat(n," af ").concat(r," række").concat(r>1?"r":""," (filtered from ").concat(o," total rows)"):"Viser ".concat(t," til ").concat(n," af ").concat(r," række").concat(r>1?"r":"")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Viser ".concat(t," række").concat(t>1?"r":"")},formatClearSearch:function(){return"Ryd filtre"},formatSearch:function(){return"Søg"},formatNoMatches:function(){return"Ingen poster fundet"},formatPaginationSwitch:function(){return"Skjul/vis nummerering"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Opdater"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Kolonner"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Alle"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Eksporter"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["da-DK"]),t.fn.bootstrapTable.locales["de-DE"]=t.fn.bootstrapTable.locales.de={formatCopyRows:function(){return"Zeilen kopieren"},formatPrint:function(){return"Drucken"},formatLoadingMessage:function(){return"Lade, bitte warten"},formatRecordsPerPage:function(t){return"".concat(t," Zeilen pro Seite.")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Zeige Zeile ".concat(t," bis ").concat(n," von ").concat(r," Zeile").concat(r>1?"n":""," (Gefiltert von ").concat(o," Zeile").concat(o>1?"n":"",")"):"Zeige Zeile ".concat(t," bis ").concat(n," von ").concat(r," Zeile").concat(r>1?"n":"",".")},formatSRPaginationPreText:function(){return"Vorherige Seite"},formatSRPaginationPageText:function(t){return"Zu Seite ".concat(t)},formatSRPaginationNextText:function(){return"Nächste Seite"},formatDetailPagination:function(t){return"Zeige ".concat(t," Zeile").concat(t>1?"n":"",".")},formatClearSearch:function(){return"Lösche Filter"},formatSearch:function(){return"Suchen"},formatNoMatches:function(){return"Keine passenden Ergebnisse gefunden"},formatPaginationSwitch:function(){return"Verstecke/Zeige Nummerierung"},formatPaginationSwitchDown:function(){return"Zeige Nummerierung"},formatPaginationSwitchUp:function(){return"Verstecke Nummerierung"},formatRefresh:function(){return"Neu laden"},formatToggleOn:function(){return"Normale Ansicht"},formatToggleOff:function(){return"Kartenansicht"},formatColumns:function(){return"Spalten"},formatColumnsToggleAll:function(){return"Alle umschalten"},formatFullscreen:function(){return"Vollbild"},formatAllRows:function(){return"Alle"},formatAutoRefresh:function(){return"Automatisches Neuladen"},formatExport:function(){return"Datenexport"},formatJumpTo:function(){return"Springen"},formatAdvancedSearch:function(){return"Erweiterte Suche"},formatAdvancedCloseButton:function(){return"Schließen"},formatFilterControlSwitch:function(){return"Verstecke/Zeige Filter"},formatFilterControlSwitchHide:function(){return"Verstecke Filter"},formatFilterControlSwitchShow:function(){return"Zeige Filter"},formatAddLevel:function(){return"Ebene hinzufügen"},formatCancel:function(){return"Abbrechen"},formatColumn:function(){return"Spalte"},formatDeleteLevel:function(){return"Ebene entfernen"},formatDuplicateAlertTitle:function(){return"Doppelte Einträge gefunden!"},formatDuplicateAlertDescription:function(){return"Bitte doppelte Spalten entfenen oder ändern"},formatMultipleSort:function(){return"Mehrfachsortierung"},formatOrder:function(){return"Reihenfolge"},formatSort:function(){return"Sortieren"},formatSortBy:function(){return"Sortieren nach"},formatThenBy:function(){return"anschließend"},formatSortOrders:function(){return{asc:"Aufsteigend",desc:"Absteigend"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["de-DE"]),t.fn.bootstrapTable.locales["el-GR"]=t.fn.bootstrapTable.locales.el={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Φορτώνει, παρακαλώ περιμένετε"},formatRecordsPerPage:function(t){return"".concat(t," αποτελέσματα ανά σελίδα")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Εμφανίζονται από την ".concat(t," ως την ").concat(n," από σύνολο ").concat(r," σειρών (filtered from ").concat(o," total rows)"):"Εμφανίζονται από την ".concat(t," ως την ").concat(n," από σύνολο ").concat(r," σειρών")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Αναζητήστε"},formatNoMatches:function(){return"Δεν βρέθηκαν αποτελέσματα"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Refresh"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Columns"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["el-GR"]),t.fn.bootstrapTable.locales["en-US"]=t.fn.bootstrapTable.locales.en={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Loading, please wait"},formatRecordsPerPage:function(t){return"".concat(t," rows per page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Showing ".concat(t," to ").concat(n," of ").concat(r," rows (filtered from ").concat(o," total rows)"):"Showing ".concat(t," to ").concat(n," of ").concat(r," rows")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Search"},formatNoMatches:function(){return"No matching records found"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Refresh"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Columns"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["en-US"]),t.fn.bootstrapTable.locales["es-AR"]={formatCopyRows:function(){return"Copiar Filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, espere por favor"},formatRecordsPerPage:function(t){return"".concat(t," registros por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando desde ".concat(t," a ").concat(n," de ").concat(r," filas (filtrado de ").concat(o," columnas totales)"):"Mostrando desde ".concat(t," a ").concat(n," de ").concat(r," filas")},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"a la página ".concat(t)},formatSRPaginationNextText:function(){return"siguiente página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," columnas")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros"},formatPaginationSwitch:function(){return"Ocultar/Mostrar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Recargar"},formatToggleOn:function(){return"Mostrar vista de carta"},formatToggleOff:function(){return"Ocultar vista de carta"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Cambiar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto Recargar"},formatExport:function(){return"Exportar datos"},formatJumpTo:function(){return"Ir"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-AR"]),t.fn.bootstrapTable.locales["es-CR"]={formatCopyRows:function(){return"Copiar filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, por favor espere"},formatRecordsPerPage:function(t){return"".concat(t," filas por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas (filtrado de un total de ").concat(o," filas)"):"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas")},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"ir a la página ".concat(t)},formatSRPaginationNextText:function(){return"página siguiente"},formatDetailPagination:function(t){return"Mostrando ".concat(t," filas")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron resultados"},formatPaginationSwitch:function(){return"Mostrar/ocultar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Actualizar"},formatToggleOn:function(){return"Mostrar vista en tarjetas"},formatToggleOff:function(){return"Ocultar vista en tarjetas"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Alternar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todas las filas"},formatAutoRefresh:function(){return"Actualización automática"},formatExport:function(){return"Exportar"},formatJumpTo:function(){return"Ver"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Mostrar/ocultar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-CR"]),t.fn.bootstrapTable.locales["es-ES"]=t.fn.bootstrapTable.locales.es={formatCopyRows:function(){return"Copiar filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, por favor espere"},formatRecordsPerPage:function(t){return"".concat(t," resultados por página")},formatShowingRows:function(t,n,r,o){var e=r>1?"s":"";return void 0!==o&&o>0&&o>r?"Mostrando desde ".concat(t," hasta ").concat(n," - En total ").concat(r," resultado").concat(e," (filtrado de un total de ").concat(o," fila").concat(e,")"):"Mostrando desde ".concat(t," hasta ").concat(n," - En total ").concat(r," resultado").concat(e)},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"a la página ".concat(t)},formatSRPaginationNextText:function(){return"siguiente página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," fila").concat(t>1?"s":"")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron resultados coincidentes"},formatPaginationSwitch:function(){return"Ocultar/Mostrar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Recargar"},formatToggleOn:function(){return"Mostrar vista de carta"},formatToggleOff:function(){return"Ocultar vista de carta"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Cambiar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todos"},formatAutoRefresh:function(){return"Auto Recargar"},formatExport:function(){return"Exportar los datos"},formatJumpTo:function(){return"IR"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Ocultar/Exibir controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"},formatAddLevel:function(){return"Agregar nivel"},formatCancel:function(){return"Cancelar"},formatColumn:function(){return"Columna"},formatDeleteLevel:function(){return"Eliminar nivel"},formatDuplicateAlertTitle:function(){return"¡Se encontraron entradas duplicadas!"},formatDuplicateAlertDescription:function(){return"Por favor, elimine o modifique las columnas duplicadas"},formatMultipleSort:function(){return"Ordenación múltiple"},formatOrder:function(){return"Orden"},formatSort:function(){return"Ordenar"},formatSortBy:function(){return"Ordenar por"},formatThenBy:function(){return"a continuación"},formatSortOrders:function(){return{asc:"Ascendente",desc:"Descendente"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-ES"]),t.fn.bootstrapTable.locales["es-MX"]={formatCopyRows:function(){return"Copiar Filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, espere por favor"},formatRecordsPerPage:function(t){return"".concat(t," resultados por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas (filtrado de ").concat(o," filas totales)"):"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas")},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"ir a la página ".concat(t)},formatSRPaginationNextText:function(){return"página siguiente"},formatDetailPagination:function(t){return"Mostrando ".concat(t," filas")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros que coincidan"},formatPaginationSwitch:function(){return"Mostrar/ocultar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Actualizar"},formatToggleOn:function(){return"Mostrar vista"},formatToggleOff:function(){return"Ocultar vista"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Alternar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto actualizar"},formatExport:function(){return"Exportar datos"},formatJumpTo:function(){return"IR"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-MX"]),t.fn.bootstrapTable.locales["es-SP"]={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Cargando, por favor espera"},formatRecordsPerPage:function(t){return"".concat(t," registros por página.")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"".concat(t," - ").concat(n," de ").concat(r," registros (filtered from ").concat(o," total rows)"):"".concat(t," - ").concat(n," de ").concat(r," registros.")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se han encontrado registros."},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Actualizar"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-SP"]),t.fn.bootstrapTable.locales["et-EE"]=t.fn.bootstrapTable.locales.et={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Päring käib, palun oota"},formatRecordsPerPage:function(t){return"".concat(t," rida lehe kohta")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Näitan tulemusi ".concat(t," kuni ").concat(n," - kokku ").concat(r," tulemust (filtered from ").concat(o," total rows)"):"Näitan tulemusi ".concat(t," kuni ").concat(n," - kokku ").concat(r," tulemust")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Otsi"},formatNoMatches:function(){return"Päringu tingimustele ei vastanud ühtegi tulemust"},formatPaginationSwitch:function(){return"Näita/Peida lehtedeks jagamine"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Värskenda"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Veerud"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Kõik"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["et-EE"]),t.fn.bootstrapTable.locales["eu-EU"]=t.fn.bootstrapTable.locales.eu={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Itxaron mesedez"},formatRecordsPerPage:function(t){return"".concat(t," emaitza orriko.")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"".concat(r," erregistroetatik ").concat(t,"etik ").concat(n,"erakoak erakusten (filtered from ").concat(o," total rows)"):"".concat(r," erregistroetatik ").concat(t,"etik ").concat(n,"erakoak erakusten.")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Bilatu"},formatNoMatches:function(){return"Ez da emaitzarik aurkitu"},formatPaginationSwitch:function(){return"Ezkutatu/Erakutsi orrikatzea"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Eguneratu"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Zutabeak"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Guztiak"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["eu-EU"]),t.fn.bootstrapTable.locales["es-CL"]={formatCopyRows:function(){return"Copiar Filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, espere por favor"},formatRecordsPerPage:function(t){return"".concat(t," filas por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas (filtrado de ").concat(o," filas totales)"):"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas")},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"a la página ".concat(t)},formatSRPaginationNextText:function(){return"siguiente página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," filas")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros"},formatPaginationSwitch:function(){return"Ocultar/Mostrar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Refrescar"},formatToggleOn:function(){return"Mostrar vista de carta"},formatToggleOff:function(){return"Ocultar vista de carta"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Cambiar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto Recargar"},formatExport:function(){return"Exportar datos"},formatJumpTo:function(){return"IR"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-CL"]),t.fn.bootstrapTable.locales["fi-FI"]=t.fn.bootstrapTable.locales.fi={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Ladataan, ole hyvä ja odota"},formatRecordsPerPage:function(t){return"".concat(t," riviä sivulla")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Näytetään rivit ".concat(t," - ").concat(n," / ").concat(r," (filtered from ").concat(o," total rows)"):"Näytetään rivit ".concat(t," - ").concat(n," / ").concat(r)},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Poista suodattimet"},formatSearch:function(){return"Hae"},formatNoMatches:function(){return"Hakuehtoja vastaavia tuloksia ei löytynyt"},formatPaginationSwitch:function(){return"Näytä/Piilota sivutus"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Päivitä"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Sarakkeet"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Kaikki"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Vie tiedot"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fi-FI"]),t.fn.bootstrapTable.locales["es-NI"]={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Cargando, por favor espere"},formatRecordsPerPage:function(t){return"".concat(t," registros por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando de ".concat(t," a ").concat(n," registros de ").concat(r," registros en total (filtered from ").concat(o," total rows)"):"Mostrando de ".concat(t," a ").concat(n," registros de ").concat(r," registros en total")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Refrescar"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-NI"]),t.fn.bootstrapTable.locales["fa-IR"]=t.fn.bootstrapTable.locales.fa={formatCopyRows:function(){return"کپی ردیف ها"},formatPrint:function(){return"پرینت"},formatLoadingMessage:function(){return"در حال بارگذاری, لطفا صبر کنید"},formatRecordsPerPage:function(t){return"".concat(t," رکورد در صفحه")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"نمایش ".concat(t," تا ").concat(n," از ").concat(r," ردیف (filtered from ").concat(o," total rows)"):"نمایش ".concat(t," تا ").concat(n," از ").concat(r," ردیف")},formatSRPaginationPreText:function(){return"صفحه قبلی"},formatSRPaginationPageText:function(t){return"به صفحه ".concat(t)},formatSRPaginationNextText:function(){return"صفحه بعدی"},formatDetailPagination:function(t){return"نمایش ".concat(t," سطرها")},formatClearSearch:function(){return"پاک کردن جستجو"},formatSearch:function(){return"جستجو"},formatNoMatches:function(){return"رکوردی یافت نشد."},formatPaginationSwitch:function(){return"نمایش/مخفی صفحه بندی"},formatPaginationSwitchDown:function(){return"نمایش صفحه بندی"},formatPaginationSwitchUp:function(){return"پنهان کردن صفحه بندی"},formatRefresh:function(){return"به روز رسانی"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"سطر ها"},formatColumnsToggleAll:function(){return"تغییر وضعیت همه"},formatFullscreen:function(){return"تمام صفحه"},formatAllRows:function(){return"همه"},formatAutoRefresh:function(){return"رفرش اتوماتیک"},formatExport:function(){return"خروجی دیتا"},formatJumpTo:function(){return"برو"},formatAdvancedSearch:function(){return"جستجوی پیشرفته"},formatAdvancedCloseButton:function(){return"بستن"},formatFilterControlSwitch:function(){return"پنهان/نمایش دادن کنترل ها"},formatFilterControlSwitchHide:function(){return"پنهان کردن کنترل ها"},formatFilterControlSwitchShow:function(){return"نمایش کنترل ها"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fa-IR"]),t.fn.bootstrapTable.locales["fr-BE"]={formatCopyRows:function(){return"Copier les lignes"},formatPrint:function(){return"Imprimer"},formatLoadingMessage:function(){return"Chargement en cours"},formatRecordsPerPage:function(t){return"".concat(t," lignes par page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes (filtrées à partir de ").concat(o," lignes)"):"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes")},formatSRPaginationPreText:function(){return"page précédente"},formatSRPaginationPageText:function(t){return"vers la page ".concat(t)},formatSRPaginationNextText:function(){return"page suivante"},formatDetailPagination:function(t){return"Affichage de ".concat(t," lignes")},formatClearSearch:function(){return"Effacer la recherche"},formatSearch:function(){return"Rechercher"},formatNoMatches:function(){return"Aucun résultat"},formatPaginationSwitch:function(){return"Masquer/Afficher la pagination"},formatPaginationSwitchDown:function(){return"Afficher la pagination"},formatPaginationSwitchUp:function(){return"Masquer la pagination"},formatRefresh:function(){return"Actualiser"},formatToggleOn:function(){return"Afficher la vue en cartes"},formatToggleOff:function(){return"Cacher la vue en cartes"},formatColumns:function(){return"Colonnes"},formatColumnsToggleAll:function(){return"Tout afficher"},formatFullscreen:function(){return"Plein écran"},formatAllRows:function(){return"Tout"},formatAutoRefresh:function(){return"Actualiser automatiquement"},formatExport:function(){return"Exporter"},formatJumpTo:function(){return"Aller à"},formatAdvancedSearch:function(){return"Recherche avancée"},formatAdvancedCloseButton:function(){return"Fermer"},formatFilterControlSwitch:function(){return"Masquer/Afficher les contrôles"},formatFilterControlSwitchHide:function(){return"Masquer les contrôles"},formatFilterControlSwitchShow:function(){return"Afficher les contrôles"},formatToggleCustomViewOn:function(){return"Afficher la vue personnalisée"},formatToggleCustomViewOff:function(){return"Cacher la vue personnalisée"},formatClearFilters:function(){return"Retirer les filtres"},formatAddLevel:function(){return"Ajouter un niveau"},formatCancel:function(){return"Annuler"},formatColumn:function(){return"Colonne"},formatDeleteLevel:function(){return"Supprimer un niveau"},formatDuplicateAlertTitle:function(){return"Des entrées en double ont été trouvées !"},formatDuplicateAlertDescription:function(){return"Veuillez supprimer ou modifier les entrées en double"},formatMultipleSort:function(){return"Tri multiple"},formatOrder:function(){return"Ordre"},formatSort:function(){return"Trier"},formatSortBy:function(){return"Trier par"},formatSortOrders:function(){return{asc:"Ascendant",desc:"Descendant"}},formatThenBy:function(){return"Puis par"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fr-BE"]),t.fn.bootstrapTable.locales["fr-FR"]=t.fn.bootstrapTable.locales.fr={formatCopyRows:function(){return"Copier les lignes"},formatPrint:function(){return"Imprimer"},formatLoadingMessage:function(){return"Chargement en cours"},formatRecordsPerPage:function(t){return"".concat(t," lignes par page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes (filtrées à partir de ").concat(o," lignes)"):"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes")},formatSRPaginationPreText:function(){return"page précédente"},formatSRPaginationPageText:function(t){return"vers la page ".concat(t)},formatSRPaginationNextText:function(){return"page suivante"},formatDetailPagination:function(t){return"Affichage de ".concat(t," lignes")},formatClearSearch:function(){return"Effacer la recherche"},formatSearch:function(){return"Rechercher"},formatNoMatches:function(){return"Aucun résultat"},formatPaginationSwitch:function(){return"Masquer/Afficher la pagination"},formatPaginationSwitchDown:function(){return"Afficher la pagination"},formatPaginationSwitchUp:function(){return"Masquer la pagination"},formatRefresh:function(){return"Actualiser"},formatToggleOn:function(){return"Afficher la vue en cartes"},formatToggleOff:function(){return"Cacher la vue en cartes"},formatColumns:function(){return"Colonnes"},formatColumnsToggleAll:function(){return"Tout afficher"},formatFullscreen:function(){return"Plein écran"},formatAllRows:function(){return"Tout"},formatAutoRefresh:function(){return"Actualiser automatiquement"},formatExport:function(){return"Exporter"},formatJumpTo:function(){return"Aller à"},formatAdvancedSearch:function(){return"Recherche avancée"},formatAdvancedCloseButton:function(){return"Fermer"},formatFilterControlSwitch:function(){return"Masquer/Afficher les contrôles"},formatFilterControlSwitchHide:function(){return"Masquer les contrôles"},formatFilterControlSwitchShow:function(){return"Afficher les contrôles"},formatToggleCustomViewOn:function(){return"Afficher la vue personnalisée"},formatToggleCustomViewOff:function(){return"Cacher la vue personnalisée"},formatClearFilters:function(){return"Retirer les filtres"},formatAddLevel:function(){return"Ajouter un niveau"},formatCancel:function(){return"Annuler"},formatColumn:function(){return"Colonne"},formatDeleteLevel:function(){return"Supprimer un niveau"},formatDuplicateAlertTitle:function(){return"Des entrées en double ont été trouvées !"},formatDuplicateAlertDescription:function(){return"Veuillez supprimer ou modifier les entrées en double"},formatMultipleSort:function(){return"Tri multiple"},formatOrder:function(){return"Ordre"},formatSort:function(){return"Trier"},formatSortBy:function(){return"Trier par"},formatSortOrders:function(){return{asc:"Ascendant",desc:"Descendant"}},formatThenBy:function(){return"Puis par"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fr-FR"]),t.fn.bootstrapTable.locales["fr-LU"]={formatCopyRows:function(){return"Copier les lignes"},formatPrint:function(){return"Imprimer"},formatLoadingMessage:function(){return"Chargement en cours"},formatRecordsPerPage:function(t){return"".concat(t," lignes par page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes (filtrées à partir de ").concat(o," lignes)"):"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes")},formatSRPaginationPreText:function(){return"page précédente"},formatSRPaginationPageText:function(t){return"vers la page ".concat(t)},formatSRPaginationNextText:function(){return"page suivante"},formatDetailPagination:function(t){return"Affichage de ".concat(t," lignes")},formatClearSearch:function(){return"Effacer la recherche"},formatSearch:function(){return"Rechercher"},formatNoMatches:function(){return"Aucun résultat"},formatPaginationSwitch:function(){return"Masquer/Afficher la pagination"},formatPaginationSwitchDown:function(){return"Afficher la pagination"},formatPaginationSwitchUp:function(){return"Masquer la pagination"},formatRefresh:function(){return"Actualiser"},formatToggleOn:function(){return"Afficher la vue en cartes"},formatToggleOff:function(){return"Cacher la vue en cartes"},formatColumns:function(){return"Colonnes"},formatColumnsToggleAll:function(){return"Tout afficher"},formatFullscreen:function(){return"Plein écran"},formatAllRows:function(){return"Tout"},formatAutoRefresh:function(){return"Actualiser automatiquement"},formatExport:function(){return"Exporter"},formatJumpTo:function(){return"Aller à"},formatAdvancedSearch:function(){return"Recherche avancée"},formatAdvancedCloseButton:function(){return"Fermer"},formatFilterControlSwitch:function(){return"Masquer/Afficher les contrôles"},formatFilterControlSwitchHide:function(){return"Masquer les contrôles"},formatFilterControlSwitchShow:function(){return"Afficher les contrôles"},formatToggleCustomViewOn:function(){return"Afficher la vue personnalisée"},formatToggleCustomViewOff:function(){return"Cacher la vue personnalisée"},formatClearFilters:function(){return"Retirer les filtres"},formatAddLevel:function(){return"Ajouter un niveau"},formatCancel:function(){return"Annuler"},formatColumn:function(){return"Colonne"},formatDeleteLevel:function(){return"Supprimer un niveau"},formatDuplicateAlertTitle:function(){return"Des entrées en double ont été trouvées !"},formatDuplicateAlertDescription:function(){return"Veuillez supprimer ou modifier les entrées en double"},formatMultipleSort:function(){return"Tri multiple"},formatOrder:function(){return"Ordre"},formatSort:function(){return"Trier"},formatSortBy:function(){return"Trier par"},formatSortOrders:function(){return{asc:"Ascendant",desc:"Descendant"}},formatThenBy:function(){return"Puis par"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fr-LU"]),t.fn.bootstrapTable.locales["fr-CH"]={formatCopyRows:function(){return"Copier les lignes"},formatPrint:function(){return"Imprimer"},formatLoadingMessage:function(){return"Chargement en cours"},formatRecordsPerPage:function(t){return"".concat(t," lignes par page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes (filtrées à partir de ").concat(o," lignes)"):"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes")},formatSRPaginationPreText:function(){return"page précédente"},formatSRPaginationPageText:function(t){return"vers la page ".concat(t)},formatSRPaginationNextText:function(){return"page suivante"},formatDetailPagination:function(t){return"Affichage de ".concat(t," lignes")},formatClearSearch:function(){return"Effacer la recherche"},formatSearch:function(){return"Rechercher"},formatNoMatches:function(){return"Aucun résultat"},formatPaginationSwitch:function(){return"Masquer/Afficher la pagination"},formatPaginationSwitchDown:function(){return"Afficher la pagination"},formatPaginationSwitchUp:function(){return"Masquer la pagination"},formatRefresh:function(){return"Actualiser"},formatToggleOn:function(){return"Afficher la vue en cartes"},formatToggleOff:function(){return"Cacher la vue en cartes"},formatColumns:function(){return"Colonnes"},formatColumnsToggleAll:function(){return"Tout afficher"},formatFullscreen:function(){return"Plein écran"},formatAllRows:function(){return"Tout"},formatAutoRefresh:function(){return"Actualiser automatiquement"},formatExport:function(){return"Exporter"},formatJumpTo:function(){return"Aller à"},formatAdvancedSearch:function(){return"Recherche avancée"},formatAdvancedCloseButton:function(){return"Fermer"},formatFilterControlSwitch:function(){return"Masquer/Afficher les contrôles"},formatFilterControlSwitchHide:function(){return"Masquer les contrôles"},formatFilterControlSwitchShow:function(){return"Afficher les contrôles"},formatToggleCustomViewOn:function(){return"Afficher la vue personnalisée"},formatToggleCustomViewOff:function(){return"Cacher la vue personnalisée"},formatClearFilters:function(){return"Retirer les filtres"},formatAddLevel:function(){return"Ajouter un niveau"},formatCancel:function(){return"Annuler"},formatColumn:function(){return"Colonne"},formatDeleteLevel:function(){return"Supprimer un niveau"},formatDuplicateAlertTitle:function(){return"Des entrées en double ont été trouvées !"},formatDuplicateAlertDescription:function(){return"Veuillez supprimer ou modifier les entrées en double"},formatMultipleSort:function(){return"Tri multiple"},formatOrder:function(){return"Ordre"},formatSort:function(){return"Trier"},formatSortBy:function(){return"Trier par"},formatSortOrders:function(){return{asc:"Ascendant",desc:"Descendant"}},formatThenBy:function(){return"Puis par"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fr-CH"]),t.fn.bootstrapTable.locales["he-IL"]=t.fn.bootstrapTable.locales.he={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"טוען, נא להמתין"},formatRecordsPerPage:function(t){return"".concat(t," שורות בעמוד")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"מציג ".concat(t," עד ").concat(n," מ-").concat(r,"שורות").concat(o," total rows)"):"מציג ".concat(t," עד ").concat(n," מ-").concat(r," שורות")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"חיפוש"},formatNoMatches:function(){return"לא נמצאו רשומות תואמות"},formatPaginationSwitch:function(){return"הסתר/הצג מספור דפים"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"רענן"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"עמודות"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"הכל"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["he-IL"]),t.fn.bootstrapTable.locales["hi-IN"]={formatCopyRows:function(){return"पंक्तियों की कॉपी करें"},formatPrint:function(){return"प्रिंट"},formatLoadingMessage:function(){return"लोड हो रहा है कृपया प्रतीक्षा करें"},formatRecordsPerPage:function(t){return"".concat(t," प्रति पृष्ठ पंक्तियाँ")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"".concat(t," - ").concat(n," पक्तिया ").concat(r," में से ( ").concat(o," पक्तिया)"):"".concat(t," - ").concat(n," पक्तिया ").concat(r," में से")},formatSRPaginationPreText:function(){return"पिछला पृष्ठ"},formatSRPaginationPageText:function(t){return"".concat(t," पृष्ठ पर")},formatSRPaginationNextText:function(){return"अगला पृष्ठ"},formatDetailPagination:function(t){return"".concat(t," पंक्तियां")},formatClearSearch:function(){return"सर्च क्लिअर करें"},formatSearch:function(){return"सर्च"},formatNoMatches:function(){return"मेल खाते रिकॉर्ड नही मिले"},formatPaginationSwitch:function(){return"छुपाओ/दिखाओ पृष्ठ संख्या"},formatPaginationSwitchDown:function(){return"दिखाओ पृष्ठ संख्या"},formatPaginationSwitchUp:function(){return"छुपाओ पृष्ठ संख्या"},formatRefresh:function(){return"रिफ्रेश"},formatToggleOn:function(){return"कार्ड दृश्य दिखाएं"},formatToggleOff:function(){return"कार्ड दृश्य छुपाएं"},formatColumns:function(){return"कॉलम"},formatColumnsToggleAll:function(){return"टॉगल आल"},formatFullscreen:function(){return"पूर्ण स्क्रीन"},formatAllRows:function(){return"सब"},formatAutoRefresh:function(){return"ऑटो रिफ्रेश"},formatExport:function(){return"एक्सपोर्ट डाटा"},formatJumpTo:function(){return"जाओ"},formatAdvancedSearch:function(){return"एडवांस सर्च"},formatAdvancedCloseButton:function(){return"बंद करे"},formatFilterControlSwitch:function(){return"छुपाओ/दिखाओ कंट्रोल्स"},formatFilterControlSwitchHide:function(){return"छुपाओ कंट्रोल्स"},formatFilterControlSwitchShow:function(){return"दिखाओ कंट्रोल्स"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["hi-IN"]),t.fn.bootstrapTable.locales["hr-HR"]=t.fn.bootstrapTable.locales.hr={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Molimo pričekajte"},formatRecordsPerPage:function(t){return"".concat(t," broj zapisa po stranici")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Prikazujem ".concat(t,". - ").concat(n,". od ukupnog broja zapisa ").concat(r," (filtered from ").concat(o," total rows)"):"Prikazujem ".concat(t,". - ").concat(n,". od ukupnog broja zapisa ").concat(r)},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Pretraži"},formatNoMatches:function(){return"Nije pronađen niti jedan zapis"},formatPaginationSwitch:function(){return"Prikaži/sakrij stranice"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Osvježi"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Kolone"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Sve"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["hr-HR"]),t.fn.bootstrapTable.locales["hu-HU"]=t.fn.bootstrapTable.locales.hu={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Betöltés, kérem várjon"},formatRecordsPerPage:function(t){return"".concat(t," rekord per oldal")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Megjelenítve ".concat(t," - ").concat(n," / ").concat(r," összesen (filtered from ").concat(o," total rows)"):"Megjelenítve ".concat(t," - ").concat(n," / ").concat(r," összesen")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Keresés"},formatNoMatches:function(){return"Nincs találat"},formatPaginationSwitch:function(){return"Lapozó elrejtése/megjelenítése"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Frissítés"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Oszlopok"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Összes"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["hu-HU"]),t.fn.bootstrapTable.locales["id-ID"]=t.fn.bootstrapTable.locales.id={formatCopyRows:function(){return"Salin baris"},formatPrint:function(){return"Mencetak"},formatLoadingMessage:function(){return"Pemuatan sedang berlangsung"},formatRecordsPerPage:function(t){return"".concat(t," baris per halaman")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Menampilkan dari ".concat(t," hingga ").concat(n," pada ").concat(r," baris (difilter dari ").concat(o," baris)"):"Menampilkan dari ".concat(t," hingga ").concat(n," pada ").concat(r," baris")},formatSRPaginationPreText:function(){return"halaman sebelumnya"},formatSRPaginationPageText:function(t){return"ke halaman ".concat(t)},formatSRPaginationNextText:function(){return"halaman berikutnya"},formatDetailPagination:function(t){return"Tampilan ".concat(t," baris")},formatClearSearch:function(){return"Menghapus pencarian"},formatSearch:function(){return"Pencarian"},formatNoMatches:function(){return"Tidak ada hasil"},formatPaginationSwitch:function(){return"Sembunyikan/Tampilkan penomoran halaman"},formatPaginationSwitchDown:function(){return"Tampilkan penomoran halaman"},formatPaginationSwitchUp:function(){return"Sembunyikan penomoran halaman"},formatRefresh:function(){return"Segarkan"},formatToggleOn:function(){return"Menampilkan tampilan peta"},formatToggleOff:function(){return"Menyembunyikan tampilan peta"},formatColumns:function(){return"Kolom"},formatColumnsToggleAll:function(){return"Tampilkan semua"},formatFullscreen:function(){return"Layar penuh"},formatAllRows:function(){return"Semua"},formatAutoRefresh:function(){return"Penyegaran otomatis"},formatExport:function(){return"Mengekspor data"},formatJumpTo:function(){return"Pergi ke"},formatAdvancedSearch:function(){return"Pencarian lanjutan"},formatAdvancedCloseButton:function(){return"Tutup"},formatFilterControlSwitch:function(){return"Menyembunyikan/Menampilkan kontrol"},formatFilterControlSwitchHide:function(){return"Menyembunyikan kontrol"},formatFilterControlSwitchShow:function(){return"Menampilkan kontrol"},formatToggleCustomViewOn:function(){return"Menampilkan tampilan khusus"},formatToggleCustomViewOff:function(){return"Menyembunyikan tampilan khusus"},formatClearFilters:function(){return"Menghapus filter"},formatAddLevel:function(){return"Menambahkan level"},formatCancel:function(){return"Batal"},formatColumn:function(){return"Kolom"},formatDeleteLevel:function(){return"Menghapus level"},formatDuplicateAlertTitle:function(){return"Entri duplikat telah ditemukan!"},formatDuplicateAlertDescription:function(){return"Harap hapus atau ubah entri duplikat"},formatMultipleSort:function(){return"Penyortiran ganda"},formatOrder:function(){return"Urutan"},formatSort:function(){return"Penyortiran"},formatSortBy:function(){return"Urutkan berdasarkan"},formatSortOrders:function(){return{asc:"Menaik",desc:"Menurun"}},formatThenBy:function(){return"Kemudian oleh"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["id-ID"]),t.fn.bootstrapTable.locales["it-IT"]=t.fn.bootstrapTable.locales.it={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Caricamento in corso"},formatRecordsPerPage:function(t){return"".concat(t," elementi per pagina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Visualizzazione da ".concat(t," a ").concat(n," di ").concat(r," elementi (filtrati da ").concat(o," elementi totali)"):"Visualizzazione da ".concat(t," a ").concat(n," di ").concat(r," elementi")},formatSRPaginationPreText:function(){return"pagina precedente"},formatSRPaginationPageText:function(t){return"alla pagina ".concat(t)},formatSRPaginationNextText:function(){return"pagina successiva"},formatDetailPagination:function(t){return"Mostrando ".concat(t," elementi")},formatClearSearch:function(){return"Pulisci filtri"},formatSearch:function(){return"Cerca"},formatNoMatches:function(){return"Nessun elemento trovato"},formatPaginationSwitch:function(){return"Nascondi/Mostra paginazione"},formatPaginationSwitchDown:function(){return"Mostra paginazione"},formatPaginationSwitchUp:function(){return"Nascondi paginazione"},formatRefresh:function(){return"Aggiorna"},formatToggleOn:function(){return"Mostra visuale a scheda"},formatToggleOff:function(){return"Nascondi visuale a scheda"},formatColumns:function(){return"Colonne"},formatColumnsToggleAll:function(){return"Mostra tutte"},formatFullscreen:function(){return"Schermo intero"},formatAllRows:function(){return"Tutto"},formatAutoRefresh:function(){return"Auto Aggiornamento"},formatExport:function(){return"Esporta dati"},formatJumpTo:function(){return"VAI"},formatAdvancedSearch:function(){return"Filtri avanzati"},formatAdvancedCloseButton:function(){return"Chiudi"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["it-IT"]),t.fn.bootstrapTable.locales["ja-JP"]=t.fn.bootstrapTable.locales.ja={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"読み込み中です。少々お待ちください。"},formatRecordsPerPage:function(t){return"ページ当たり最大".concat(t,"件")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"全".concat(r,"件から、").concat(t,"から").concat(n,"件目まで表示しています (filtered from ").concat(o," total rows)"):"全".concat(r,"件から、").concat(t,"から").concat(n,"件目まで表示しています")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"検索"},formatNoMatches:function(){return"該当するレコードが見つかりません"},formatPaginationSwitch:function(){return"ページ数を表示・非表示"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"更新"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"列"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"すべて"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ja-JP"]),t.fn.bootstrapTable.locales["ka-GE"]=t.fn.bootstrapTable.locales.ka={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"იტვირთება, გთხოვთ მოიცადოთ"},formatRecordsPerPage:function(t){return"".concat(t," ჩანაწერი თითო გვერდზე")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"ნაჩვენებია ".concat(t,"-დან ").concat(n,"-მდე ჩანაწერი ჯამური ").concat(r,"-დან (filtered from ").concat(o," total rows)"):"ნაჩვენებია ".concat(t,"-დან ").concat(n,"-მდე ჩანაწერი ჯამური ").concat(r,"-დან")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"ძებნა"},formatNoMatches:function(){return"მონაცემები არ არის"},formatPaginationSwitch:function(){return"გვერდების გადამრთველის დამალვა/გამოჩენა"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"განახლება"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"სვეტები"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ka-GE"]),t.fn.bootstrapTable.locales["ko-KR"]=t.fn.bootstrapTable.locales.ko={formatCopyRows:function(){return"행 복사"},formatPrint:function(){return"프린트"},formatLoadingMessage:function(){return"데이터를 불러오는 중입니다"},formatRecordsPerPage:function(t){return"페이지 당 ".concat(t,"개 데이터 출력")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"전체 ".concat(r,"개 중 ").concat(t,"~").concat(n,"번째 데이터 출력, (전체 ").concat(o," 행에서 필터됨)"):"전체 ".concat(r,"개 중 ").concat(t,"~").concat(n,"번째 데이터 출력,")},formatSRPaginationPreText:function(){return"이전 페이지"},formatSRPaginationPageText:function(t){return"".concat(t," 페이지로 이동")},formatSRPaginationNextText:function(){return"다음 페이지"},formatDetailPagination:function(t){return"".concat(t," 행들 표시 중")},formatClearSearch:function(){return"검색 초기화"},formatSearch:function(){return"검색"},formatNoMatches:function(){return"조회된 데이터가 없습니다."},formatPaginationSwitch:function(){return"페이지 넘버 보기/숨기기"},formatPaginationSwitchDown:function(){return"페이지 넘버 보기"},formatPaginationSwitchUp:function(){return"페이지 넘버 숨기기"},formatRefresh:function(){return"새로 고침"},formatToggleOn:function(){return"카드뷰 보기"},formatToggleOff:function(){return"카드뷰 숨기기"},formatColumns:function(){return"컬럼 필터링"},formatColumnsToggleAll:function(){return"전체 토글"},formatFullscreen:function(){return"전체 화면"},formatAllRows:function(){return"전체"},formatAutoRefresh:function(){return"자동 갱신"},formatExport:function(){return"데이터 추출"},formatJumpTo:function(){return"이동"},formatAdvancedSearch:function(){return"심화 검색"},formatAdvancedCloseButton:function(){return"닫기"},formatFilterControlSwitch:function(){return"컨트롤 보기/숨기기"},formatFilterControlSwitchHide:function(){return"컨트롤 숨기기"},formatFilterControlSwitchShow:function(){return"컨트롤 보기"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ko-KR"]),t.fn.bootstrapTable.locales["lb-LU"]=t.fn.bootstrapTable.locales.lb={formatCopyRows:function(){return"Zeilen kopéieren"},formatPrint:function(){return"Drécken"},formatLoadingMessage:function(){return"Gëtt gelueden, gedellëgt Iech wannechgelift ee Moment"},formatRecordsPerPage:function(t){return"".concat(t," Zeilen per Säit")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Weist Zeil ".concat(t," bis ").concat(n," vun ").concat(r," Zeil").concat(r>1?"en":""," (gefiltert vun insgesamt ").concat(o," Zeil").concat(r>1?"en":"",")"):"Weist Zeil ".concat(t," bis ").concat(n," vun ").concat(r," Zeil").concat(r>1?"en":"")},formatSRPaginationPreText:function(){return"viregt Säit"},formatSRPaginationPageText:function(t){return"op Säit ".concat(t)},formatSRPaginationNextText:function(){return"nächst Säit"},formatDetailPagination:function(t){return"Weist ".concat(t," Zeilen")},formatClearSearch:function(){return"Sich réckgängeg maachen"},formatSearch:function(){return"Sich"},formatNoMatches:function(){return"Keng passend Anträg fonnt"},formatPaginationSwitch:function(){return"Paginatioun uweisen/verstoppen"},formatPaginationSwitchDown:function(){return"Paginatioun uweisen"},formatPaginationSwitchUp:function(){return"Paginatioun verstoppen"},formatRefresh:function(){return"Nei lueden"},formatToggleOn:function(){return"Kaartenusiicht uweisen"},formatToggleOff:function(){return"Kaartenusiicht verstoppen"},formatColumns:function(){return"Kolonnen"},formatColumnsToggleAll:function(){return"All ëmschalten"},formatFullscreen:function(){return"Vollbild"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Automatescht neilueden"},formatExport:function(){return"Daten exportéieren"},formatJumpTo:function(){return"Sprangen"},formatAdvancedSearch:function(){return"Erweidert Sich"},formatAdvancedCloseButton:function(){return"Zoumaachen"},formatFilterControlSwitch:function(){return"Schaltelementer uweisen/verstoppen"},formatFilterControlSwitchHide:function(){return"Schaltelementer verstoppen"},formatFilterControlSwitchShow:function(){return"Schaltelementer uweisen"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["lb-LU"]),t.fn.bootstrapTable.locales["ms-MY"]=t.fn.bootstrapTable.locales.ms={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Permintaan sedang dimuatkan. Sila tunggu sebentar"},formatRecordsPerPage:function(t){return"".concat(t," rekod setiap muka surat")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Sedang memaparkan rekod ".concat(t," hingga ").concat(n," daripada jumlah ").concat(r," rekod (filtered from ").concat(o," total rows)"):"Sedang memaparkan rekod ".concat(t," hingga ").concat(n," daripada jumlah ").concat(r," rekod")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Cari"},formatNoMatches:function(){return"Tiada rekod yang menyamai permintaan"},formatPaginationSwitch:function(){return"Tunjuk/sembunyi muka surat"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Muatsemula"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Lajur"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Semua"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ms-MY"]),t.fn.bootstrapTable.locales["nb-NO"]=t.fn.bootstrapTable.locales.nb={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Oppdaterer, vennligst vent"},formatRecordsPerPage:function(t){return"".concat(t," poster pr side")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Viser ".concat(t," til ").concat(n," av ").concat(r," rekker (filtered from ").concat(o," total rows)"):"Viser ".concat(t," til ").concat(n," av ").concat(r," rekker")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Søk"},formatNoMatches:function(){return"Ingen poster funnet"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Oppdater"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Kolonner"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["nb-NO"]),t.fn.bootstrapTable.locales["nl-BE"]={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Laden, even geduld"},formatRecordsPerPage:function(t){return"".concat(t," records per pagina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Toon ".concat(t," tot ").concat(n," van ").concat(r," record").concat(r>1?"s":""," (gefilterd van ").concat(o," records in totaal)"):"Toon ".concat(t," tot ").concat(n," van ").concat(r," record").concat(r>1?"s":"")},formatSRPaginationPreText:function(){return"vorige pagina"},formatSRPaginationPageText:function(t){return"tot pagina ".concat(t)},formatSRPaginationNextText:function(){return"volgende pagina"},formatDetailPagination:function(t){return"Toon ".concat(t," record").concat(t>1?"s":"")},formatClearSearch:function(){return"Verwijder filters"},formatSearch:function(){return"Zoeken"},formatNoMatches:function(){return"Geen resultaten gevonden"},formatPaginationSwitch:function(){return"Verberg/Toon paginering"},formatPaginationSwitchDown:function(){return"Toon paginering"},formatPaginationSwitchUp:function(){return"Verberg paginering"},formatRefresh:function(){return"Vernieuwen"},formatToggleOn:function(){return"Toon kaartweergave"},formatToggleOff:function(){return"Verberg kaartweergave"},formatColumns:function(){return"Kolommen"},formatColumnsToggleAll:function(){return"Allen omschakelen"},formatFullscreen:function(){return"Volledig scherm"},formatAllRows:function(){return"Alle"},formatAutoRefresh:function(){return"Automatisch vernieuwen"},formatExport:function(){return"Exporteer gegevens"},formatJumpTo:function(){return"GA"},formatAdvancedSearch:function(){return"Geavanceerd zoeken"},formatAdvancedCloseButton:function(){return"Sluiten"},formatFilterControlSwitch:function(){return"Verberg/Toon controls"},formatFilterControlSwitchHide:function(){return"Verberg controls"},formatFilterControlSwitchShow:function(){return"Toon controls"},formatAddLevel:function(){return"Niveau toevoegen"},formatCancel:function(){return"Annuleren"},formatColumn:function(){return"Kolom"},formatDeleteLevel:function(){return"Niveau verwijderen"},formatDuplicateAlertTitle:function(){return"Duplicaten gevonden!"},formatDuplicateAlertDescription:function(){return"Gelieve dubbele kolommen te verwijderen of wijzigen"},formatMultipleSort:function(){return"Meervoudige sortering"},formatOrder:function(){return"Volgorde"},formatSort:function(){return"Sorteren"},formatSortBy:function(){return"Sorteren op"},formatThenBy:function(){return"vervolgens"},formatSortOrders:function(){return{asc:"Oplopend",desc:"Aflopend"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["nl-BE"]),t.fn.bootstrapTable.locales["nl-NL"]=t.fn.bootstrapTable.locales.nl={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Laden, even geduld"},formatRecordsPerPage:function(t){return"".concat(t," records per pagina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Toon ".concat(t," tot ").concat(n," van ").concat(r," record").concat(r>1?"s":""," (gefilterd van ").concat(o," records in totaal)"):"Toon ".concat(t," tot ").concat(n," van ").concat(r," record").concat(r>1?"s":"")},formatSRPaginationPreText:function(){return"vorige pagina"},formatSRPaginationPageText:function(t){return"tot pagina ".concat(t)},formatSRPaginationNextText:function(){return"volgende pagina"},formatDetailPagination:function(t){return"Toon ".concat(t," record").concat(t>1?"s":"")},formatClearSearch:function(){return"Verwijder filters"},formatSearch:function(){return"Zoeken"},formatNoMatches:function(){return"Geen resultaten gevonden"},formatPaginationSwitch:function(){return"Verberg/Toon paginering"},formatPaginationSwitchDown:function(){return"Toon paginering"},formatPaginationSwitchUp:function(){return"Verberg paginering"},formatRefresh:function(){return"Vernieuwen"},formatToggleOn:function(){return"Toon kaartweergave"},formatToggleOff:function(){return"Verberg kaartweergave"},formatColumns:function(){return"Kolommen"},formatColumnsToggleAll:function(){return"Allen omschakelen"},formatFullscreen:function(){return"Volledig scherm"},formatAllRows:function(){return"Alle"},formatAutoRefresh:function(){return"Automatisch vernieuwen"},formatExport:function(){return"Exporteer gegevens"},formatJumpTo:function(){return"GA"},formatAdvancedSearch:function(){return"Geavanceerd zoeken"},formatAdvancedCloseButton:function(){return"Sluiten"},formatFilterControlSwitch:function(){return"Verberg/Toon controls"},formatFilterControlSwitchHide:function(){return"Verberg controls"},formatFilterControlSwitchShow:function(){return"Toon controls"},formatAddLevel:function(){return"Niveau toevoegen"},formatCancel:function(){return"Annuleren"},formatColumn:function(){return"Kolom"},formatDeleteLevel:function(){return"Niveau verwijderen"},formatDuplicateAlertTitle:function(){return"Duplicaten gevonden!"},formatDuplicateAlertDescription:function(){return"Gelieve dubbele kolommen te verwijderen of wijzigen"},formatMultipleSort:function(){return"Meervoudige sortering"},formatOrder:function(){return"Volgorde"},formatSort:function(){return"Sorteren"},formatSortBy:function(){return"Sorteren op"},formatThenBy:function(){return"vervolgens"},formatSortOrders:function(){return{asc:"Oplopend",desc:"Aflopend"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["nl-NL"]),t.fn.bootstrapTable.locales["pl-PL"]=t.fn.bootstrapTable.locales.pl={formatCopyRows:function(){return"Kopiuj wiersze"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Ładowanie, proszę czekać"},formatRecordsPerPage:function(t){return"".concat(t," rekordów na stronę")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Wyświetlanie rekordów od ".concat(t," do ").concat(n," z ").concat(r," (filtered from ").concat(o," total rows)"):"Wyświetlanie rekordów od ".concat(t," do ").concat(n," z ").concat(r)},formatSRPaginationPreText:function(){return"poprzednia strona"},formatSRPaginationPageText:function(t){return"z ".concat(t)},formatSRPaginationNextText:function(){return"następna strona"},formatDetailPagination:function(t){return"Wyświetla ".concat(t," wierszy")},formatClearSearch:function(){return"Wyczyść wyszukiwanie"},formatSearch:function(){return"Szukaj"},formatNoMatches:function(){return"Niestety, nic nie znaleziono"},formatPaginationSwitch:function(){return"Pokaż/ukryj stronicowanie"},formatPaginationSwitchDown:function(){return"Pokaż stronicowanie"},formatPaginationSwitchUp:function(){return"Ukryj stronicowanie"},formatRefresh:function(){return"Odśwież"},formatToggleOn:function(){return"Pokaż układ karty"},formatToggleOff:function(){return"Ukryj układ karty"},formatColumns:function(){return"Kolumny"},formatColumnsToggleAll:function(){return"Zaznacz wszystko"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Wszystkie"},formatAutoRefresh:function(){return"Auto odświeżanie"},formatExport:function(){return"Eksport danych"},formatJumpTo:function(){return"Przejdź"},formatAdvancedSearch:function(){return"Wyszukiwanie zaawansowane"},formatAdvancedCloseButton:function(){return"Zamknij"},formatFilterControlSwitch:function(){return"Pokaż/Ukryj"},formatFilterControlSwitchHide:function(){return"Pokaż"},formatFilterControlSwitchShow:function(){return"Ukryj"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["pl-PL"]),t.fn.bootstrapTable.locales["pt-BR"]=t.fn.bootstrapTable.locales.br={formatCopyRows:function(){return"Copiar linhas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Carregando, aguarde"},formatRecordsPerPage:function(t){return"".concat(t," registros por página")},formatShowingRows:function(t,n,r,o){var e=r>1?"s":"";return void 0!==o&&o>0&&o>r?"Exibindo ".concat(t," até ").concat(n," de ").concat(r," linha").concat(e," (filtrado de um total de ").concat(o," linha").concat(e,")"):"Exibindo ".concat(t," até ").concat(n," de ").concat(r," linha").concat(e)},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"ir para a página ".concat(t)},formatSRPaginationNextText:function(){return"próxima página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," linha").concat(t>1?"s":"")},formatClearSearch:function(){return"Limpar Pesquisa"},formatSearch:function(){return"Pesquisar"},formatNoMatches:function(){return"Nenhum registro encontrado"},formatPaginationSwitch:function(){return"Ocultar/Exibir paginação"},formatPaginationSwitchDown:function(){return"Mostrar Paginação"},formatPaginationSwitchUp:function(){return"Esconder Paginação"},formatRefresh:function(){return"Recarregar"},formatToggleOn:function(){return"Mostrar visualização de cartão"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Colunas"},formatColumnsToggleAll:function(){return"Alternar tudo"},formatFullscreen:function(){return"Tela cheia"},formatAllRows:function(){return"Tudo"},formatAutoRefresh:function(){return"Atualização Automática"},formatExport:function(){return"Exportar dados"},formatJumpTo:function(){return"Ir"},formatAdvancedSearch:function(){return"Pesquisa Avançada"},formatAdvancedCloseButton:function(){return"Fechar"},formatFilterControlSwitch:function(){return"Ocultar/Exibir controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Exibir controles"},formatAddLevel:function(){return"Adicionar nível"},formatCancel:function(){return"Cancelar"},formatColumn:function(){return"Coluna"},formatDeleteLevel:function(){return"Remover nível"},formatDuplicateAlertTitle:function(){return"Encontradas entradas duplicadas!"},formatDuplicateAlertDescription:function(){return"Por favor, remova ou altere as colunas duplicadas"},formatMultipleSort:function(){return"Ordenação múltipla"},formatOrder:function(){return"Ordem"},formatSort:function(){return"Ordenar"},formatSortBy:function(){return"Ordenar por"},formatThenBy:function(){return"em seguida"},formatSortOrders:function(){return{asc:"Crescente",desc:"Decrescente"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["pt-BR"]),t.fn.bootstrapTable.locales["ro-RO"]=t.fn.bootstrapTable.locales.ro={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Se incarca, va rugam asteptati"},formatRecordsPerPage:function(t){return"".concat(t," inregistrari pe pagina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Arata de la ".concat(t," pana la ").concat(n," din ").concat(r," randuri (filtered from ").concat(o," total rows)"):"Arata de la ".concat(t," pana la ").concat(n," din ").concat(r," randuri")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Cauta"},formatNoMatches:function(){return"Nu au fost gasite inregistrari"},formatPaginationSwitch:function(){return"Ascunde/Arata paginatia"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Reincarca"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Coloane"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Toate"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ro-RO"]),t.fn.bootstrapTable.locales["ru-RU"]=t.fn.bootstrapTable.locales.ru={formatCopyRows:function(){return"Скопировать строки"},formatPrint:function(){return"Печать"},formatLoadingMessage:function(){return"Пожалуйста, подождите, идёт загрузка"},formatRecordsPerPage:function(t){return"".concat(t," записей на страницу")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Записи с ".concat(t," по ").concat(n," из ").concat(r," (отфильтровано, всего на сервере ").concat(o," записей)"):"Записи с ".concat(t," по ").concat(n," из ").concat(r)},formatSRPaginationPreText:function(){return"предыдущая страница"},formatSRPaginationPageText:function(t){return"перейти к странице ".concat(t)},formatSRPaginationNextText:function(){return"следующая страница"},formatDetailPagination:function(t){return"Загружено ".concat(t," строк")},formatClearSearch:function(){return"Очистить фильтры"},formatSearch:function(){return"Поиск"},formatNoMatches:function(){return"Ничего не найдено"},formatPaginationSwitch:function(){return"Скрыть/Показать постраничную навигацию"},formatPaginationSwitchDown:function(){return"Показать постраничную навигацию"},formatPaginationSwitchUp:function(){return"Скрыть постраничную навигацию"},formatRefresh:function(){return"Обновить"},formatToggleOn:function(){return"Показать записи в виде карточек"},formatToggleOff:function(){return"Табличный режим просмотра"},formatColumns:function(){return"Колонки"},formatColumnsToggleAll:function(){return"Выбрать все"},formatFullscreen:function(){return"Полноэкранный режим"},formatAllRows:function(){return"Все"},formatAutoRefresh:function(){return"Автоматическое обновление"},formatExport:function(){return"Экспортировать данные"},formatJumpTo:function(){return"Стр."},formatAdvancedSearch:function(){return"Расширенный поиск"},formatAdvancedCloseButton:function(){return"Закрыть"},formatFilterControlSwitch:function(){return"Скрыть/Показать панель инструментов"},formatFilterControlSwitchHide:function(){return"Скрыть панель инструментов"},formatFilterControlSwitchShow:function(){return"Показать панель инструментов"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ru-RU"]),t.fn.bootstrapTable.locales["sk-SK"]=t.fn.bootstrapTable.locales.sk={formatCopyRows:function(){return"Skopírovať riadky"},formatPrint:function(){return"Vytlačiť"},formatLoadingMessage:function(){return"Prosím čakajte"},formatRecordsPerPage:function(t){return"".concat(t," záznamov na stranu")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Zobrazená ".concat(t,". - ").concat(n,". položka z celkových ").concat(r," (filtered from ").concat(o," total rows)"):"Zobrazená ".concat(t,". - ").concat(n,". položka z celkových ").concat(r)},formatSRPaginationPreText:function(){return"Predchádzajúca strana"},formatSRPaginationPageText:function(t){return"na stranu ".concat(t)},formatSRPaginationNextText:function(){return"Nasledujúca strana"},formatDetailPagination:function(t){return"Zobrazuje sa ".concat(t," riadkov")},formatClearSearch:function(){return"Odstráň filtre"},formatSearch:function(){return"Vyhľadávanie"},formatNoMatches:function(){return"Nenájdená žiadna vyhovujúca položka"},formatPaginationSwitch:function(){return"Skry/Zobraz stránkovanie"},formatPaginationSwitchDown:function(){return"Zobraziť stránkovanie"},formatPaginationSwitchUp:function(){return"Skryť stránkovanie"},formatRefresh:function(){return"Obnoviť"},formatToggleOn:function(){return"Zobraziť kartové zobrazenie"},formatToggleOff:function(){return"skryť kartové zobrazenie"},formatColumns:function(){return"Stĺpce"},formatColumnsToggleAll:function(){return"Prepnúť všetky"},formatFullscreen:function(){return"Celá obrazovka"},formatAllRows:function(){return"Všetky"},formatAutoRefresh:function(){return"Automatické obnovenie"},formatExport:function(){return"Exportuj dáta"},formatJumpTo:function(){return"Ísť"},formatAdvancedSearch:function(){return"Pokročilé vyhľadávanie"},formatAdvancedCloseButton:function(){return"Zatvoriť"},formatFilterControlSwitch:function(){return"Zobraziť/Skryť tlačidlá"},formatFilterControlSwitchHide:function(){return"Skryť tlačidlá"},formatFilterControlSwitchShow:function(){return"Zobraziť tlačidlá"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sk-SK"]),t.fn.bootstrapTable.locales["sl-SI"]=t.fn.bootstrapTable.locales.sl={formatCopyRows:function(){return"Kopiraj vrstice"},formatPrint:function(){return"Natisni"},formatLoadingMessage:function(){return"Prosim počakajte..."},formatRecordsPerPage:function(t){return"".concat(t," vrstic na stran")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Prikaz ".concat(t," do ").concat(n," od ").concat(r," vrstic (filtrirano od skupno ").concat(o," vrstic)"):"Prikaz ".concat(t," do ").concat(n," od ").concat(r," vrstic")},formatSRPaginationPreText:function(){return"prejšnja stran"},formatSRPaginationPageText:function(t){return"na stran ".concat(t)},formatSRPaginationNextText:function(){return"na slednja stran"},formatDetailPagination:function(t){return"Prikaz ".concat(t," vrstic")},formatClearSearch:function(){return"Počisti"},formatSearch:function(){return"Iskanje"},formatNoMatches:function(){return"Ni najdenih rezultatov"},formatPaginationSwitch:function(){return"Skrij/Pokaži oštevilčevanje strani"},formatPaginationSwitchDown:function(){return"Pokaži oštevilčevanje strani"},formatPaginationSwitchUp:function(){return"Skrij oštevilčevanje strani"},formatRefresh:function(){return"Osveži"},formatToggleOn:function(){return"Prikaži kartični pogled"},formatToggleOff:function(){return"Skrij kartični pogled"},formatColumns:function(){return"Stolpci"},formatColumnsToggleAll:function(){return"Preklopi vse"},formatFullscreen:function(){return"Celozaslonski prikaz"},formatAllRows:function(){return"Vse"},formatAutoRefresh:function(){return"Samodejna osvežitev"},formatExport:function(){return"Izvoz podatkov"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Napredno iskanje"},formatAdvancedCloseButton:function(){return"Zapri"},formatFilterControlSwitch:function(){return"Skrij/Pokaži kontrole"},formatFilterControlSwitchHide:function(){return"Skrij kontrole"},formatFilterControlSwitchShow:function(){return"Pokaži kontrole"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sl-SI"]),t.fn.bootstrapTable.locales["sr-Cyrl-RS"]=t.fn.bootstrapTable.locales.sr={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Молим сачекај"},formatRecordsPerPage:function(t){return"".concat(t," редова по страни")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Приказано ".concat(t,". - ").concat(n,". од укупног броја редова ").concat(r," (филтрирано од ").concat(o,")"):"Приказано ".concat(t,". - ").concat(n,". од укупног броја редова ").concat(r)},formatSRPaginationPreText:function(){return"претходна страна"},formatSRPaginationPageText:function(t){return"на страну ".concat(t)},formatSRPaginationNextText:function(){return"следећа страна"},formatDetailPagination:function(t){return"Приказано ".concat(t," редова")},formatClearSearch:function(){return"Обриши претрагу"},formatSearch:function(){return"Пронађи"},formatNoMatches:function(){return"Није пронађен ни један податак"},formatPaginationSwitch:function(){return"Прикажи/сакриј пагинацију"},formatPaginationSwitchDown:function(){return"Прикажи пагинацију"},formatPaginationSwitchUp:function(){return"Сакриј пагинацију"},formatRefresh:function(){return"Освежи"},formatToggleOn:function(){return"Прикажи картице"},formatToggleOff:function(){return"Сакриј картице"},formatColumns:function(){return"Колоне"},formatColumnsToggleAll:function(){return"Прикажи/сакриј све"},formatFullscreen:function(){return"Цео екран"},formatAllRows:function(){return"Све"},formatAutoRefresh:function(){return"Аутоматско освежавање"},formatExport:function(){return"Извези податке"},formatJumpTo:function(){return"Иди"},formatAdvancedSearch:function(){return"Напредна претрага"},formatAdvancedCloseButton:function(){return"Затвори"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sr-Cyrl-RS"]),t.fn.bootstrapTable.locales["sv-SE"]=t.fn.bootstrapTable.locales.sv={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Laddar, vänligen vänta"},formatRecordsPerPage:function(t){return"".concat(t," rader per sida")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Visa ".concat(t," till ").concat(n," av ").concat(r," rader (filtered from ").concat(o," total rows)"):"Visa ".concat(t," till ").concat(n," av ").concat(r," rader")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Sök"},formatNoMatches:function(){return"Inga matchande resultat funna."},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Uppdatera"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"kolumn"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sv-SE"]),t.fn.bootstrapTable.locales["sr-Latn-RS"]={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Molim sačekaj"},formatRecordsPerPage:function(t){return"".concat(t," redova po strani")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Prikazano ".concat(t,". - ").concat(n,". od ukupnog broja redova ").concat(r," (filtrirano od ").concat(o,")"):"Prikazano ".concat(t,". - ").concat(n,". od ukupnog broja redova ").concat(r)},formatSRPaginationPreText:function(){return"prethodna strana"},formatSRPaginationPageText:function(t){return"na stranu ".concat(t)},formatSRPaginationNextText:function(){return"sledeća strana"},formatDetailPagination:function(t){return"Prikazano ".concat(t," redova")},formatClearSearch:function(){return"Obriši pretragu"},formatSearch:function(){return"Pronađi"},formatNoMatches:function(){return"Nije pronađen ni jedan podatak"},formatPaginationSwitch:function(){return"Prikaži/sakrij paginaciju"},formatPaginationSwitchDown:function(){return"Prikaži paginaciju"},formatPaginationSwitchUp:function(){return"Sakrij paginaciju"},formatRefresh:function(){return"Osveži"},formatToggleOn:function(){return"Prikaži kartice"},formatToggleOff:function(){return"Sakrij kartice"},formatColumns:function(){return"Kolone"},formatColumnsToggleAll:function(){return"Prikaži/sakrij sve"},formatFullscreen:function(){return"Ceo ekran"},formatAllRows:function(){return"Sve"},formatAutoRefresh:function(){return"Automatsko osvežavanje"},formatExport:function(){return"Izvezi podatke"},formatJumpTo:function(){return"Idi"},formatAdvancedSearch:function(){return"Napredna pretraga"},formatAdvancedCloseButton:function(){return"Zatvori"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sr-Latn-RS"]),t.fn.bootstrapTable.locales["th-TH"]=t.fn.bootstrapTable.locales.th={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"กำลังโหลดข้อมูล, กรุณารอสักครู่"},formatRecordsPerPage:function(t){return"".concat(t," รายการต่อหน้า")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"รายการที่ ".concat(t," ถึง ").concat(n," จากทั้งหมด ").concat(r," รายการ (filtered from ").concat(o," total rows)"):"รายการที่ ".concat(t," ถึง ").concat(n," จากทั้งหมด ").concat(r," รายการ")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"ค้นหา"},formatNoMatches:function(){return"ไม่พบรายการที่ค้นหา !"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"รีเฟรส"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"คอลัมน์"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["th-TH"]),t.fn.bootstrapTable.locales["tr-TR"]=t.fn.bootstrapTable.locales.tr={formatCopyRows:function(){return"Satırları Kopyala"},formatPrint:function(){return"Yazdır"},formatLoadingMessage:function(){return"Yükleniyor, lütfen bekleyin"},formatRecordsPerPage:function(t){return"Sayfa başına ".concat(t," kayıt.")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"".concat(r," kayıttan ").concat(t,"-").concat(n," arası gösteriliyor (").concat(o," toplam satır filtrelendi)."):"".concat(r," kayıttan ").concat(t,"-").concat(n," arası gösteriliyor.")},formatSRPaginationPreText:function(){return"önceki sayfa"},formatSRPaginationPageText:function(t){return"sayfa ".concat(t)},formatSRPaginationNextText:function(){return"sonraki sayfa"},formatDetailPagination:function(t){return"".concat(t," satır gösteriliyor")},formatClearSearch:function(){return"Aramayı Temizle"},formatSearch:function(){return"Ara"},formatNoMatches:function(){return"Eşleşen kayıt bulunamadı."},formatPaginationSwitch:function(){return"Sayfalamayı Gizle/Göster"},formatPaginationSwitchDown:function(){return"Sayfalamayı Göster"},formatPaginationSwitchUp:function(){return"Sayfalamayı Gizle"},formatRefresh:function(){return"Yenile"},formatToggleOn:function(){return"Kart Görünümünü Göster"},formatToggleOff:function(){return"Kart Görünümünü Gizle"},formatColumns:function(){return"Sütunlar"},formatColumnsToggleAll:function(){return"Tümünü Kapat"},formatFullscreen:function(){return"Tam Ekran"},formatAllRows:function(){return"Tüm Satırlar"},formatAutoRefresh:function(){return"Otomatik Yenileme"},formatExport:function(){return"Verileri Dışa Aktar"},formatJumpTo:function(){return"Git"},formatAdvancedSearch:function(){return"Gelişmiş Arama"},formatAdvancedCloseButton:function(){return"Kapat"},formatFilterControlSwitch:function(){return"Kontrolleri Gizle/Göster"},formatFilterControlSwitchHide:function(){return"Kontrolleri Gizle"},formatFilterControlSwitchShow:function(){return"Kontrolleri Göster"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["tr-TR"]),t.fn.bootstrapTable.locales["uk-UA"]=t.fn.bootstrapTable.locales.uk={formatCopyRows:function(){return"Скопіювати рядки"},formatPrint:function(){return"Друк"},formatLoadingMessage:function(){return"Завантаження, будь ласка, зачекайте"},formatRecordsPerPage:function(t){return"".concat(t," рядків на сторінку")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Відображено рядки з ".concat(t," по ").concat(n," з ").concat(r," загалом (відфільтровано з ").concat(o," рядків)"):"Відображено рядки з ".concat(t," по ").concat(n," з ").concat(r," загалом")},formatSRPaginationPreText:function(){return"попередня сторінка"},formatSRPaginationPageText:function(t){return"до сторінки ".concat(t)},formatSRPaginationNextText:function(){return"наступна сторінка"},formatDetailPagination:function(t){return"Відображено ".concat(t," рядків")},formatClearSearch:function(){return"Скинути фільтри"},formatSearch:function(){return"Пошук"},formatNoMatches:function(){return"Не знайдено жодного запису"},formatPaginationSwitch:function(){return"Сховати/Відобразити пагінацію"},formatPaginationSwitchDown:function(){return"Відобразити пагінацію"},formatPaginationSwitchUp:function(){return"Сховати пагінацію"},formatRefresh:function(){return"Оновити"},formatToggleOn:function(){return"Відобразити у форматі карток"},formatToggleOff:function(){return"Вимкнути формат карток"},formatColumns:function(){return"Стовпці"},formatColumnsToggleAll:function(){return"Переключити усі"},formatFullscreen:function(){return"Повноекранний режим"},formatAllRows:function(){return"Усі"},formatAutoRefresh:function(){return"Автооновлення"},formatExport:function(){return"Експортувати дані"},formatJumpTo:function(){return"Швидкий перехід до"},formatAdvancedSearch:function(){return"Розширений пошук"},formatAdvancedCloseButton:function(){return"Закрити"},formatFilterControlSwitch:function(){return"Сховати/Відобразити елементи керування"},formatFilterControlSwitchHide:function(){return"Сховати елементи керування"},formatFilterControlSwitchShow:function(){return"Відобразити елементи керування"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["uk-UA"]),t.fn.bootstrapTable.locales["ur-PK"]=t.fn.bootstrapTable.locales.ur={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"براۓ مہربانی انتظار کیجئے"},formatRecordsPerPage:function(t){return"".concat(t," ریکارڈز فی صفہ ")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"دیکھیں ".concat(t," سے ").concat(n," کے ").concat(r,"ریکارڈز (filtered from ").concat(o," total rows)"):"دیکھیں ".concat(t," سے ").concat(n," کے ").concat(r,"ریکارڈز")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"تلاش"},formatNoMatches:function(){return"کوئی ریکارڈ نہیں ملا"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"تازہ کریں"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"کالم"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ur-PK"]),t.fn.bootstrapTable.locales["uz-Latn-UZ"]=t.fn.bootstrapTable.locales.uz={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Yuklanyapti, iltimos kuting"},formatRecordsPerPage:function(t){return"".concat(t," qator har sahifada")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Ko'rsatypati ".concat(t," dan ").concat(n," gacha ").concat(r," qatorlarni (filtered from ").concat(o," total rows)"):"Ko'rsatypati ".concat(t," dan ").concat(n," gacha ").concat(r," qatorlarni")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Filtrlarni tozalash"},formatSearch:function(){return"Qidirish"},formatNoMatches:function(){return"Hech narsa topilmadi"},formatPaginationSwitch:function(){return"Sahifalashni yashirish/ko'rsatish"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Yangilash"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Ustunlar"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Hammasi"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Eksport"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["uz-Latn-UZ"]),t.fn.bootstrapTable.locales["zh-CN"]=t.fn.bootstrapTable.locales.zh={formatCopyRows:function(){return"复制行"},formatPrint:function(){return"打印"},formatLoadingMessage:function(){return"正在努力地加载数据中,请稍候"},formatRecordsPerPage:function(t){return"每页显示 ".concat(t," 条记录")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"显示第 ".concat(t," 到第 ").concat(n," 条记录,总共 ").concat(r," 条记录(从 ").concat(o," 总记录中过滤)"):"显示第 ".concat(t," 到第 ").concat(n," 条记录,总共 ").concat(r," 条记录")},formatSRPaginationPreText:function(){return"上一页"},formatSRPaginationPageText:function(t){return"第".concat(t,"页")},formatSRPaginationNextText:function(){return"下一页"},formatDetailPagination:function(t){return"总共 ".concat(t," 条记录")},formatClearSearch:function(){return"清空过滤"},formatSearch:function(){return"搜索"},formatNoMatches:function(){return"没有找到匹配的记录"},formatPaginationSwitch:function(){return"隐藏/显示分页"},formatPaginationSwitchDown:function(){return"显示分页"},formatPaginationSwitchUp:function(){return"隐藏分页"},formatRefresh:function(){return"刷新"},formatToggleOn:function(){return"显示卡片视图"},formatToggleOff:function(){return"隐藏卡片视图"},formatColumns:function(){return"列"},formatColumnsToggleAll:function(){return"切换所有"},formatFullscreen:function(){return"全屏"},formatAllRows:function(){return"所有"},formatAutoRefresh:function(){return"自动刷新"},formatExport:function(){return"导出数据"},formatJumpTo:function(){return"跳转"},formatAdvancedSearch:function(){return"高级搜索"},formatAdvancedCloseButton:function(){return"关闭"},formatFilterControlSwitch:function(){return"隐藏/显示过滤控制"},formatFilterControlSwitchHide:function(){return"隐藏过滤控制"},formatFilterControlSwitchShow:function(){return"显示过滤控制"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["zh-CN"]),t.fn.bootstrapTable.locales["vi-VN"]=t.fn.bootstrapTable.locales.vi={formatCopyRows:function(){return"Sao chép hàng"},formatPrint:function(){return"In"},formatLoadingMessage:function(){return"Đang tải"},formatRecordsPerPage:function(t){return"".concat(t," bản ghi mỗi trang")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Hiển thị từ trang ".concat(t," đến ").concat(n," của ").concat(r," bản ghi (được lọc từ tổng ").concat(o," hàng)"):"Hiển thị từ trang ".concat(t," đến ").concat(n," của ").concat(r," bản ghi")},formatSRPaginationPreText:function(){return"trang trước"},formatSRPaginationPageText:function(t){return"đến trang ".concat(t)},formatSRPaginationNextText:function(){return"trang sau"},formatDetailPagination:function(t){return"Đang hiện ".concat(t," hàng")},formatClearSearch:function(){return"Xoá tìm kiếm"},formatSearch:function(){return"Tìm kiếm"},formatNoMatches:function(){return"Không có dữ liệu"},formatPaginationSwitch:function(){return"Ẩn/Hiện phân trang"},formatPaginationSwitchDown:function(){return"Hiện phân trang"},formatPaginationSwitchUp:function(){return"Ẩn phân trang"},formatRefresh:function(){return"Làm mới"},formatToggleOn:function(){return"Hiển thị các thẻ"},formatToggleOff:function(){return"Ẩn các thẻ"},formatColumns:function(){return"Cột"},formatColumnsToggleAll:function(){return"Hiện tất cả"},formatFullscreen:function(){return"Toàn màn hình"},formatAllRows:function(){return"Tất cả"},formatAutoRefresh:function(){return"Tự động làm mới"},formatExport:function(){return"Xuất dữ liệu"},formatJumpTo:function(){return"Đến"},formatAdvancedSearch:function(){return"Tìm kiếm nâng cao"},formatAdvancedCloseButton:function(){return"Đóng"},formatFilterControlSwitch:function(){return"Ẩn/Hiện điều khiển"},formatFilterControlSwitchHide:function(){return"Ẩn điều khiển"},formatFilterControlSwitchShow:function(){return"Hiện điều khiển"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["vi-VN"]),t.fn.bootstrapTable.locales["pt-PT"]=t.fn.bootstrapTable.locales.pt={formatCopyRows:function(){return"Copiar Linhas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"A carregar, por favor aguarde"},formatRecordsPerPage:function(t){return"".concat(t," registos por página")},formatShowingRows:function(t,n,r,o){var e=r>1?"s":"";return void 0!==o&&o>0&&o>r?"A mostrar ".concat(t," até ").concat(n," de ").concat(r," linha").concat(e," (filtrado de um total de ").concat(o," linha").concat(e,")"):"A mostrar ".concat(t," até ").concat(n," de ").concat(r," linha").concat(e)},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"ir para página ".concat(t)},formatSRPaginationNextText:function(){return"próxima página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," linha").concat(t>1?"s":"")},formatClearSearch:function(){return"Limpar Pesquisa"},formatSearch:function(){return"Pesquisa"},formatNoMatches:function(){return"Nenhum registo encontrado"},formatPaginationSwitch:function(){return"Esconder/Mostrar paginação"},formatPaginationSwitchDown:function(){return"Mostrar página"},formatPaginationSwitchUp:function(){return"Esconder página"},formatRefresh:function(){return"Actualizar"},formatToggleOn:function(){return"Mostrar vista em forma de cartão"},formatToggleOff:function(){return"Esconder vista em forma de cartão"},formatColumns:function(){return"Colunas"},formatColumnsToggleAll:function(){return"Activar tudo"},formatFullscreen:function(){return"Ecrã completo"},formatAllRows:function(){return"Tudo"},formatAutoRefresh:function(){return"Actualização autmática"},formatExport:function(){return"Exportar dados"},formatJumpTo:function(){return"Avançar"},formatAdvancedSearch:function(){return"Pesquisa avançada"},formatAdvancedCloseButton:function(){return"Fechar"},formatFilterControlSwitch:function(){return"Ocultar/Exibir controles"},formatFilterControlSwitchHide:function(){return"Esconder controlos"},formatFilterControlSwitchShow:function(){return"Exibir controlos"},formatAddLevel:function(){return"Adicionar nível"},formatCancel:function(){return"Cancelar"},formatColumn:function(){return"Coluna"},formatDeleteLevel:function(){return"Remover nível"},formatDuplicateAlertTitle:function(){return"Foram encontradas entradas duplicadas!"},formatDuplicateAlertDescription:function(){return"Por favor, remova ou altere as colunas duplicadas"},formatMultipleSort:function(){return"Ordenação múltipla"},formatOrder:function(){return"Ordem"},formatSort:function(){return"Ordenar"},formatSortBy:function(){return"Ordenar por"},formatThenBy:function(){return"em seguida"},formatSortOrders:function(){return{asc:"Ascendente",desc:"Descendente"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["pt-PT"]),t.fn.bootstrapTable.locales["zh-TW"]={formatCopyRows:function(){return"複製行"},formatPrint:function(){return"列印"},formatLoadingMessage:function(){return"正在努力地載入資料,請稍候"},formatRecordsPerPage:function(t){return"每頁顯示 ".concat(t," 項記錄")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"顯示第 ".concat(t," 到第 ").concat(n," 項記錄,總共 ").concat(r," 項記錄(從 ").concat(o," 總記錄中過濾)"):"顯示第 ".concat(t," 到第 ").concat(n," 項記錄,總共 ").concat(r," 項記錄")},formatSRPaginationPreText:function(){return"上一頁"},formatSRPaginationPageText:function(t){return"第".concat(t,"頁")},formatSRPaginationNextText:function(){return"下一頁"},formatDetailPagination:function(t){return"總共 ".concat(t," 項記錄")},formatClearSearch:function(){return"清空過濾"},formatSearch:function(){return"搜尋"},formatNoMatches:function(){return"沒有找到符合的結果"},formatPaginationSwitch:function(){return"隱藏/顯示分頁"},formatPaginationSwitchDown:function(){return"顯示分頁"},formatPaginationSwitchUp:function(){return"隱藏分頁"},formatRefresh:function(){return"重新整理"},formatToggleOn:function(){return"顯示卡片視圖"},formatToggleOff:function(){return"隱藏卡片視圖"},formatColumns:function(){return"列"},formatColumnsToggleAll:function(){return"切換所有"},formatFullscreen:function(){return"全屏"},formatAllRows:function(){return"所有"},formatAutoRefresh:function(){return"自動刷新"},formatExport:function(){return"導出數據"},formatJumpTo:function(){return"跳轉"},formatAdvancedSearch:function(){return"高級搜尋"},formatAdvancedCloseButton:function(){return"關閉"},formatFilterControlSwitch:function(){return"隱藏/顯示過濾控制"},formatFilterControlSwitchHide:function(){return"隱藏過濾控制"},formatFilterControlSwitchShow:function(){return"顯示過濾控制"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["zh-TW"])}));
+!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],n):n((t="undefined"!=typeof globalThis?globalThis:t||self).jQuery)}(this,(function(t){"use strict";var n="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},r=function(t){return t&&t.Math===Math&&t},o=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n&&n)||r("object"==typeof n&&n)||function(){return this}()||Function("return this")(),e={},a=function(t){try{return!!t()}catch(t){return!0}},i=!a((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})),u=!a((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),c=u,f=Function.prototype.call,l=c?f.bind(f):function(){return f.apply(f,arguments)},s={},m={}.propertyIsEnumerable,g=Object.getOwnPropertyDescriptor,d=g&&!m.call({1:2},1);s.f=d?function(t){var n=g(this,t);return!!n&&n.enumerable}:m;var h,p,S=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}},w=u,P=Function.prototype,T=P.call,b=w&&P.bind.bind(T,T),C=w?b:function(t){return function(){return T.apply(t,arguments)}},v=C,R=v({}.toString),A=v("".slice),x=function(t){return A(R(t),8,-1)},y=a,O=x,k=Object,F=C("".split),M=y((function(){return!k("z").propertyIsEnumerable(0)}))?function(t){return"String"===O(t)?F(t,""):k(t)}:k,j=function(t){return null==t},D=j,N=TypeError,E=function(t){if(D(t))throw new N("Can't call method on "+t);return t},H=M,z=E,L=function(t){return H(z(t))},B="object"==typeof document&&document.all,U=void 0===B&&void 0!==B?function(t){return"function"==typeof t||t===B}:function(t){return"function"==typeof t},V=U,G=function(t){return"object"==typeof t?null!==t:V(t)},Z=o,J=U,I=function(t,n){return arguments.length<2?(r=Z[t],J(r)?r:void 0):Z[t]&&Z[t][n];var r},q=C({}.isPrototypeOf),K=o.navigator,W=K&&K.userAgent,Y=o,_=W?String(W):"",X=Y.process,Q=Y.Deno,$=X&&X.versions||Q&&Q.version,tt=$&&$.v8;tt&&(p=(h=tt.split("."))[0]>0&&h[0]<4?1:+(h[0]+h[1])),!p&&_&&(!(h=_.match(/Edge\/(\d+)/))||h[1]>=74)&&(h=_.match(/Chrome\/(\d+)/))&&(p=+h[1]);var nt=p,rt=nt,ot=a,et=o.String,at=!!Object.getOwnPropertySymbols&&!ot((function(){var t=Symbol("symbol detection");return!et(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&rt&&rt<41})),it=at&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,ut=I,ct=U,ft=q,lt=Object,st=it?function(t){return"symbol"==typeof t}:function(t){var n=ut("Symbol");return ct(n)&&ft(n.prototype,lt(t))},mt=String,gt=U,dt=function(t){try{return mt(t)}catch(t){return"Object"}},ht=TypeError,pt=function(t){if(gt(t))return t;throw new ht(dt(t)+" is not a function")},St=j,wt=l,Pt=U,Tt=G,bt=TypeError,Ct={exports:{}},vt=o,Rt=Object.defineProperty,At=function(t,n){try{Rt(vt,t,{value:n,configurable:!0,writable:!0})}catch(r){vt[t]=n}return n},xt=o,yt=At,Ot="__core-js_shared__",kt=Ct.exports=xt[Ot]||yt(Ot,{});(kt.versions||(kt.versions=[])).push({version:"3.38.1",mode:"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE",source:"https://github.com/zloirock/core-js"});var Ft=Ct.exports,Mt=Ft,jt=function(t,n){return Mt[t]||(Mt[t]=n||{})},Dt=E,Nt=Object,Et=function(t){return Nt(Dt(t))},Ht=Et,zt=C({}.hasOwnProperty),Lt=Object.hasOwn||function(t,n){return zt(Ht(t),n)},Bt=C,Ut=0,Vt=Math.random(),Gt=Bt(1..toString),Zt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Gt(++Ut+Vt,36)},Jt=jt,It=Lt,qt=Zt,Kt=at,Wt=it,Yt=o.Symbol,_t=Jt("wks"),Xt=Wt?Yt.for||Yt:Yt&&Yt.withoutSetter||qt,Qt=function(t){return It(_t,t)||(_t[t]=Kt&&It(Yt,t)?Yt[t]:Xt("Symbol."+t)),_t[t]},$t=l,tn=G,nn=st,rn=function(t,n){var r=t[n];return St(r)?void 0:pt(r)},on=function(t,n){var r,o;if("string"===n&&Pt(r=t.toString)&&!Tt(o=wt(r,t)))return o;if(Pt(r=t.valueOf)&&!Tt(o=wt(r,t)))return o;if("string"!==n&&Pt(r=t.toString)&&!Tt(o=wt(r,t)))return o;throw new bt("Can't convert object to primitive value")},en=TypeError,an=Qt("toPrimitive"),un=function(t,n){if(!tn(t)||nn(t))return t;var r,o=rn(t,an);if(o){if(void 0===n&&(n="default"),r=$t(o,t,n),!tn(r)||nn(r))return r;throw new en("Can't convert object to primitive value")}return void 0===n&&(n="number"),on(t,n)},cn=st,fn=function(t){var n=un(t,"string");return cn(n)?n:n+""},ln=G,sn=o.document,mn=ln(sn)&&ln(sn.createElement),gn=function(t){return mn?sn.createElement(t):{}},dn=!i&&!a((function(){return 7!==Object.defineProperty(gn("div"),"a",{get:function(){return 7}}).a})),hn=i,pn=l,Sn=s,wn=S,Pn=L,Tn=fn,bn=Lt,Cn=dn,vn=Object.getOwnPropertyDescriptor;e.f=hn?vn:function(t,n){if(t=Pn(t),n=Tn(n),Cn)try{return vn(t,n)}catch(t){}if(bn(t,n))return wn(!pn(Sn.f,t,n),t[n])};var Rn={},An=i&&a((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),xn=G,yn=String,On=TypeError,kn=function(t){if(xn(t))return t;throw new On(yn(t)+" is not an object")},Fn=i,Mn=dn,jn=An,Dn=kn,Nn=fn,En=TypeError,Hn=Object.defineProperty,zn=Object.getOwnPropertyDescriptor,Ln="enumerable",Bn="configurable",Un="writable";Rn.f=Fn?jn?function(t,n,r){if(Dn(t),n=Nn(n),Dn(r),"function"==typeof t&&"prototype"===n&&"value"in r&&Un in r&&!r[Un]){var o=zn(t,n);o&&o[Un]&&(t[n]=r.value,r={configurable:Bn in r?r[Bn]:o[Bn],enumerable:Ln in r?r[Ln]:o[Ln],writable:!1})}return Hn(t,n,r)}:Hn:function(t,n,r){if(Dn(t),n=Nn(n),Dn(r),Mn)try{return Hn(t,n,r)}catch(t){}if("get"in r||"set"in r)throw new En("Accessors not supported");return"value"in r&&(t[n]=r.value),t};var Vn=Rn,Gn=S,Zn=i?function(t,n,r){return Vn.f(t,n,Gn(1,r))}:function(t,n,r){return t[n]=r,t},Jn={exports:{}},In=i,qn=Lt,Kn=Function.prototype,Wn=In&&Object.getOwnPropertyDescriptor,Yn=qn(Kn,"name"),_n={EXISTS:Yn,PROPER:Yn&&"something"===function(){}.name,CONFIGURABLE:Yn&&(!In||In&&Wn(Kn,"name").configurable)},Xn=U,Qn=Ft,$n=C(Function.toString);Xn(Qn.inspectSource)||(Qn.inspectSource=function(t){return $n(t)});var tr,nr,rr,or=Qn.inspectSource,er=U,ar=o.WeakMap,ir=er(ar)&&/native code/.test(String(ar)),ur=Zt,cr=jt("keys"),fr={},lr=ir,sr=o,mr=G,gr=Zn,dr=Lt,hr=Ft,pr=function(t){return cr[t]||(cr[t]=ur(t))},Sr=fr,wr="Object already initialized",Pr=sr.TypeError,Tr=sr.WeakMap;if(lr||hr.state){var br=hr.state||(hr.state=new Tr);br.get=br.get,br.has=br.has,br.set=br.set,tr=function(t,n){if(br.has(t))throw new Pr(wr);return n.facade=t,br.set(t,n),n},nr=function(t){return br.get(t)||{}},rr=function(t){return br.has(t)}}else{var Cr=pr("state");Sr[Cr]=!0,tr=function(t,n){if(dr(t,Cr))throw new Pr(wr);return n.facade=t,gr(t,Cr,n),n},nr=function(t){return dr(t,Cr)?t[Cr]:{}},rr=function(t){return dr(t,Cr)}}var vr={set:tr,get:nr,has:rr,enforce:function(t){return rr(t)?nr(t):tr(t,{})},getterFor:function(t){return function(n){var r;if(!mr(n)||(r=nr(n)).type!==t)throw new Pr("Incompatible receiver, "+t+" required");return r}}},Rr=C,Ar=a,xr=U,yr=Lt,Or=i,kr=_n.CONFIGURABLE,Fr=or,Mr=vr.enforce,jr=vr.get,Dr=String,Nr=Object.defineProperty,Er=Rr("".slice),Hr=Rr("".replace),zr=Rr([].join),Lr=Or&&!Ar((function(){return 8!==Nr((function(){}),"length",{value:8}).length})),Br=String(String).split("String"),Ur=Jn.exports=function(t,n,r){"Symbol("===Er(Dr(n),0,7)&&(n="["+Hr(Dr(n),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(n="get "+n),r&&r.setter&&(n="set "+n),(!yr(t,"name")||kr&&t.name!==n)&&(Or?Nr(t,"name",{value:n,configurable:!0}):t.name=n),Lr&&r&&yr(r,"arity")&&t.length!==r.arity&&Nr(t,"length",{value:r.arity});try{r&&yr(r,"constructor")&&r.constructor?Or&&Nr(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var o=Mr(t);return yr(o,"source")||(o.source=zr(Br,"string"==typeof n?n:"")),t};Function.prototype.toString=Ur((function(){return xr(this)&&jr(this).source||Fr(this)}),"toString");var Vr=Jn.exports,Gr=U,Zr=Rn,Jr=Vr,Ir=At,qr={},Kr=Math.ceil,Wr=Math.floor,Yr=Math.trunc||function(t){var n=+t;return(n>0?Wr:Kr)(n)},_r=function(t){var n=+t;return n!=n||0===n?0:Yr(n)},Xr=_r,Qr=Math.max,$r=Math.min,to=_r,no=Math.min,ro=function(t){var n=to(t);return n>0?no(n,9007199254740991):0},oo=function(t){return ro(t.length)},eo=L,ao=function(t,n){var r=Xr(t);return r<0?Qr(r+n,0):$r(r,n)},io=oo,uo=function(t){return function(n,r,o){var e=eo(n),a=io(e);if(0===a)return!t&&-1;var i,u=ao(o,a);if(t&&r!=r){for(;a>u;)if((i=e[u++])!=i)return!0}else for(;a>u;u++)if((t||u in e)&&e[u]===r)return t||u||0;return!t&&-1}},co={includes:uo(!0),indexOf:uo(!1)},fo=Lt,lo=L,so=co.indexOf,mo=fr,go=C([].push),ho=function(t,n){var r,o=lo(t),e=0,a=[];for(r in o)!fo(mo,r)&&fo(o,r)&&go(a,r);for(;n.length>e;)fo(o,r=n[e++])&&(~so(a,r)||go(a,r));return a},po=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],So=ho,wo=po.concat("length","prototype");qr.f=Object.getOwnPropertyNames||function(t){return So(t,wo)};var Po={};Po.f=Object.getOwnPropertySymbols;var To=I,bo=qr,Co=Po,vo=kn,Ro=C([].concat),Ao=To("Reflect","ownKeys")||function(t){var n=bo.f(vo(t)),r=Co.f;return r?Ro(n,r(t)):n},xo=Lt,yo=Ao,Oo=e,ko=Rn,Fo=a,Mo=U,jo=/#|\.prototype\./,Do=function(t,n){var r=Eo[No(t)];return r===zo||r!==Ho&&(Mo(n)?Fo(n):!!n)},No=Do.normalize=function(t){return String(t).replace(jo,".").toLowerCase()},Eo=Do.data={},Ho=Do.NATIVE="N",zo=Do.POLYFILL="P",Lo=Do,Bo=o,Uo=e.f,Vo=Zn,Go=function(t,n,r,o){o||(o={});var e=o.enumerable,a=void 0!==o.name?o.name:n;if(Gr(r)&&Jr(r,a,o),o.global)e?t[n]=r:Ir(n,r);else{try{o.unsafe?t[n]&&(e=!0):delete t[n]}catch(t){}e?t[n]=r:Zr.f(t,n,{value:r,enumerable:!1,configurable:!o.nonConfigurable,writable:!o.nonWritable})}return t},Zo=At,Jo=function(t,n,r){for(var o=yo(n),e=ko.f,a=Oo.f,i=0;i9007199254740991)throw Yo("Maximum allowed index exceeded");return t},Ee=function(t,n,r){_o?Xo.f(t,n,Qo(0,r)):t[n]=r},He=function(t,n){return new(Re(t))(0===n?0:n)},ze=function(t){return xe>=51||!Ae((function(){var n=[];return(n.constructor={})[ye]=function(){return{foo:1}},1!==n[t](Boolean).foo}))},Le=nt,Be=Qt("isConcatSpreadable"),Ue=Le>=51||!ke((function(){var t=[];return t[Be]=!1,t.concat()[0]!==t})),Ve=function(t){if(!Me(t))return!1;var n=t[Be];return void 0!==n?!!n:Fe(t)};Oe({target:"Array",proto:!0,arity:1,forced:!Ue||!ze("concat")},{concat:function(t){var n,r,o,e,a,i=je(this),u=He(i,0),c=0;for(n=-1,o=arguments.length;ne;)for(var u,c=$e(arguments[e++]),f=a?ra(Ye(c),a(c)):Ye(c),l=f.length,s=0;l>s;)u=f[s++],Ie&&!Ke(i,c,u)||(r[u]=c[u]);return r}:ta,ea=oa;qo({target:"Object",stat:!0,arity:2,forced:Object.assign!==ea},{assign:ea}),t.fn.bootstrapTable.locales["af-ZA"]=t.fn.bootstrapTable.locales.af={formatCopyRows:function(){return"Kopieer lyne"},formatPrint:function(){return"Druk uit"},formatLoadingMessage:function(){return"Laai tans"},formatRecordsPerPage:function(t){return"".concat(t," reëls per bladsy")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Wys ".concat(t," tot ").concat(n," van ").concat(r," lyne (gefiltreer vanaf ").concat(o," lyne)"):"Wys ".concat(t," tot ").concat(n," van ").concat(r," lyne")},formatSRPaginationPreText:function(){return"vorige bladsy"},formatSRPaginationPageText:function(t){return"na bladsy ".concat(t)},formatSRPaginationNextText:function(){return"volgende bladsy"},formatDetailPagination:function(t){return"".concat(t,"-reël vertoon")},formatClearSearch:function(){return"Duidelike soektog"},formatSearch:function(){return"Navorsing"},formatNoMatches:function(){return"Geen resultate nie"},formatPaginationSwitch:function(){return"Versteek/Wys paginasie"},formatPaginationSwitchDown:function(){return"Wys paginasie"},formatPaginationSwitchUp:function(){return"Versteek paginasie"},formatRefresh:function(){return"Verfris"},formatToggleOn:function(){return"Wys kaartaansig"},formatToggleOff:function(){return"Versteek kaartaansig"},formatColumns:function(){return"Kolomme"},formatColumnsToggleAll:function(){return"Wys alles"},formatFullscreen:function(){return"Volskerm"},formatAllRows:function(){return"Alles"},formatAutoRefresh:function(){return"Verfris outomaties"},formatExport:function(){return"Voer data uit"},formatJumpTo:function(){return"Gaan na"},formatAdvancedSearch:function(){return"Gevorderde soektog"},formatAdvancedCloseButton:function(){return"Maak"},formatFilterControlSwitch:function(){return"Versteek/Wys kontroles"},formatFilterControlSwitchHide:function(){return"Versteek kontroles"},formatFilterControlSwitchShow:function(){return"Wys kontroles"},formatToggleCustomViewOn:function(){return"Wys pasgemaakte aansig"},formatToggleCustomViewOff:function(){return"Versteek pasgemaakte aansig"},formatClearFilters:function(){return"Verwyder filters"},formatAddLevel:function(){return"Voeg 'n vlak by"},formatCancel:function(){return"Kanselleer"},formatColumn:function(){return"Kolom"},formatDeleteLevel:function(){return"Vee 'n vlak uit"},formatDuplicateAlertTitle:function(){return"Duplikaatinskrywings is gevind!"},formatDuplicateAlertDescription:function(){return"Verwyder of wysig asseblief duplikaatinskrywings"},formatMultipleSort:function(){return"Multi-sorteer"},formatOrder:function(){return"Bestelling"},formatSort:function(){return"Rangskik"},formatSortBy:function(){return"Sorteer volgens"},formatSortOrders:function(){return{asc:"Stygende",desc:"Dalende"}},formatThenBy:function(){return"Dan deur"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["af-ZA"]),t.fn.bootstrapTable.locales["ar-SA"]=t.fn.bootstrapTable.locales.ar={formatCopyRows:function(){return"نسخ الصفوف"},formatPrint:function(){return"طباعة"},formatLoadingMessage:function(){return"جارٍ التحميل، يرجى الانتظار..."},formatRecordsPerPage:function(t){return"".concat(t," صف لكل صفحة")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"الظاهر ".concat(t," إلى ").concat(n," من ").concat(r," سجل ").concat(o," إجمالي الصفوف)"):"الظاهر ".concat(t," إلى ").concat(n," من ").concat(r," سجل")},formatSRPaginationPreText:function(){return"الصفحة السابقة"},formatSRPaginationPageText:function(t){return"إلى الصفحة ".concat(t)},formatSRPaginationNextText:function(){return"الصفحة التالية"},formatDetailPagination:function(t){return"عرض ".concat(t," أعمدة")},formatClearSearch:function(){return"مسح مربع البحث"},formatSearch:function(){return"بحث"},formatNoMatches:function(){return"لا توجد نتائج مطابقة للبحث"},formatPaginationSwitch:function(){return"إخفاء/إظهار ترقيم الصفحات"},formatPaginationSwitchDown:function(){return"إظهار ترقيم الصفحات"},formatPaginationSwitchUp:function(){return"إخفاء ترقيم الصفحات"},formatRefresh:function(){return"تحديث"},formatToggleOn:function(){return"إظهار كبطاقات"},formatToggleOff:function(){return"إلغاء البطاقات"},formatColumns:function(){return"أعمدة"},formatColumnsToggleAll:function(){return"تبديل الكل"},formatFullscreen:function(){return"الشاشة كاملة"},formatAllRows:function(){return"الكل"},formatAutoRefresh:function(){return"تحديث تلقائي"},formatExport:function(){return"تصدير البيانات"},formatJumpTo:function(){return"قفز"},formatAdvancedSearch:function(){return"بحث متقدم"},formatAdvancedCloseButton:function(){return"إغلاق"},formatFilterControlSwitch:function(){return"عرض/إخفاء عناصر التصفية"},formatFilterControlSwitchHide:function(){return"إخفاء عناصر التصفية"},formatFilterControlSwitchShow:function(){return"عرض عناصر التصفية"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ar-SA"]),t.fn.bootstrapTable.locales["ca-ES"]=t.fn.bootstrapTable.locales.ca={formatCopyRows:function(){return"Copia resultats"},formatPrint:function(){return"Imprimeix"},formatLoadingMessage:function(){return"Espereu, si us plau"},formatRecordsPerPage:function(t){return"".concat(t," resultats per pàgina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrant resultats ".concat(t," fins ").concat(n," - ").concat(r," resultats (filtrats d'un total de ").concat(o," resultats)"):"Mostrant resultats ".concat(t," fins ").concat(n," - ").concat(r," resultats en total")},formatSRPaginationPreText:function(){return"Pàgina anterior"},formatSRPaginationPageText:function(t){return"A la pàgina ".concat(t)},formatSRPaginationNextText:function(){return"Pàgina següent"},formatDetailPagination:function(t){return"Mostrant ".concat(t," resultats")},formatClearSearch:function(){return"Neteja cerca"},formatSearch:function(){return"Cerca"},formatNoMatches:function(){return"No s'han trobat resultats"},formatPaginationSwitch:function(){return"Amaga/Mostra paginació"},formatPaginationSwitchDown:function(){return"Mostra paginació"},formatPaginationSwitchUp:function(){return"Amaga paginació"},formatRefresh:function(){return"Refresca"},formatToggleOn:function(){return"Mostra vista de tarjeta"},formatToggleOff:function(){return"Amaga vista de tarjeta"},formatColumns:function(){return"Columnes"},formatColumnsToggleAll:function(){return"Alterna totes"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Tots"},formatAutoRefresh:function(){return"Auto Refresca"},formatExport:function(){return"Exporta dades"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Cerca avançada"},formatAdvancedCloseButton:function(){return"Tanca"},formatFilterControlSwitch:function(){return"Mostra/Amaga controls"},formatFilterControlSwitchHide:function(){return"Mostra controls"},formatFilterControlSwitchShow:function(){return"Amaga controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ca-ES"]),t.fn.bootstrapTable.locales["bg-BG"]=t.fn.bootstrapTable.locales.bg={formatCopyRows:function(){return"Копиране на редове"},formatPrint:function(){return"Печат"},formatLoadingMessage:function(){return"Зареждане, моля изчакайте"},formatRecordsPerPage:function(t){return"".concat(t," реда на страница")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Показани редове от ".concat(t," до ").concat(n," от ").concat(r," (филтрирани от общо ").concat(o,")"):"Показани редове от ".concat(t," до ").concat(n," от общо ").concat(r)},formatSRPaginationPreText:function(){return"предишна страница"},formatSRPaginationPageText:function(t){return"до страница ".concat(t)},formatSRPaginationNextText:function(){return"следваща страница"},formatDetailPagination:function(t){return"Показани ".concat(t," реда")},formatClearSearch:function(){return"Изчистване на търсенето"},formatSearch:function(){return"Търсене"},formatNoMatches:function(){return"Не са намерени съвпадащи записи"},formatPaginationSwitch:function(){return"Скриване/Показване на странициране"},formatPaginationSwitchDown:function(){return"Показване на странициране"},formatPaginationSwitchUp:function(){return"Скриване на странициране"},formatRefresh:function(){return"Обновяване"},formatToggleOn:function(){return"Показване на изглед карта"},formatToggleOff:function(){return"Скриване на изглед карта"},formatColumns:function(){return"Колони"},formatColumnsToggleAll:function(){return"Превключване на всички"},formatFullscreen:function(){return"Цял екран"},formatAllRows:function(){return"Всички"},formatAutoRefresh:function(){return"Автоматично обновяване"},formatExport:function(){return"Експорт на данни"},formatJumpTo:function(){return"ОТИДИ"},formatAdvancedSearch:function(){return"Разширено търсене"},formatAdvancedCloseButton:function(){return"Затваряне"},formatFilterControlSwitch:function(){return"Скрива/показва контроли"},formatFilterControlSwitchHide:function(){return"Скрива контроли"},formatFilterControlSwitchShow:function(){return"Показва контроли"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["bg-BG"]),t.fn.bootstrapTable.locales["da-DK"]=t.fn.bootstrapTable.locales.da={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Indlæser, vent venligst"},formatRecordsPerPage:function(t){return"".concat(t," poster pr side")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Viser ".concat(t," til ").concat(n," af ").concat(r," række").concat(r>1?"r":""," (filtered from ").concat(o," total rows)"):"Viser ".concat(t," til ").concat(n," af ").concat(r," række").concat(r>1?"r":"")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Viser ".concat(t," række").concat(t>1?"r":"")},formatClearSearch:function(){return"Ryd filtre"},formatSearch:function(){return"Søg"},formatNoMatches:function(){return"Ingen poster fundet"},formatPaginationSwitch:function(){return"Skjul/vis nummerering"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Opdater"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Kolonner"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Alle"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Eksporter"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["da-DK"]),t.fn.bootstrapTable.locales["de-DE"]=t.fn.bootstrapTable.locales.de={formatCopyRows:function(){return"Zeilen kopieren"},formatPrint:function(){return"Drucken"},formatLoadingMessage:function(){return"Lade, bitte warten"},formatRecordsPerPage:function(t){return"".concat(t," Zeilen pro Seite.")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Zeige Zeile ".concat(t," bis ").concat(n," von ").concat(r," Zeile").concat(r>1?"n":""," (Gefiltert von ").concat(o," Zeile").concat(o>1?"n":"",")"):"Zeige Zeile ".concat(t," bis ").concat(n," von ").concat(r," Zeile").concat(r>1?"n":"",".")},formatSRPaginationPreText:function(){return"Vorherige Seite"},formatSRPaginationPageText:function(t){return"Zu Seite ".concat(t)},formatSRPaginationNextText:function(){return"Nächste Seite"},formatDetailPagination:function(t){return"Zeige ".concat(t," Zeile").concat(t>1?"n":"",".")},formatClearSearch:function(){return"Lösche Filter"},formatSearch:function(){return"Suchen"},formatNoMatches:function(){return"Keine passenden Ergebnisse gefunden"},formatPaginationSwitch:function(){return"Verstecke/Zeige Nummerierung"},formatPaginationSwitchDown:function(){return"Zeige Nummerierung"},formatPaginationSwitchUp:function(){return"Verstecke Nummerierung"},formatRefresh:function(){return"Neu laden"},formatToggleOn:function(){return"Normale Ansicht"},formatToggleOff:function(){return"Kartenansicht"},formatColumns:function(){return"Spalten"},formatColumnsToggleAll:function(){return"Alle umschalten"},formatFullscreen:function(){return"Vollbild"},formatAllRows:function(){return"Alle"},formatAutoRefresh:function(){return"Automatisches Neuladen"},formatExport:function(){return"Datenexport"},formatJumpTo:function(){return"Springen"},formatAdvancedSearch:function(){return"Erweiterte Suche"},formatAdvancedCloseButton:function(){return"Schließen"},formatFilterControlSwitch:function(){return"Verstecke/Zeige Filter"},formatFilterControlSwitchHide:function(){return"Verstecke Filter"},formatFilterControlSwitchShow:function(){return"Zeige Filter"},formatAddLevel:function(){return"Ebene hinzufügen"},formatCancel:function(){return"Abbrechen"},formatColumn:function(){return"Spalte"},formatDeleteLevel:function(){return"Ebene entfernen"},formatDuplicateAlertTitle:function(){return"Doppelte Einträge gefunden!"},formatDuplicateAlertDescription:function(){return"Bitte doppelte Spalten entfenen oder ändern"},formatMultipleSort:function(){return"Mehrfachsortierung"},formatOrder:function(){return"Reihenfolge"},formatSort:function(){return"Sortieren"},formatSortBy:function(){return"Sortieren nach"},formatThenBy:function(){return"anschließend"},formatSortOrders:function(){return{asc:"Aufsteigend",desc:"Absteigend"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["de-DE"]),t.fn.bootstrapTable.locales["el-GR"]=t.fn.bootstrapTable.locales.el={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Φορτώνει, παρακαλώ περιμένετε"},formatRecordsPerPage:function(t){return"".concat(t," αποτελέσματα ανά σελίδα")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Εμφανίζονται από την ".concat(t," ως την ").concat(n," από σύνολο ").concat(r," σειρών (filtered from ").concat(o," total rows)"):"Εμφανίζονται από την ".concat(t," ως την ").concat(n," από σύνολο ").concat(r," σειρών")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Αναζητήστε"},formatNoMatches:function(){return"Δεν βρέθηκαν αποτελέσματα"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Refresh"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Columns"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["el-GR"]),t.fn.bootstrapTable.locales["en-US"]=t.fn.bootstrapTable.locales.en={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Loading, please wait"},formatRecordsPerPage:function(t){return"".concat(t," rows per page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Showing ".concat(t," to ").concat(n," of ").concat(r," rows (filtered from ").concat(o," total rows)"):"Showing ".concat(t," to ").concat(n," of ").concat(r," rows")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Search"},formatNoMatches:function(){return"No matching records found"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Refresh"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Columns"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["en-US"]),t.fn.bootstrapTable.locales["es-AR"]={formatCopyRows:function(){return"Copiar Filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, espere por favor"},formatRecordsPerPage:function(t){return"".concat(t," registros por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando desde ".concat(t," a ").concat(n," de ").concat(r," filas (filtrado de ").concat(o," columnas totales)"):"Mostrando desde ".concat(t," a ").concat(n," de ").concat(r," filas")},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"a la página ".concat(t)},formatSRPaginationNextText:function(){return"siguiente página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," columnas")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros"},formatPaginationSwitch:function(){return"Ocultar/Mostrar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Recargar"},formatToggleOn:function(){return"Mostrar vista de carta"},formatToggleOff:function(){return"Ocultar vista de carta"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Cambiar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto Recargar"},formatExport:function(){return"Exportar datos"},formatJumpTo:function(){return"Ir"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-AR"]),t.fn.bootstrapTable.locales["es-CL"]={formatCopyRows:function(){return"Copiar Filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, espere por favor"},formatRecordsPerPage:function(t){return"".concat(t," filas por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas (filtrado de ").concat(o," filas totales)"):"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas")},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"a la página ".concat(t)},formatSRPaginationNextText:function(){return"siguiente página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," filas")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros"},formatPaginationSwitch:function(){return"Ocultar/Mostrar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Refrescar"},formatToggleOn:function(){return"Mostrar vista de carta"},formatToggleOff:function(){return"Ocultar vista de carta"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Cambiar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto Recargar"},formatExport:function(){return"Exportar datos"},formatJumpTo:function(){return"IR"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-CL"]),t.fn.bootstrapTable.locales["es-CR"]={formatCopyRows:function(){return"Copiar filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, por favor espere"},formatRecordsPerPage:function(t){return"".concat(t," filas por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas (filtrado de un total de ").concat(o," filas)"):"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas")},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"ir a la página ".concat(t)},formatSRPaginationNextText:function(){return"página siguiente"},formatDetailPagination:function(t){return"Mostrando ".concat(t," filas")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron resultados"},formatPaginationSwitch:function(){return"Mostrar/ocultar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Actualizar"},formatToggleOn:function(){return"Mostrar vista en tarjetas"},formatToggleOff:function(){return"Ocultar vista en tarjetas"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Alternar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todas las filas"},formatAutoRefresh:function(){return"Actualización automática"},formatExport:function(){return"Exportar"},formatJumpTo:function(){return"Ver"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Mostrar/ocultar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-CR"]),t.fn.bootstrapTable.locales["es-ES"]=t.fn.bootstrapTable.locales.es={formatCopyRows:function(){return"Copiar filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, por favor espere"},formatRecordsPerPage:function(t){return"".concat(t," resultados por página")},formatShowingRows:function(t,n,r,o){var e=r>1?"s":"";return void 0!==o&&o>0&&o>r?"Mostrando desde ".concat(t," hasta ").concat(n," - En total ").concat(r," resultado").concat(e," (filtrado de un total de ").concat(o," fila").concat(e,")"):"Mostrando desde ".concat(t," hasta ").concat(n," - En total ").concat(r," resultado").concat(e)},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"a la página ".concat(t)},formatSRPaginationNextText:function(){return"siguiente página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," fila").concat(t>1?"s":"")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron resultados coincidentes"},formatPaginationSwitch:function(){return"Ocultar/Mostrar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Recargar"},formatToggleOn:function(){return"Mostrar vista de carta"},formatToggleOff:function(){return"Ocultar vista de carta"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Cambiar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todos"},formatAutoRefresh:function(){return"Auto Recargar"},formatExport:function(){return"Exportar los datos"},formatJumpTo:function(){return"IR"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Ocultar/Exibir controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"},formatAddLevel:function(){return"Agregar nivel"},formatCancel:function(){return"Cancelar"},formatColumn:function(){return"Columna"},formatDeleteLevel:function(){return"Eliminar nivel"},formatDuplicateAlertTitle:function(){return"¡Se encontraron entradas duplicadas!"},formatDuplicateAlertDescription:function(){return"Por favor, elimine o modifique las columnas duplicadas"},formatMultipleSort:function(){return"Ordenación múltiple"},formatOrder:function(){return"Orden"},formatSort:function(){return"Ordenar"},formatSortBy:function(){return"Ordenar por"},formatThenBy:function(){return"a continuación"},formatSortOrders:function(){return{asc:"Ascendente",desc:"Descendente"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-ES"]),t.fn.bootstrapTable.locales["es-MX"]={formatCopyRows:function(){return"Copiar Filas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Cargando, espere por favor"},formatRecordsPerPage:function(t){return"".concat(t," resultados por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas (filtrado de ").concat(o," filas totales)"):"Mostrando ".concat(t," a ").concat(n," de ").concat(r," filas")},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"ir a la página ".concat(t)},formatSRPaginationNextText:function(){return"página siguiente"},formatDetailPagination:function(t){return"Mostrando ".concat(t," filas")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros que coincidan"},formatPaginationSwitch:function(){return"Mostrar/ocultar paginación"},formatPaginationSwitchDown:function(){return"Mostrar paginación"},formatPaginationSwitchUp:function(){return"Ocultar paginación"},formatRefresh:function(){return"Actualizar"},formatToggleOn:function(){return"Mostrar vista"},formatToggleOff:function(){return"Ocultar vista"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Alternar todo"},formatFullscreen:function(){return"Pantalla completa"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto actualizar"},formatExport:function(){return"Exportar datos"},formatJumpTo:function(){return"IR"},formatAdvancedSearch:function(){return"Búsqueda avanzada"},formatAdvancedCloseButton:function(){return"Cerrar"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-MX"]),t.fn.bootstrapTable.locales["es-NI"]={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Cargando, por favor espere"},formatRecordsPerPage:function(t){return"".concat(t," registros por página")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Mostrando de ".concat(t," a ").concat(n," registros de ").concat(r," registros en total (filtered from ").concat(o," total rows)"):"Mostrando de ".concat(t," a ").concat(n," registros de ").concat(r," registros en total")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Refrescar"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-NI"]),t.fn.bootstrapTable.locales["es-SP"]={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Cargando, por favor espera"},formatRecordsPerPage:function(t){return"".concat(t," registros por página.")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"".concat(t," - ").concat(n," de ").concat(r," registros (filtered from ").concat(o," total rows)"):"".concat(t," - ").concat(n," de ").concat(r," registros.")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Limpiar búsqueda"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se han encontrado registros."},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Actualizar"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Columnas"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Todo"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Ocultar/Mostrar controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Mostrar controles"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["es-SP"]),t.fn.bootstrapTable.locales["cs-CZ"]=t.fn.bootstrapTable.locales.cs={formatCopyRows:function(){return"Kopírovat řádky"},formatPrint:function(){return"Tisk"},formatLoadingMessage:function(){return"Čekejte, prosím"},formatRecordsPerPage:function(t){return"".concat(t," položek na stránku")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Zobrazena ".concat(t,". - ").concat(n," . položka z celkových ").concat(r," (filtered from ").concat(o," total rows)"):"Zobrazena ".concat(t,". - ").concat(n," . položka z celkových ").concat(r)},formatSRPaginationPreText:function(){return"předchozí strana"},formatSRPaginationPageText:function(t){return"na stranu ".concat(t)},formatSRPaginationNextText:function(){return"další strana"},formatDetailPagination:function(t){return"Zobrazuji ".concat(t," řádek")},formatClearSearch:function(){return"Smazat hledání"},formatSearch:function(){return"Vyhledávání"},formatNoMatches:function(){return"Nenalezena žádná vyhovující položka"},formatPaginationSwitch:function(){return"Skrýt/Zobrazit stránkování"},formatPaginationSwitchDown:function(){return"Zobrazit stránkování"},formatPaginationSwitchUp:function(){return"Skrýt stránkování"},formatRefresh:function(){return"Aktualizovat"},formatToggleOn:function(){return"Zobrazit karty"},formatToggleOff:function(){return"Zobrazit tabulku"},formatColumns:function(){return"Sloupce"},formatColumnsToggleAll:function(){return"Zobrazit/Skrýt vše"},formatFullscreen:function(){return"Zapnout/Vypnout fullscreen"},formatAllRows:function(){return"Vše"},formatAutoRefresh:function(){return"Automatické obnovení"},formatExport:function(){return"Export dat"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Pokročilé hledání"},formatAdvancedCloseButton:function(){return"Zavřít"},formatFilterControlSwitch:function(){return"Skrýt/Zobrazit ovladače"},formatFilterControlSwitchHide:function(){return"Skrýt ovladače"},formatFilterControlSwitchShow:function(){return"Zobrazit ovladače"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["cs-CZ"]),t.fn.bootstrapTable.locales["et-EE"]=t.fn.bootstrapTable.locales.et={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Päring käib, palun oota"},formatRecordsPerPage:function(t){return"".concat(t," rida lehe kohta")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Näitan tulemusi ".concat(t," kuni ").concat(n," - kokku ").concat(r," tulemust (filtered from ").concat(o," total rows)"):"Näitan tulemusi ".concat(t," kuni ").concat(n," - kokku ").concat(r," tulemust")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Otsi"},formatNoMatches:function(){return"Päringu tingimustele ei vastanud ühtegi tulemust"},formatPaginationSwitch:function(){return"Näita/Peida lehtedeks jagamine"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Värskenda"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Veerud"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Kõik"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["et-EE"]),t.fn.bootstrapTable.locales["eu-EU"]=t.fn.bootstrapTable.locales.eu={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Itxaron mesedez"},formatRecordsPerPage:function(t){return"".concat(t," emaitza orriko.")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"".concat(r," erregistroetatik ").concat(t,"etik ").concat(n,"erakoak erakusten (filtered from ").concat(o," total rows)"):"".concat(r," erregistroetatik ").concat(t,"etik ").concat(n,"erakoak erakusten.")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Bilatu"},formatNoMatches:function(){return"Ez da emaitzarik aurkitu"},formatPaginationSwitch:function(){return"Ezkutatu/Erakutsi orrikatzea"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Eguneratu"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Zutabeak"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Guztiak"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["eu-EU"]),t.fn.bootstrapTable.locales["fa-IR"]=t.fn.bootstrapTable.locales.fa={formatCopyRows:function(){return"کپی ردیف ها"},formatPrint:function(){return"پرینت"},formatLoadingMessage:function(){return"در حال بارگذاری, لطفا صبر کنید"},formatRecordsPerPage:function(t){return"".concat(t," رکورد در صفحه")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"نمایش ".concat(t," تا ").concat(n," از ").concat(r," ردیف (filtered from ").concat(o," total rows)"):"نمایش ".concat(t," تا ").concat(n," از ").concat(r," ردیف")},formatSRPaginationPreText:function(){return"صفحه قبلی"},formatSRPaginationPageText:function(t){return"به صفحه ".concat(t)},formatSRPaginationNextText:function(){return"صفحه بعدی"},formatDetailPagination:function(t){return"نمایش ".concat(t," سطرها")},formatClearSearch:function(){return"پاک کردن جستجو"},formatSearch:function(){return"جستجو"},formatNoMatches:function(){return"رکوردی یافت نشد."},formatPaginationSwitch:function(){return"نمایش/مخفی صفحه بندی"},formatPaginationSwitchDown:function(){return"نمایش صفحه بندی"},formatPaginationSwitchUp:function(){return"پنهان کردن صفحه بندی"},formatRefresh:function(){return"به روز رسانی"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"سطر ها"},formatColumnsToggleAll:function(){return"تغییر وضعیت همه"},formatFullscreen:function(){return"تمام صفحه"},formatAllRows:function(){return"همه"},formatAutoRefresh:function(){return"رفرش اتوماتیک"},formatExport:function(){return"خروجی دیتا"},formatJumpTo:function(){return"برو"},formatAdvancedSearch:function(){return"جستجوی پیشرفته"},formatAdvancedCloseButton:function(){return"بستن"},formatFilterControlSwitch:function(){return"پنهان/نمایش دادن کنترل ها"},formatFilterControlSwitchHide:function(){return"پنهان کردن کنترل ها"},formatFilterControlSwitchShow:function(){return"نمایش کنترل ها"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fa-IR"]),t.fn.bootstrapTable.locales["fi-FI"]=t.fn.bootstrapTable.locales.fi={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Ladataan, ole hyvä ja odota"},formatRecordsPerPage:function(t){return"".concat(t," riviä sivulla")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Näytetään rivit ".concat(t," - ").concat(n," / ").concat(r," (filtered from ").concat(o," total rows)"):"Näytetään rivit ".concat(t," - ").concat(n," / ").concat(r)},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Poista suodattimet"},formatSearch:function(){return"Hae"},formatNoMatches:function(){return"Hakuehtoja vastaavia tuloksia ei löytynyt"},formatPaginationSwitch:function(){return"Näytä/Piilota sivutus"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Päivitä"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Sarakkeet"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Kaikki"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Vie tiedot"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fi-FI"]),t.fn.bootstrapTable.locales["fr-BE"]={formatCopyRows:function(){return"Copier les lignes"},formatPrint:function(){return"Imprimer"},formatLoadingMessage:function(){return"Chargement en cours"},formatRecordsPerPage:function(t){return"".concat(t," lignes par page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes (filtrées à partir de ").concat(o," lignes)"):"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes")},formatSRPaginationPreText:function(){return"page précédente"},formatSRPaginationPageText:function(t){return"vers la page ".concat(t)},formatSRPaginationNextText:function(){return"page suivante"},formatDetailPagination:function(t){return"Affichage de ".concat(t," lignes")},formatClearSearch:function(){return"Effacer la recherche"},formatSearch:function(){return"Rechercher"},formatNoMatches:function(){return"Aucun résultat"},formatPaginationSwitch:function(){return"Masquer/Afficher la pagination"},formatPaginationSwitchDown:function(){return"Afficher la pagination"},formatPaginationSwitchUp:function(){return"Masquer la pagination"},formatRefresh:function(){return"Actualiser"},formatToggleOn:function(){return"Afficher la vue en cartes"},formatToggleOff:function(){return"Cacher la vue en cartes"},formatColumns:function(){return"Colonnes"},formatColumnsToggleAll:function(){return"Tout afficher"},formatFullscreen:function(){return"Plein écran"},formatAllRows:function(){return"Tout"},formatAutoRefresh:function(){return"Actualiser automatiquement"},formatExport:function(){return"Exporter"},formatJumpTo:function(){return"Aller à"},formatAdvancedSearch:function(){return"Recherche avancée"},formatAdvancedCloseButton:function(){return"Fermer"},formatFilterControlSwitch:function(){return"Masquer/Afficher les contrôles"},formatFilterControlSwitchHide:function(){return"Masquer les contrôles"},formatFilterControlSwitchShow:function(){return"Afficher les contrôles"},formatToggleCustomViewOn:function(){return"Afficher la vue personnalisée"},formatToggleCustomViewOff:function(){return"Cacher la vue personnalisée"},formatClearFilters:function(){return"Retirer les filtres"},formatAddLevel:function(){return"Ajouter un niveau"},formatCancel:function(){return"Annuler"},formatColumn:function(){return"Colonne"},formatDeleteLevel:function(){return"Supprimer un niveau"},formatDuplicateAlertTitle:function(){return"Des entrées en double ont été trouvées !"},formatDuplicateAlertDescription:function(){return"Veuillez supprimer ou modifier les entrées en double"},formatMultipleSort:function(){return"Tri multiple"},formatOrder:function(){return"Ordre"},formatSort:function(){return"Trier"},formatSortBy:function(){return"Trier par"},formatSortOrders:function(){return{asc:"Ascendant",desc:"Descendant"}},formatThenBy:function(){return"Puis par"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fr-BE"]),t.fn.bootstrapTable.locales["fr-CH"]={formatCopyRows:function(){return"Copier les lignes"},formatPrint:function(){return"Imprimer"},formatLoadingMessage:function(){return"Chargement en cours"},formatRecordsPerPage:function(t){return"".concat(t," lignes par page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes (filtrées à partir de ").concat(o," lignes)"):"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes")},formatSRPaginationPreText:function(){return"page précédente"},formatSRPaginationPageText:function(t){return"vers la page ".concat(t)},formatSRPaginationNextText:function(){return"page suivante"},formatDetailPagination:function(t){return"Affichage de ".concat(t," lignes")},formatClearSearch:function(){return"Effacer la recherche"},formatSearch:function(){return"Rechercher"},formatNoMatches:function(){return"Aucun résultat"},formatPaginationSwitch:function(){return"Masquer/Afficher la pagination"},formatPaginationSwitchDown:function(){return"Afficher la pagination"},formatPaginationSwitchUp:function(){return"Masquer la pagination"},formatRefresh:function(){return"Actualiser"},formatToggleOn:function(){return"Afficher la vue en cartes"},formatToggleOff:function(){return"Cacher la vue en cartes"},formatColumns:function(){return"Colonnes"},formatColumnsToggleAll:function(){return"Tout afficher"},formatFullscreen:function(){return"Plein écran"},formatAllRows:function(){return"Tout"},formatAutoRefresh:function(){return"Actualiser automatiquement"},formatExport:function(){return"Exporter"},formatJumpTo:function(){return"Aller à"},formatAdvancedSearch:function(){return"Recherche avancée"},formatAdvancedCloseButton:function(){return"Fermer"},formatFilterControlSwitch:function(){return"Masquer/Afficher les contrôles"},formatFilterControlSwitchHide:function(){return"Masquer les contrôles"},formatFilterControlSwitchShow:function(){return"Afficher les contrôles"},formatToggleCustomViewOn:function(){return"Afficher la vue personnalisée"},formatToggleCustomViewOff:function(){return"Cacher la vue personnalisée"},formatClearFilters:function(){return"Retirer les filtres"},formatAddLevel:function(){return"Ajouter un niveau"},formatCancel:function(){return"Annuler"},formatColumn:function(){return"Colonne"},formatDeleteLevel:function(){return"Supprimer un niveau"},formatDuplicateAlertTitle:function(){return"Des entrées en double ont été trouvées !"},formatDuplicateAlertDescription:function(){return"Veuillez supprimer ou modifier les entrées en double"},formatMultipleSort:function(){return"Tri multiple"},formatOrder:function(){return"Ordre"},formatSort:function(){return"Trier"},formatSortBy:function(){return"Trier par"},formatSortOrders:function(){return{asc:"Ascendant",desc:"Descendant"}},formatThenBy:function(){return"Puis par"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fr-CH"]),t.fn.bootstrapTable.locales["fr-LU"]={formatCopyRows:function(){return"Copier les lignes"},formatPrint:function(){return"Imprimer"},formatLoadingMessage:function(){return"Chargement en cours"},formatRecordsPerPage:function(t){return"".concat(t," lignes par page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes (filtrées à partir de ").concat(o," lignes)"):"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes")},formatSRPaginationPreText:function(){return"page précédente"},formatSRPaginationPageText:function(t){return"vers la page ".concat(t)},formatSRPaginationNextText:function(){return"page suivante"},formatDetailPagination:function(t){return"Affichage de ".concat(t," lignes")},formatClearSearch:function(){return"Effacer la recherche"},formatSearch:function(){return"Rechercher"},formatNoMatches:function(){return"Aucun résultat"},formatPaginationSwitch:function(){return"Masquer/Afficher la pagination"},formatPaginationSwitchDown:function(){return"Afficher la pagination"},formatPaginationSwitchUp:function(){return"Masquer la pagination"},formatRefresh:function(){return"Actualiser"},formatToggleOn:function(){return"Afficher la vue en cartes"},formatToggleOff:function(){return"Cacher la vue en cartes"},formatColumns:function(){return"Colonnes"},formatColumnsToggleAll:function(){return"Tout afficher"},formatFullscreen:function(){return"Plein écran"},formatAllRows:function(){return"Tout"},formatAutoRefresh:function(){return"Actualiser automatiquement"},formatExport:function(){return"Exporter"},formatJumpTo:function(){return"Aller à"},formatAdvancedSearch:function(){return"Recherche avancée"},formatAdvancedCloseButton:function(){return"Fermer"},formatFilterControlSwitch:function(){return"Masquer/Afficher les contrôles"},formatFilterControlSwitchHide:function(){return"Masquer les contrôles"},formatFilterControlSwitchShow:function(){return"Afficher les contrôles"},formatToggleCustomViewOn:function(){return"Afficher la vue personnalisée"},formatToggleCustomViewOff:function(){return"Cacher la vue personnalisée"},formatClearFilters:function(){return"Retirer les filtres"},formatAddLevel:function(){return"Ajouter un niveau"},formatCancel:function(){return"Annuler"},formatColumn:function(){return"Colonne"},formatDeleteLevel:function(){return"Supprimer un niveau"},formatDuplicateAlertTitle:function(){return"Des entrées en double ont été trouvées !"},formatDuplicateAlertDescription:function(){return"Veuillez supprimer ou modifier les entrées en double"},formatMultipleSort:function(){return"Tri multiple"},formatOrder:function(){return"Ordre"},formatSort:function(){return"Trier"},formatSortBy:function(){return"Trier par"},formatSortOrders:function(){return{asc:"Ascendant",desc:"Descendant"}},formatThenBy:function(){return"Puis par"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fr-LU"]),t.fn.bootstrapTable.locales["he-IL"]=t.fn.bootstrapTable.locales.he={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"טוען, נא להמתין"},formatRecordsPerPage:function(t){return"".concat(t," שורות בעמוד")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"מציג ".concat(t," עד ").concat(n," מ-").concat(r,"שורות").concat(o," total rows)"):"מציג ".concat(t," עד ").concat(n," מ-").concat(r," שורות")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"חיפוש"},formatNoMatches:function(){return"לא נמצאו רשומות תואמות"},formatPaginationSwitch:function(){return"הסתר/הצג מספור דפים"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"רענן"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"עמודות"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"הכל"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["he-IL"]),t.fn.bootstrapTable.locales["hi-IN"]={formatCopyRows:function(){return"पंक्तियों की कॉपी करें"},formatPrint:function(){return"प्रिंट"},formatLoadingMessage:function(){return"लोड हो रहा है कृपया प्रतीक्षा करें"},formatRecordsPerPage:function(t){return"".concat(t," प्रति पृष्ठ पंक्तियाँ")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"".concat(t," - ").concat(n," पक्तिया ").concat(r," में से ( ").concat(o," पक्तिया)"):"".concat(t," - ").concat(n," पक्तिया ").concat(r," में से")},formatSRPaginationPreText:function(){return"पिछला पृष्ठ"},formatSRPaginationPageText:function(t){return"".concat(t," पृष्ठ पर")},formatSRPaginationNextText:function(){return"अगला पृष्ठ"},formatDetailPagination:function(t){return"".concat(t," पंक्तियां")},formatClearSearch:function(){return"सर्च क्लिअर करें"},formatSearch:function(){return"सर्च"},formatNoMatches:function(){return"मेल खाते रिकॉर्ड नही मिले"},formatPaginationSwitch:function(){return"छुपाओ/दिखाओ पृष्ठ संख्या"},formatPaginationSwitchDown:function(){return"दिखाओ पृष्ठ संख्या"},formatPaginationSwitchUp:function(){return"छुपाओ पृष्ठ संख्या"},formatRefresh:function(){return"रिफ्रेश"},formatToggleOn:function(){return"कार्ड दृश्य दिखाएं"},formatToggleOff:function(){return"कार्ड दृश्य छुपाएं"},formatColumns:function(){return"कॉलम"},formatColumnsToggleAll:function(){return"टॉगल आल"},formatFullscreen:function(){return"पूर्ण स्क्रीन"},formatAllRows:function(){return"सब"},formatAutoRefresh:function(){return"ऑटो रिफ्रेश"},formatExport:function(){return"एक्सपोर्ट डाटा"},formatJumpTo:function(){return"जाओ"},formatAdvancedSearch:function(){return"एडवांस सर्च"},formatAdvancedCloseButton:function(){return"बंद करे"},formatFilterControlSwitch:function(){return"छुपाओ/दिखाओ कंट्रोल्स"},formatFilterControlSwitchHide:function(){return"छुपाओ कंट्रोल्स"},formatFilterControlSwitchShow:function(){return"दिखाओ कंट्रोल्स"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["hi-IN"]),t.fn.bootstrapTable.locales["hr-HR"]=t.fn.bootstrapTable.locales.hr={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Molimo pričekajte"},formatRecordsPerPage:function(t){return"".concat(t," broj zapisa po stranici")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Prikazujem ".concat(t,". - ").concat(n,". od ukupnog broja zapisa ").concat(r," (filtered from ").concat(o," total rows)"):"Prikazujem ".concat(t,". - ").concat(n,". od ukupnog broja zapisa ").concat(r)},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Pretraži"},formatNoMatches:function(){return"Nije pronađen niti jedan zapis"},formatPaginationSwitch:function(){return"Prikaži/sakrij stranice"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Osvježi"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Kolone"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Sve"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["hr-HR"]),t.fn.bootstrapTable.locales["hu-HU"]=t.fn.bootstrapTable.locales.hu={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Betöltés, kérem várjon"},formatRecordsPerPage:function(t){return"".concat(t," rekord per oldal")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Megjelenítve ".concat(t," - ").concat(n," / ").concat(r," összesen (filtered from ").concat(o," total rows)"):"Megjelenítve ".concat(t," - ").concat(n," / ").concat(r," összesen")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Keresés"},formatNoMatches:function(){return"Nincs találat"},formatPaginationSwitch:function(){return"Lapozó elrejtése/megjelenítése"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Frissítés"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Oszlopok"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Összes"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["hu-HU"]),t.fn.bootstrapTable.locales["it-IT"]=t.fn.bootstrapTable.locales.it={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Caricamento in corso"},formatRecordsPerPage:function(t){return"".concat(t," elementi per pagina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Visualizzazione da ".concat(t," a ").concat(n," di ").concat(r," elementi (filtrati da ").concat(o," elementi totali)"):"Visualizzazione da ".concat(t," a ").concat(n," di ").concat(r," elementi")},formatSRPaginationPreText:function(){return"pagina precedente"},formatSRPaginationPageText:function(t){return"alla pagina ".concat(t)},formatSRPaginationNextText:function(){return"pagina successiva"},formatDetailPagination:function(t){return"Mostrando ".concat(t," elementi")},formatClearSearch:function(){return"Pulisci filtri"},formatSearch:function(){return"Cerca"},formatNoMatches:function(){return"Nessun elemento trovato"},formatPaginationSwitch:function(){return"Nascondi/Mostra paginazione"},formatPaginationSwitchDown:function(){return"Mostra paginazione"},formatPaginationSwitchUp:function(){return"Nascondi paginazione"},formatRefresh:function(){return"Aggiorna"},formatToggleOn:function(){return"Mostra visuale a scheda"},formatToggleOff:function(){return"Nascondi visuale a scheda"},formatColumns:function(){return"Colonne"},formatColumnsToggleAll:function(){return"Mostra tutte"},formatFullscreen:function(){return"Schermo intero"},formatAllRows:function(){return"Tutto"},formatAutoRefresh:function(){return"Auto Aggiornamento"},formatExport:function(){return"Esporta dati"},formatJumpTo:function(){return"VAI"},formatAdvancedSearch:function(){return"Filtri avanzati"},formatAdvancedCloseButton:function(){return"Chiudi"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["it-IT"]),t.fn.bootstrapTable.locales["id-ID"]=t.fn.bootstrapTable.locales.id={formatCopyRows:function(){return"Salin baris"},formatPrint:function(){return"Mencetak"},formatLoadingMessage:function(){return"Pemuatan sedang berlangsung"},formatRecordsPerPage:function(t){return"".concat(t," baris per halaman")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Menampilkan dari ".concat(t," hingga ").concat(n," pada ").concat(r," baris (difilter dari ").concat(o," baris)"):"Menampilkan dari ".concat(t," hingga ").concat(n," pada ").concat(r," baris")},formatSRPaginationPreText:function(){return"halaman sebelumnya"},formatSRPaginationPageText:function(t){return"ke halaman ".concat(t)},formatSRPaginationNextText:function(){return"halaman berikutnya"},formatDetailPagination:function(t){return"Tampilan ".concat(t," baris")},formatClearSearch:function(){return"Menghapus pencarian"},formatSearch:function(){return"Pencarian"},formatNoMatches:function(){return"Tidak ada hasil"},formatPaginationSwitch:function(){return"Sembunyikan/Tampilkan penomoran halaman"},formatPaginationSwitchDown:function(){return"Tampilkan penomoran halaman"},formatPaginationSwitchUp:function(){return"Sembunyikan penomoran halaman"},formatRefresh:function(){return"Segarkan"},formatToggleOn:function(){return"Menampilkan tampilan peta"},formatToggleOff:function(){return"Menyembunyikan tampilan peta"},formatColumns:function(){return"Kolom"},formatColumnsToggleAll:function(){return"Tampilkan semua"},formatFullscreen:function(){return"Layar penuh"},formatAllRows:function(){return"Semua"},formatAutoRefresh:function(){return"Penyegaran otomatis"},formatExport:function(){return"Mengekspor data"},formatJumpTo:function(){return"Pergi ke"},formatAdvancedSearch:function(){return"Pencarian lanjutan"},formatAdvancedCloseButton:function(){return"Tutup"},formatFilterControlSwitch:function(){return"Menyembunyikan/Menampilkan kontrol"},formatFilterControlSwitchHide:function(){return"Menyembunyikan kontrol"},formatFilterControlSwitchShow:function(){return"Menampilkan kontrol"},formatToggleCustomViewOn:function(){return"Menampilkan tampilan khusus"},formatToggleCustomViewOff:function(){return"Menyembunyikan tampilan khusus"},formatClearFilters:function(){return"Menghapus filter"},formatAddLevel:function(){return"Menambahkan level"},formatCancel:function(){return"Batal"},formatColumn:function(){return"Kolom"},formatDeleteLevel:function(){return"Menghapus level"},formatDuplicateAlertTitle:function(){return"Entri duplikat telah ditemukan!"},formatDuplicateAlertDescription:function(){return"Harap hapus atau ubah entri duplikat"},formatMultipleSort:function(){return"Penyortiran ganda"},formatOrder:function(){return"Urutan"},formatSort:function(){return"Penyortiran"},formatSortBy:function(){return"Urutkan berdasarkan"},formatSortOrders:function(){return{asc:"Menaik",desc:"Menurun"}},formatThenBy:function(){return"Kemudian oleh"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["id-ID"]),t.fn.bootstrapTable.locales["ja-JP"]=t.fn.bootstrapTable.locales.ja={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"読み込み中です。少々お待ちください。"},formatRecordsPerPage:function(t){return"ページ当たり最大".concat(t,"件")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"全".concat(r,"件から、").concat(t,"から").concat(n,"件目まで表示しています (filtered from ").concat(o," total rows)"):"全".concat(r,"件から、").concat(t,"から").concat(n,"件目まで表示しています")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"検索"},formatNoMatches:function(){return"該当するレコードが見つかりません"},formatPaginationSwitch:function(){return"ページ数を表示・非表示"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"更新"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"列"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"すべて"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ja-JP"]),t.fn.bootstrapTable.locales["ka-GE"]=t.fn.bootstrapTable.locales.ka={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"იტვირთება, გთხოვთ მოიცადოთ"},formatRecordsPerPage:function(t){return"".concat(t," ჩანაწერი თითო გვერდზე")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"ნაჩვენებია ".concat(t,"-დან ").concat(n,"-მდე ჩანაწერი ჯამური ").concat(r,"-დან (filtered from ").concat(o," total rows)"):"ნაჩვენებია ".concat(t,"-დან ").concat(n,"-მდე ჩანაწერი ჯამური ").concat(r,"-დან")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"ძებნა"},formatNoMatches:function(){return"მონაცემები არ არის"},formatPaginationSwitch:function(){return"გვერდების გადამრთველის დამალვა/გამოჩენა"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"განახლება"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"სვეტები"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ka-GE"]),t.fn.bootstrapTable.locales["ko-KR"]=t.fn.bootstrapTable.locales.ko={formatCopyRows:function(){return"행 복사"},formatPrint:function(){return"프린트"},formatLoadingMessage:function(){return"데이터를 불러오는 중입니다"},formatRecordsPerPage:function(t){return"페이지 당 ".concat(t,"개 데이터 출력")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"전체 ".concat(r,"개 중 ").concat(t,"~").concat(n,"번째 데이터 출력, (전체 ").concat(o," 행에서 필터됨)"):"전체 ".concat(r,"개 중 ").concat(t,"~").concat(n,"번째 데이터 출력,")},formatSRPaginationPreText:function(){return"이전 페이지"},formatSRPaginationPageText:function(t){return"".concat(t," 페이지로 이동")},formatSRPaginationNextText:function(){return"다음 페이지"},formatDetailPagination:function(t){return"".concat(t," 행들 표시 중")},formatClearSearch:function(){return"검색 초기화"},formatSearch:function(){return"검색"},formatNoMatches:function(){return"조회된 데이터가 없습니다."},formatPaginationSwitch:function(){return"페이지 넘버 보기/숨기기"},formatPaginationSwitchDown:function(){return"페이지 넘버 보기"},formatPaginationSwitchUp:function(){return"페이지 넘버 숨기기"},formatRefresh:function(){return"새로 고침"},formatToggleOn:function(){return"카드뷰 보기"},formatToggleOff:function(){return"카드뷰 숨기기"},formatColumns:function(){return"컬럼 필터링"},formatColumnsToggleAll:function(){return"전체 토글"},formatFullscreen:function(){return"전체 화면"},formatAllRows:function(){return"전체"},formatAutoRefresh:function(){return"자동 갱신"},formatExport:function(){return"데이터 추출"},formatJumpTo:function(){return"이동"},formatAdvancedSearch:function(){return"심화 검색"},formatAdvancedCloseButton:function(){return"닫기"},formatFilterControlSwitch:function(){return"컨트롤 보기/숨기기"},formatFilterControlSwitchHide:function(){return"컨트롤 숨기기"},formatFilterControlSwitchShow:function(){return"컨트롤 보기"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ko-KR"]),t.fn.bootstrapTable.locales["fr-FR"]=t.fn.bootstrapTable.locales.fr={formatCopyRows:function(){return"Copier les lignes"},formatPrint:function(){return"Imprimer"},formatLoadingMessage:function(){return"Chargement en cours"},formatRecordsPerPage:function(t){return"".concat(t," lignes par page")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes (filtrées à partir de ").concat(o," lignes)"):"Affichage de ".concat(t," à ").concat(n," sur ").concat(r," lignes")},formatSRPaginationPreText:function(){return"page précédente"},formatSRPaginationPageText:function(t){return"vers la page ".concat(t)},formatSRPaginationNextText:function(){return"page suivante"},formatDetailPagination:function(t){return"Affichage de ".concat(t," lignes")},formatClearSearch:function(){return"Effacer la recherche"},formatSearch:function(){return"Rechercher"},formatNoMatches:function(){return"Aucun résultat"},formatPaginationSwitch:function(){return"Masquer/Afficher la pagination"},formatPaginationSwitchDown:function(){return"Afficher la pagination"},formatPaginationSwitchUp:function(){return"Masquer la pagination"},formatRefresh:function(){return"Actualiser"},formatToggleOn:function(){return"Afficher la vue en cartes"},formatToggleOff:function(){return"Cacher la vue en cartes"},formatColumns:function(){return"Colonnes"},formatColumnsToggleAll:function(){return"Tout afficher"},formatFullscreen:function(){return"Plein écran"},formatAllRows:function(){return"Tout"},formatAutoRefresh:function(){return"Actualiser automatiquement"},formatExport:function(){return"Exporter"},formatJumpTo:function(){return"Aller à"},formatAdvancedSearch:function(){return"Recherche avancée"},formatAdvancedCloseButton:function(){return"Fermer"},formatFilterControlSwitch:function(){return"Masquer/Afficher les contrôles"},formatFilterControlSwitchHide:function(){return"Masquer les contrôles"},formatFilterControlSwitchShow:function(){return"Afficher les contrôles"},formatToggleCustomViewOn:function(){return"Afficher la vue personnalisée"},formatToggleCustomViewOff:function(){return"Cacher la vue personnalisée"},formatClearFilters:function(){return"Retirer les filtres"},formatAddLevel:function(){return"Ajouter un niveau"},formatCancel:function(){return"Annuler"},formatColumn:function(){return"Colonne"},formatDeleteLevel:function(){return"Supprimer un niveau"},formatDuplicateAlertTitle:function(){return"Des entrées en double ont été trouvées !"},formatDuplicateAlertDescription:function(){return"Veuillez supprimer ou modifier les entrées en double"},formatMultipleSort:function(){return"Tri multiple"},formatOrder:function(){return"Ordre"},formatSort:function(){return"Trier"},formatSortBy:function(){return"Trier par"},formatSortOrders:function(){return{asc:"Ascendant",desc:"Descendant"}},formatThenBy:function(){return"Puis par"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["fr-FR"]),t.fn.bootstrapTable.locales["lb-LU"]=t.fn.bootstrapTable.locales.lb={formatCopyRows:function(){return"Zeilen kopéieren"},formatPrint:function(){return"Drécken"},formatLoadingMessage:function(){return"Gëtt gelueden, gedellëgt Iech wannechgelift ee Moment"},formatRecordsPerPage:function(t){return"".concat(t," Zeilen per Säit")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Weist Zeil ".concat(t," bis ").concat(n," vun ").concat(r," Zeil").concat(r>1?"en":""," (gefiltert vun insgesamt ").concat(o," Zeil").concat(r>1?"en":"",")"):"Weist Zeil ".concat(t," bis ").concat(n," vun ").concat(r," Zeil").concat(r>1?"en":"")},formatSRPaginationPreText:function(){return"viregt Säit"},formatSRPaginationPageText:function(t){return"op Säit ".concat(t)},formatSRPaginationNextText:function(){return"nächst Säit"},formatDetailPagination:function(t){return"Weist ".concat(t," Zeilen")},formatClearSearch:function(){return"Sich réckgängeg maachen"},formatSearch:function(){return"Sich"},formatNoMatches:function(){return"Keng passend Anträg fonnt"},formatPaginationSwitch:function(){return"Paginatioun uweisen/verstoppen"},formatPaginationSwitchDown:function(){return"Paginatioun uweisen"},formatPaginationSwitchUp:function(){return"Paginatioun verstoppen"},formatRefresh:function(){return"Nei lueden"},formatToggleOn:function(){return"Kaartenusiicht uweisen"},formatToggleOff:function(){return"Kaartenusiicht verstoppen"},formatColumns:function(){return"Kolonnen"},formatColumnsToggleAll:function(){return"All ëmschalten"},formatFullscreen:function(){return"Vollbild"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Automatescht neilueden"},formatExport:function(){return"Daten exportéieren"},formatJumpTo:function(){return"Sprangen"},formatAdvancedSearch:function(){return"Erweidert Sich"},formatAdvancedCloseButton:function(){return"Zoumaachen"},formatFilterControlSwitch:function(){return"Schaltelementer uweisen/verstoppen"},formatFilterControlSwitchHide:function(){return"Schaltelementer verstoppen"},formatFilterControlSwitchShow:function(){return"Schaltelementer uweisen"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["lb-LU"]),t.fn.bootstrapTable.locales["ms-MY"]=t.fn.bootstrapTable.locales.ms={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Permintaan sedang dimuatkan. Sila tunggu sebentar"},formatRecordsPerPage:function(t){return"".concat(t," rekod setiap muka surat")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Sedang memaparkan rekod ".concat(t," hingga ").concat(n," daripada jumlah ").concat(r," rekod (filtered from ").concat(o," total rows)"):"Sedang memaparkan rekod ".concat(t," hingga ").concat(n," daripada jumlah ").concat(r," rekod")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Cari"},formatNoMatches:function(){return"Tiada rekod yang menyamai permintaan"},formatPaginationSwitch:function(){return"Tunjuk/sembunyi muka surat"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Muatsemula"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Lajur"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Semua"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ms-MY"]),t.fn.bootstrapTable.locales["nb-NO"]=t.fn.bootstrapTable.locales.nb={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Oppdaterer, vennligst vent"},formatRecordsPerPage:function(t){return"".concat(t," poster pr side")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Viser ".concat(t," til ").concat(n," av ").concat(r," rekker (filtered from ").concat(o," total rows)"):"Viser ".concat(t," til ").concat(n," av ").concat(r," rekker")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Søk"},formatNoMatches:function(){return"Ingen poster funnet"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Oppdater"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Kolonner"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["nb-NO"]),t.fn.bootstrapTable.locales["nl-NL"]=t.fn.bootstrapTable.locales.nl={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Laden, even geduld"},formatRecordsPerPage:function(t){return"".concat(t," records per pagina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Toon ".concat(t," tot ").concat(n," van ").concat(r," record").concat(r>1?"s":""," (gefilterd van ").concat(o," records in totaal)"):"Toon ".concat(t," tot ").concat(n," van ").concat(r," record").concat(r>1?"s":"")},formatSRPaginationPreText:function(){return"vorige pagina"},formatSRPaginationPageText:function(t){return"tot pagina ".concat(t)},formatSRPaginationNextText:function(){return"volgende pagina"},formatDetailPagination:function(t){return"Toon ".concat(t," record").concat(t>1?"s":"")},formatClearSearch:function(){return"Verwijder filters"},formatSearch:function(){return"Zoeken"},formatNoMatches:function(){return"Geen resultaten gevonden"},formatPaginationSwitch:function(){return"Verberg/Toon paginering"},formatPaginationSwitchDown:function(){return"Toon paginering"},formatPaginationSwitchUp:function(){return"Verberg paginering"},formatRefresh:function(){return"Vernieuwen"},formatToggleOn:function(){return"Toon kaartweergave"},formatToggleOff:function(){return"Verberg kaartweergave"},formatColumns:function(){return"Kolommen"},formatColumnsToggleAll:function(){return"Allen omschakelen"},formatFullscreen:function(){return"Volledig scherm"},formatAllRows:function(){return"Alle"},formatAutoRefresh:function(){return"Automatisch vernieuwen"},formatExport:function(){return"Exporteer gegevens"},formatJumpTo:function(){return"GA"},formatAdvancedSearch:function(){return"Geavanceerd zoeken"},formatAdvancedCloseButton:function(){return"Sluiten"},formatFilterControlSwitch:function(){return"Verberg/Toon controls"},formatFilterControlSwitchHide:function(){return"Verberg controls"},formatFilterControlSwitchShow:function(){return"Toon controls"},formatAddLevel:function(){return"Niveau toevoegen"},formatCancel:function(){return"Annuleren"},formatColumn:function(){return"Kolom"},formatDeleteLevel:function(){return"Niveau verwijderen"},formatDuplicateAlertTitle:function(){return"Duplicaten gevonden!"},formatDuplicateAlertDescription:function(){return"Gelieve dubbele kolommen te verwijderen of wijzigen"},formatMultipleSort:function(){return"Meervoudige sortering"},formatOrder:function(){return"Volgorde"},formatSort:function(){return"Sorteren"},formatSortBy:function(){return"Sorteren op"},formatThenBy:function(){return"vervolgens"},formatSortOrders:function(){return{asc:"Oplopend",desc:"Aflopend"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["nl-NL"]),t.fn.bootstrapTable.locales["pl-PL"]=t.fn.bootstrapTable.locales.pl={formatCopyRows:function(){return"Kopiuj wiersze"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Ładowanie, proszę czekać"},formatRecordsPerPage:function(t){return"".concat(t," rekordów na stronę")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Wyświetlanie rekordów od ".concat(t," do ").concat(n," z ").concat(r," (filtered from ").concat(o," total rows)"):"Wyświetlanie rekordów od ".concat(t," do ").concat(n," z ").concat(r)},formatSRPaginationPreText:function(){return"poprzednia strona"},formatSRPaginationPageText:function(t){return"z ".concat(t)},formatSRPaginationNextText:function(){return"następna strona"},formatDetailPagination:function(t){return"Wyświetla ".concat(t," wierszy")},formatClearSearch:function(){return"Wyczyść wyszukiwanie"},formatSearch:function(){return"Szukaj"},formatNoMatches:function(){return"Niestety, nic nie znaleziono"},formatPaginationSwitch:function(){return"Pokaż/ukryj stronicowanie"},formatPaginationSwitchDown:function(){return"Pokaż stronicowanie"},formatPaginationSwitchUp:function(){return"Ukryj stronicowanie"},formatRefresh:function(){return"Odśwież"},formatToggleOn:function(){return"Pokaż układ karty"},formatToggleOff:function(){return"Ukryj układ karty"},formatColumns:function(){return"Kolumny"},formatColumnsToggleAll:function(){return"Zaznacz wszystko"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Wszystkie"},formatAutoRefresh:function(){return"Auto odświeżanie"},formatExport:function(){return"Eksport danych"},formatJumpTo:function(){return"Przejdź"},formatAdvancedSearch:function(){return"Wyszukiwanie zaawansowane"},formatAdvancedCloseButton:function(){return"Zamknij"},formatFilterControlSwitch:function(){return"Pokaż/Ukryj"},formatFilterControlSwitchHide:function(){return"Pokaż"},formatFilterControlSwitchShow:function(){return"Ukryj"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["pl-PL"]),t.fn.bootstrapTable.locales["nl-BE"]={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Laden, even geduld"},formatRecordsPerPage:function(t){return"".concat(t," records per pagina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Toon ".concat(t," tot ").concat(n," van ").concat(r," record").concat(r>1?"s":""," (gefilterd van ").concat(o," records in totaal)"):"Toon ".concat(t," tot ").concat(n," van ").concat(r," record").concat(r>1?"s":"")},formatSRPaginationPreText:function(){return"vorige pagina"},formatSRPaginationPageText:function(t){return"tot pagina ".concat(t)},formatSRPaginationNextText:function(){return"volgende pagina"},formatDetailPagination:function(t){return"Toon ".concat(t," record").concat(t>1?"s":"")},formatClearSearch:function(){return"Verwijder filters"},formatSearch:function(){return"Zoeken"},formatNoMatches:function(){return"Geen resultaten gevonden"},formatPaginationSwitch:function(){return"Verberg/Toon paginering"},formatPaginationSwitchDown:function(){return"Toon paginering"},formatPaginationSwitchUp:function(){return"Verberg paginering"},formatRefresh:function(){return"Vernieuwen"},formatToggleOn:function(){return"Toon kaartweergave"},formatToggleOff:function(){return"Verberg kaartweergave"},formatColumns:function(){return"Kolommen"},formatColumnsToggleAll:function(){return"Allen omschakelen"},formatFullscreen:function(){return"Volledig scherm"},formatAllRows:function(){return"Alle"},formatAutoRefresh:function(){return"Automatisch vernieuwen"},formatExport:function(){return"Exporteer gegevens"},formatJumpTo:function(){return"GA"},formatAdvancedSearch:function(){return"Geavanceerd zoeken"},formatAdvancedCloseButton:function(){return"Sluiten"},formatFilterControlSwitch:function(){return"Verberg/Toon controls"},formatFilterControlSwitchHide:function(){return"Verberg controls"},formatFilterControlSwitchShow:function(){return"Toon controls"},formatAddLevel:function(){return"Niveau toevoegen"},formatCancel:function(){return"Annuleren"},formatColumn:function(){return"Kolom"},formatDeleteLevel:function(){return"Niveau verwijderen"},formatDuplicateAlertTitle:function(){return"Duplicaten gevonden!"},formatDuplicateAlertDescription:function(){return"Gelieve dubbele kolommen te verwijderen of wijzigen"},formatMultipleSort:function(){return"Meervoudige sortering"},formatOrder:function(){return"Volgorde"},formatSort:function(){return"Sorteren"},formatSortBy:function(){return"Sorteren op"},formatThenBy:function(){return"vervolgens"},formatSortOrders:function(){return{asc:"Oplopend",desc:"Aflopend"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["nl-BE"]),t.fn.bootstrapTable.locales["pt-BR"]=t.fn.bootstrapTable.locales.br={formatCopyRows:function(){return"Copiar linhas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"Carregando, aguarde"},formatRecordsPerPage:function(t){return"".concat(t," registros por página")},formatShowingRows:function(t,n,r,o){var e=r>1?"s":"";return void 0!==o&&o>0&&o>r?"Exibindo ".concat(t," até ").concat(n," de ").concat(r," linha").concat(e," (filtrado de um total de ").concat(o," linha").concat(e,")"):"Exibindo ".concat(t," até ").concat(n," de ").concat(r," linha").concat(e)},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"ir para a página ".concat(t)},formatSRPaginationNextText:function(){return"próxima página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," linha").concat(t>1?"s":"")},formatClearSearch:function(){return"Limpar Pesquisa"},formatSearch:function(){return"Pesquisar"},formatNoMatches:function(){return"Nenhum registro encontrado"},formatPaginationSwitch:function(){return"Ocultar/Exibir paginação"},formatPaginationSwitchDown:function(){return"Mostrar Paginação"},formatPaginationSwitchUp:function(){return"Esconder Paginação"},formatRefresh:function(){return"Recarregar"},formatToggleOn:function(){return"Mostrar visualização de cartão"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Colunas"},formatColumnsToggleAll:function(){return"Alternar tudo"},formatFullscreen:function(){return"Tela cheia"},formatAllRows:function(){return"Tudo"},formatAutoRefresh:function(){return"Atualização Automática"},formatExport:function(){return"Exportar dados"},formatJumpTo:function(){return"Ir"},formatAdvancedSearch:function(){return"Pesquisa Avançada"},formatAdvancedCloseButton:function(){return"Fechar"},formatFilterControlSwitch:function(){return"Ocultar/Exibir controles"},formatFilterControlSwitchHide:function(){return"Ocultar controles"},formatFilterControlSwitchShow:function(){return"Exibir controles"},formatAddLevel:function(){return"Adicionar nível"},formatCancel:function(){return"Cancelar"},formatColumn:function(){return"Coluna"},formatDeleteLevel:function(){return"Remover nível"},formatDuplicateAlertTitle:function(){return"Encontradas entradas duplicadas!"},formatDuplicateAlertDescription:function(){return"Por favor, remova ou altere as colunas duplicadas"},formatMultipleSort:function(){return"Ordenação múltipla"},formatOrder:function(){return"Ordem"},formatSort:function(){return"Ordenar"},formatSortBy:function(){return"Ordenar por"},formatThenBy:function(){return"em seguida"},formatSortOrders:function(){return{asc:"Crescente",desc:"Decrescente"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["pt-BR"]),t.fn.bootstrapTable.locales["ro-RO"]=t.fn.bootstrapTable.locales.ro={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Se incarca, va rugam asteptati"},formatRecordsPerPage:function(t){return"".concat(t," inregistrari pe pagina")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Arata de la ".concat(t," pana la ").concat(n," din ").concat(r," randuri (filtered from ").concat(o," total rows)"):"Arata de la ".concat(t," pana la ").concat(n," din ").concat(r," randuri")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Cauta"},formatNoMatches:function(){return"Nu au fost gasite inregistrari"},formatPaginationSwitch:function(){return"Ascunde/Arata paginatia"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Reincarca"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Coloane"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Toate"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ro-RO"]),t.fn.bootstrapTable.locales["ru-RU"]=t.fn.bootstrapTable.locales.ru={formatCopyRows:function(){return"Скопировать строки"},formatPrint:function(){return"Печать"},formatLoadingMessage:function(){return"Пожалуйста, подождите, идёт загрузка"},formatRecordsPerPage:function(t){return"".concat(t," записей на страницу")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Записи с ".concat(t," по ").concat(n," из ").concat(r," (отфильтровано, всего на сервере ").concat(o," записей)"):"Записи с ".concat(t," по ").concat(n," из ").concat(r)},formatSRPaginationPreText:function(){return"предыдущая страница"},formatSRPaginationPageText:function(t){return"перейти к странице ".concat(t)},formatSRPaginationNextText:function(){return"следующая страница"},formatDetailPagination:function(t){return"Загружено ".concat(t," строк")},formatClearSearch:function(){return"Очистить фильтры"},formatSearch:function(){return"Поиск"},formatNoMatches:function(){return"Ничего не найдено"},formatPaginationSwitch:function(){return"Скрыть/Показать постраничную навигацию"},formatPaginationSwitchDown:function(){return"Показать постраничную навигацию"},formatPaginationSwitchUp:function(){return"Скрыть постраничную навигацию"},formatRefresh:function(){return"Обновить"},formatToggleOn:function(){return"Показать записи в виде карточек"},formatToggleOff:function(){return"Табличный режим просмотра"},formatColumns:function(){return"Колонки"},formatColumnsToggleAll:function(){return"Выбрать все"},formatFullscreen:function(){return"Полноэкранный режим"},formatAllRows:function(){return"Все"},formatAutoRefresh:function(){return"Автоматическое обновление"},formatExport:function(){return"Экспортировать данные"},formatJumpTo:function(){return"Стр."},formatAdvancedSearch:function(){return"Расширенный поиск"},formatAdvancedCloseButton:function(){return"Закрыть"},formatFilterControlSwitch:function(){return"Скрыть/Показать панель инструментов"},formatFilterControlSwitchHide:function(){return"Скрыть панель инструментов"},formatFilterControlSwitchShow:function(){return"Показать панель инструментов"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ru-RU"]),t.fn.bootstrapTable.locales["sl-SI"]=t.fn.bootstrapTable.locales.sl={formatCopyRows:function(){return"Kopiraj vrstice"},formatPrint:function(){return"Natisni"},formatLoadingMessage:function(){return"Prosim počakajte..."},formatRecordsPerPage:function(t){return"".concat(t," vrstic na stran")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Prikaz ".concat(t," do ").concat(n," od ").concat(r," vrstic (filtrirano od skupno ").concat(o," vrstic)"):"Prikaz ".concat(t," do ").concat(n," od ").concat(r," vrstic")},formatSRPaginationPreText:function(){return"prejšnja stran"},formatSRPaginationPageText:function(t){return"na stran ".concat(t)},formatSRPaginationNextText:function(){return"na slednja stran"},formatDetailPagination:function(t){return"Prikaz ".concat(t," vrstic")},formatClearSearch:function(){return"Počisti"},formatSearch:function(){return"Iskanje"},formatNoMatches:function(){return"Ni najdenih rezultatov"},formatPaginationSwitch:function(){return"Skrij/Pokaži oštevilčevanje strani"},formatPaginationSwitchDown:function(){return"Pokaži oštevilčevanje strani"},formatPaginationSwitchUp:function(){return"Skrij oštevilčevanje strani"},formatRefresh:function(){return"Osveži"},formatToggleOn:function(){return"Prikaži kartični pogled"},formatToggleOff:function(){return"Skrij kartični pogled"},formatColumns:function(){return"Stolpci"},formatColumnsToggleAll:function(){return"Preklopi vse"},formatFullscreen:function(){return"Celozaslonski prikaz"},formatAllRows:function(){return"Vse"},formatAutoRefresh:function(){return"Samodejna osvežitev"},formatExport:function(){return"Izvoz podatkov"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Napredno iskanje"},formatAdvancedCloseButton:function(){return"Zapri"},formatFilterControlSwitch:function(){return"Skrij/Pokaži kontrole"},formatFilterControlSwitchHide:function(){return"Skrij kontrole"},formatFilterControlSwitchShow:function(){return"Pokaži kontrole"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sl-SI"]),t.fn.bootstrapTable.locales["sk-SK"]=t.fn.bootstrapTable.locales.sk={formatCopyRows:function(){return"Skopírovať riadky"},formatPrint:function(){return"Vytlačiť"},formatLoadingMessage:function(){return"Prosím čakajte"},formatRecordsPerPage:function(t){return"".concat(t," záznamov na stranu")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Zobrazená ".concat(t,". - ").concat(n,". položka z celkových ").concat(r," (filtered from ").concat(o," total rows)"):"Zobrazená ".concat(t,". - ").concat(n,". položka z celkových ").concat(r)},formatSRPaginationPreText:function(){return"Predchádzajúca strana"},formatSRPaginationPageText:function(t){return"na stranu ".concat(t)},formatSRPaginationNextText:function(){return"Nasledujúca strana"},formatDetailPagination:function(t){return"Zobrazuje sa ".concat(t," riadkov")},formatClearSearch:function(){return"Odstráň filtre"},formatSearch:function(){return"Vyhľadávanie"},formatNoMatches:function(){return"Nenájdená žiadna vyhovujúca položka"},formatPaginationSwitch:function(){return"Skry/Zobraz stránkovanie"},formatPaginationSwitchDown:function(){return"Zobraziť stránkovanie"},formatPaginationSwitchUp:function(){return"Skryť stránkovanie"},formatRefresh:function(){return"Obnoviť"},formatToggleOn:function(){return"Zobraziť kartové zobrazenie"},formatToggleOff:function(){return"skryť kartové zobrazenie"},formatColumns:function(){return"Stĺpce"},formatColumnsToggleAll:function(){return"Prepnúť všetky"},formatFullscreen:function(){return"Celá obrazovka"},formatAllRows:function(){return"Všetky"},formatAutoRefresh:function(){return"Automatické obnovenie"},formatExport:function(){return"Exportuj dáta"},formatJumpTo:function(){return"Ísť"},formatAdvancedSearch:function(){return"Pokročilé vyhľadávanie"},formatAdvancedCloseButton:function(){return"Zatvoriť"},formatFilterControlSwitch:function(){return"Zobraziť/Skryť tlačidlá"},formatFilterControlSwitchHide:function(){return"Skryť tlačidlá"},formatFilterControlSwitchShow:function(){return"Zobraziť tlačidlá"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sk-SK"]),t.fn.bootstrapTable.locales["sr-Cyrl-RS"]=t.fn.bootstrapTable.locales.sr={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Молим сачекај"},formatRecordsPerPage:function(t){return"".concat(t," редова по страни")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Приказано ".concat(t,". - ").concat(n,". од укупног броја редова ").concat(r," (филтрирано од ").concat(o,")"):"Приказано ".concat(t,". - ").concat(n,". од укупног броја редова ").concat(r)},formatSRPaginationPreText:function(){return"претходна страна"},formatSRPaginationPageText:function(t){return"на страну ".concat(t)},formatSRPaginationNextText:function(){return"следећа страна"},formatDetailPagination:function(t){return"Приказано ".concat(t," редова")},formatClearSearch:function(){return"Обриши претрагу"},formatSearch:function(){return"Пронађи"},formatNoMatches:function(){return"Није пронађен ни један податак"},formatPaginationSwitch:function(){return"Прикажи/сакриј пагинацију"},formatPaginationSwitchDown:function(){return"Прикажи пагинацију"},formatPaginationSwitchUp:function(){return"Сакриј пагинацију"},formatRefresh:function(){return"Освежи"},formatToggleOn:function(){return"Прикажи картице"},formatToggleOff:function(){return"Сакриј картице"},formatColumns:function(){return"Колоне"},formatColumnsToggleAll:function(){return"Прикажи/сакриј све"},formatFullscreen:function(){return"Цео екран"},formatAllRows:function(){return"Све"},formatAutoRefresh:function(){return"Аутоматско освежавање"},formatExport:function(){return"Извези податке"},formatJumpTo:function(){return"Иди"},formatAdvancedSearch:function(){return"Напредна претрага"},formatAdvancedCloseButton:function(){return"Затвори"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sr-Cyrl-RS"]),t.fn.bootstrapTable.locales["sr-Latn-RS"]={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Molim sačekaj"},formatRecordsPerPage:function(t){return"".concat(t," redova po strani")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Prikazano ".concat(t,". - ").concat(n,". od ukupnog broja redova ").concat(r," (filtrirano od ").concat(o,")"):"Prikazano ".concat(t,". - ").concat(n,". od ukupnog broja redova ").concat(r)},formatSRPaginationPreText:function(){return"prethodna strana"},formatSRPaginationPageText:function(t){return"na stranu ".concat(t)},formatSRPaginationNextText:function(){return"sledeća strana"},formatDetailPagination:function(t){return"Prikazano ".concat(t," redova")},formatClearSearch:function(){return"Obriši pretragu"},formatSearch:function(){return"Pronađi"},formatNoMatches:function(){return"Nije pronađen ni jedan podatak"},formatPaginationSwitch:function(){return"Prikaži/sakrij paginaciju"},formatPaginationSwitchDown:function(){return"Prikaži paginaciju"},formatPaginationSwitchUp:function(){return"Sakrij paginaciju"},formatRefresh:function(){return"Osveži"},formatToggleOn:function(){return"Prikaži kartice"},formatToggleOff:function(){return"Sakrij kartice"},formatColumns:function(){return"Kolone"},formatColumnsToggleAll:function(){return"Prikaži/sakrij sve"},formatFullscreen:function(){return"Ceo ekran"},formatAllRows:function(){return"Sve"},formatAutoRefresh:function(){return"Automatsko osvežavanje"},formatExport:function(){return"Izvezi podatke"},formatJumpTo:function(){return"Idi"},formatAdvancedSearch:function(){return"Napredna pretraga"},formatAdvancedCloseButton:function(){return"Zatvori"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sr-Latn-RS"]),t.fn.bootstrapTable.locales["sv-SE"]=t.fn.bootstrapTable.locales.sv={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Laddar, vänligen vänta"},formatRecordsPerPage:function(t){return"".concat(t," rader per sida")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Visa ".concat(t," till ").concat(n," av ").concat(r," rader (filtered from ").concat(o," total rows)"):"Visa ".concat(t," till ").concat(n," av ").concat(r," rader")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"Sök"},formatNoMatches:function(){return"Inga matchande resultat funna."},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Uppdatera"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"kolumn"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["sv-SE"]),t.fn.bootstrapTable.locales["th-TH"]=t.fn.bootstrapTable.locales.th={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"กำลังโหลดข้อมูล, กรุณารอสักครู่"},formatRecordsPerPage:function(t){return"".concat(t," รายการต่อหน้า")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"รายการที่ ".concat(t," ถึง ").concat(n," จากทั้งหมด ").concat(r," รายการ (filtered from ").concat(o," total rows)"):"รายการที่ ".concat(t," ถึง ").concat(n," จากทั้งหมด ").concat(r," รายการ")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"ค้นหา"},formatNoMatches:function(){return"ไม่พบรายการที่ค้นหา !"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"รีเฟรส"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"คอลัมน์"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["th-TH"]),t.fn.bootstrapTable.locales["tr-TR"]=t.fn.bootstrapTable.locales.tr={formatCopyRows:function(){return"Satırları Kopyala"},formatPrint:function(){return"Yazdır"},formatLoadingMessage:function(){return"Yükleniyor, lütfen bekleyin"},formatRecordsPerPage:function(t){return"Sayfa başına ".concat(t," kayıt.")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"".concat(r," kayıttan ").concat(t,"-").concat(n," arası gösteriliyor (").concat(o," toplam satır filtrelendi)."):"".concat(r," kayıttan ").concat(t,"-").concat(n," arası gösteriliyor.")},formatSRPaginationPreText:function(){return"önceki sayfa"},formatSRPaginationPageText:function(t){return"sayfa ".concat(t)},formatSRPaginationNextText:function(){return"sonraki sayfa"},formatDetailPagination:function(t){return"".concat(t," satır gösteriliyor")},formatClearSearch:function(){return"Aramayı Temizle"},formatSearch:function(){return"Ara"},formatNoMatches:function(){return"Eşleşen kayıt bulunamadı."},formatPaginationSwitch:function(){return"Sayfalamayı Gizle/Göster"},formatPaginationSwitchDown:function(){return"Sayfalamayı Göster"},formatPaginationSwitchUp:function(){return"Sayfalamayı Gizle"},formatRefresh:function(){return"Yenile"},formatToggleOn:function(){return"Kart Görünümünü Göster"},formatToggleOff:function(){return"Kart Görünümünü Gizle"},formatColumns:function(){return"Sütunlar"},formatColumnsToggleAll:function(){return"Tümünü Kapat"},formatFullscreen:function(){return"Tam Ekran"},formatAllRows:function(){return"Tüm Satırlar"},formatAutoRefresh:function(){return"Otomatik Yenileme"},formatExport:function(){return"Verileri Dışa Aktar"},formatJumpTo:function(){return"Git"},formatAdvancedSearch:function(){return"Gelişmiş Arama"},formatAdvancedCloseButton:function(){return"Kapat"},formatFilterControlSwitch:function(){return"Kontrolleri Gizle/Göster"},formatFilterControlSwitchHide:function(){return"Kontrolleri Gizle"},formatFilterControlSwitchShow:function(){return"Kontrolleri Göster"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["tr-TR"]),t.fn.bootstrapTable.locales["ur-PK"]=t.fn.bootstrapTable.locales.ur={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"براۓ مہربانی انتظار کیجئے"},formatRecordsPerPage:function(t){return"".concat(t," ریکارڈز فی صفہ ")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"دیکھیں ".concat(t," سے ").concat(n," کے ").concat(r,"ریکارڈز (filtered from ").concat(o," total rows)"):"دیکھیں ".concat(t," سے ").concat(n," کے ").concat(r,"ریکارڈز")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Clear Search"},formatSearch:function(){return"تلاش"},formatNoMatches:function(){return"کوئی ریکارڈ نہیں ملا"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"تازہ کریں"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"کالم"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"All"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Export data"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["ur-PK"]),t.fn.bootstrapTable.locales["uz-Latn-UZ"]=t.fn.bootstrapTable.locales.uz={formatCopyRows:function(){return"Copy Rows"},formatPrint:function(){return"Print"},formatLoadingMessage:function(){return"Yuklanyapti, iltimos kuting"},formatRecordsPerPage:function(t){return"".concat(t," qator har sahifada")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Ko'rsatypati ".concat(t," dan ").concat(n," gacha ").concat(r," qatorlarni (filtered from ").concat(o," total rows)"):"Ko'rsatypati ".concat(t," dan ").concat(n," gacha ").concat(r," qatorlarni")},formatSRPaginationPreText:function(){return"previous page"},formatSRPaginationPageText:function(t){return"to page ".concat(t)},formatSRPaginationNextText:function(){return"next page"},formatDetailPagination:function(t){return"Showing ".concat(t," rows")},formatClearSearch:function(){return"Filtrlarni tozalash"},formatSearch:function(){return"Qidirish"},formatNoMatches:function(){return"Hech narsa topilmadi"},formatPaginationSwitch:function(){return"Sahifalashni yashirish/ko'rsatish"},formatPaginationSwitchDown:function(){return"Show pagination"},formatPaginationSwitchUp:function(){return"Hide pagination"},formatRefresh:function(){return"Yangilash"},formatToggleOn:function(){return"Show card view"},formatToggleOff:function(){return"Hide card view"},formatColumns:function(){return"Ustunlar"},formatColumnsToggleAll:function(){return"Toggle all"},formatFullscreen:function(){return"Fullscreen"},formatAllRows:function(){return"Hammasi"},formatAutoRefresh:function(){return"Auto Refresh"},formatExport:function(){return"Eksport"},formatJumpTo:function(){return"GO"},formatAdvancedSearch:function(){return"Advanced search"},formatAdvancedCloseButton:function(){return"Close"},formatFilterControlSwitch:function(){return"Hide/Show controls"},formatFilterControlSwitchHide:function(){return"Hide controls"},formatFilterControlSwitchShow:function(){return"Show controls"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["uz-Latn-UZ"]),t.fn.bootstrapTable.locales["uk-UA"]=t.fn.bootstrapTable.locales.uk={formatCopyRows:function(){return"Скопіювати рядки"},formatPrint:function(){return"Друк"},formatLoadingMessage:function(){return"Завантаження, будь ласка, зачекайте"},formatRecordsPerPage:function(t){return"".concat(t," рядків на сторінку")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Відображено рядки з ".concat(t," по ").concat(n," з ").concat(r," загалом (відфільтровано з ").concat(o," рядків)"):"Відображено рядки з ".concat(t," по ").concat(n," з ").concat(r," загалом")},formatSRPaginationPreText:function(){return"попередня сторінка"},formatSRPaginationPageText:function(t){return"до сторінки ".concat(t)},formatSRPaginationNextText:function(){return"наступна сторінка"},formatDetailPagination:function(t){return"Відображено ".concat(t," рядків")},formatClearSearch:function(){return"Скинути фільтри"},formatSearch:function(){return"Пошук"},formatNoMatches:function(){return"Не знайдено жодного запису"},formatPaginationSwitch:function(){return"Сховати/Відобразити пагінацію"},formatPaginationSwitchDown:function(){return"Відобразити пагінацію"},formatPaginationSwitchUp:function(){return"Сховати пагінацію"},formatRefresh:function(){return"Оновити"},formatToggleOn:function(){return"Відобразити у форматі карток"},formatToggleOff:function(){return"Вимкнути формат карток"},formatColumns:function(){return"Стовпці"},formatColumnsToggleAll:function(){return"Переключити усі"},formatFullscreen:function(){return"Повноекранний режим"},formatAllRows:function(){return"Усі"},formatAutoRefresh:function(){return"Автооновлення"},formatExport:function(){return"Експортувати дані"},formatJumpTo:function(){return"Швидкий перехід до"},formatAdvancedSearch:function(){return"Розширений пошук"},formatAdvancedCloseButton:function(){return"Закрити"},formatFilterControlSwitch:function(){return"Сховати/Відобразити елементи керування"},formatFilterControlSwitchHide:function(){return"Сховати елементи керування"},formatFilterControlSwitchShow:function(){return"Відобразити елементи керування"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["uk-UA"]),t.fn.bootstrapTable.locales["vi-VN"]=t.fn.bootstrapTable.locales.vi={formatCopyRows:function(){return"Sao chép hàng"},formatPrint:function(){return"In"},formatLoadingMessage:function(){return"Đang tải"},formatRecordsPerPage:function(t){return"".concat(t," bản ghi mỗi trang")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"Hiển thị từ trang ".concat(t," đến ").concat(n," của ").concat(r," bản ghi (được lọc từ tổng ").concat(o," hàng)"):"Hiển thị từ trang ".concat(t," đến ").concat(n," của ").concat(r," bản ghi")},formatSRPaginationPreText:function(){return"trang trước"},formatSRPaginationPageText:function(t){return"đến trang ".concat(t)},formatSRPaginationNextText:function(){return"trang sau"},formatDetailPagination:function(t){return"Đang hiện ".concat(t," hàng")},formatClearSearch:function(){return"Xoá tìm kiếm"},formatSearch:function(){return"Tìm kiếm"},formatNoMatches:function(){return"Không có dữ liệu"},formatPaginationSwitch:function(){return"Ẩn/Hiện phân trang"},formatPaginationSwitchDown:function(){return"Hiện phân trang"},formatPaginationSwitchUp:function(){return"Ẩn phân trang"},formatRefresh:function(){return"Làm mới"},formatToggleOn:function(){return"Hiển thị các thẻ"},formatToggleOff:function(){return"Ẩn các thẻ"},formatColumns:function(){return"Cột"},formatColumnsToggleAll:function(){return"Hiện tất cả"},formatFullscreen:function(){return"Toàn màn hình"},formatAllRows:function(){return"Tất cả"},formatAutoRefresh:function(){return"Tự động làm mới"},formatExport:function(){return"Xuất dữ liệu"},formatJumpTo:function(){return"Đến"},formatAdvancedSearch:function(){return"Tìm kiếm nâng cao"},formatAdvancedCloseButton:function(){return"Đóng"},formatFilterControlSwitch:function(){return"Ẩn/Hiện điều khiển"},formatFilterControlSwitchHide:function(){return"Ẩn điều khiển"},formatFilterControlSwitchShow:function(){return"Hiện điều khiển"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["vi-VN"]),t.fn.bootstrapTable.locales["zh-CN"]=t.fn.bootstrapTable.locales.zh={formatCopyRows:function(){return"复制行"},formatPrint:function(){return"打印"},formatLoadingMessage:function(){return"正在努力地加载数据中,请稍候"},formatRecordsPerPage:function(t){return"每页显示 ".concat(t," 条记录")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"显示第 ".concat(t," 到第 ").concat(n," 条记录,总共 ").concat(r," 条记录(从 ").concat(o," 总记录中过滤)"):"显示第 ".concat(t," 到第 ").concat(n," 条记录,总共 ").concat(r," 条记录")},formatSRPaginationPreText:function(){return"上一页"},formatSRPaginationPageText:function(t){return"第".concat(t,"页")},formatSRPaginationNextText:function(){return"下一页"},formatDetailPagination:function(t){return"总共 ".concat(t," 条记录")},formatClearSearch:function(){return"清空过滤"},formatSearch:function(){return"搜索"},formatNoMatches:function(){return"没有找到匹配的记录"},formatPaginationSwitch:function(){return"隐藏/显示分页"},formatPaginationSwitchDown:function(){return"显示分页"},formatPaginationSwitchUp:function(){return"隐藏分页"},formatRefresh:function(){return"刷新"},formatToggleOn:function(){return"显示卡片视图"},formatToggleOff:function(){return"隐藏卡片视图"},formatColumns:function(){return"列"},formatColumnsToggleAll:function(){return"切换所有"},formatFullscreen:function(){return"全屏"},formatAllRows:function(){return"所有"},formatAutoRefresh:function(){return"自动刷新"},formatExport:function(){return"导出数据"},formatJumpTo:function(){return"跳转"},formatAdvancedSearch:function(){return"高级搜索"},formatAdvancedCloseButton:function(){return"关闭"},formatFilterControlSwitch:function(){return"隐藏/显示过滤控制"},formatFilterControlSwitchHide:function(){return"隐藏过滤控制"},formatFilterControlSwitchShow:function(){return"显示过滤控制"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["zh-CN"]),t.fn.bootstrapTable.locales["zh-TW"]={formatCopyRows:function(){return"複製行"},formatPrint:function(){return"列印"},formatLoadingMessage:function(){return"正在努力地載入資料,請稍候"},formatRecordsPerPage:function(t){return"每頁顯示 ".concat(t," 項記錄")},formatShowingRows:function(t,n,r,o){return void 0!==o&&o>0&&o>r?"顯示第 ".concat(t," 到第 ").concat(n," 項記錄,總共 ").concat(r," 項記錄(從 ").concat(o," 總記錄中過濾)"):"顯示第 ".concat(t," 到第 ").concat(n," 項記錄,總共 ").concat(r," 項記錄")},formatSRPaginationPreText:function(){return"上一頁"},formatSRPaginationPageText:function(t){return"第".concat(t,"頁")},formatSRPaginationNextText:function(){return"下一頁"},formatDetailPagination:function(t){return"總共 ".concat(t," 項記錄")},formatClearSearch:function(){return"清空過濾"},formatSearch:function(){return"搜尋"},formatNoMatches:function(){return"沒有找到符合的結果"},formatPaginationSwitch:function(){return"隱藏/顯示分頁"},formatPaginationSwitchDown:function(){return"顯示分頁"},formatPaginationSwitchUp:function(){return"隱藏分頁"},formatRefresh:function(){return"重新整理"},formatToggleOn:function(){return"顯示卡片視圖"},formatToggleOff:function(){return"隱藏卡片視圖"},formatColumns:function(){return"列"},formatColumnsToggleAll:function(){return"切換所有"},formatFullscreen:function(){return"全屏"},formatAllRows:function(){return"所有"},formatAutoRefresh:function(){return"自動刷新"},formatExport:function(){return"導出數據"},formatJumpTo:function(){return"跳轉"},formatAdvancedSearch:function(){return"高級搜尋"},formatAdvancedCloseButton:function(){return"關閉"},formatFilterControlSwitch:function(){return"隱藏/顯示過濾控制"},formatFilterControlSwitchHide:function(){return"隱藏過濾控制"},formatFilterControlSwitchShow:function(){return"顯示過濾控制"}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["zh-TW"]),t.fn.bootstrapTable.locales["pt-PT"]=t.fn.bootstrapTable.locales.pt={formatCopyRows:function(){return"Copiar Linhas"},formatPrint:function(){return"Imprimir"},formatLoadingMessage:function(){return"A carregar, por favor aguarde"},formatRecordsPerPage:function(t){return"".concat(t," registos por página")},formatShowingRows:function(t,n,r,o){var e=r>1?"s":"";return void 0!==o&&o>0&&o>r?"A mostrar ".concat(t," até ").concat(n," de ").concat(r," linha").concat(e," (filtrado de um total de ").concat(o," linha").concat(e,")"):"A mostrar ".concat(t," até ").concat(n," de ").concat(r," linha").concat(e)},formatSRPaginationPreText:function(){return"página anterior"},formatSRPaginationPageText:function(t){return"ir para página ".concat(t)},formatSRPaginationNextText:function(){return"próxima página"},formatDetailPagination:function(t){return"Mostrando ".concat(t," linha").concat(t>1?"s":"")},formatClearSearch:function(){return"Limpar Pesquisa"},formatSearch:function(){return"Pesquisa"},formatNoMatches:function(){return"Nenhum registo encontrado"},formatPaginationSwitch:function(){return"Esconder/Mostrar paginação"},formatPaginationSwitchDown:function(){return"Mostrar página"},formatPaginationSwitchUp:function(){return"Esconder página"},formatRefresh:function(){return"Actualizar"},formatToggleOn:function(){return"Mostrar vista em forma de cartão"},formatToggleOff:function(){return"Esconder vista em forma de cartão"},formatColumns:function(){return"Colunas"},formatColumnsToggleAll:function(){return"Activar tudo"},formatFullscreen:function(){return"Ecrã completo"},formatAllRows:function(){return"Tudo"},formatAutoRefresh:function(){return"Actualização autmática"},formatExport:function(){return"Exportar dados"},formatJumpTo:function(){return"Avançar"},formatAdvancedSearch:function(){return"Pesquisa avançada"},formatAdvancedCloseButton:function(){return"Fechar"},formatFilterControlSwitch:function(){return"Ocultar/Exibir controles"},formatFilterControlSwitchHide:function(){return"Esconder controlos"},formatFilterControlSwitchShow:function(){return"Exibir controlos"},formatAddLevel:function(){return"Adicionar nível"},formatCancel:function(){return"Cancelar"},formatColumn:function(){return"Coluna"},formatDeleteLevel:function(){return"Remover nível"},formatDuplicateAlertTitle:function(){return"Foram encontradas entradas duplicadas!"},formatDuplicateAlertDescription:function(){return"Por favor, remova ou altere as colunas duplicadas"},formatMultipleSort:function(){return"Ordenação múltipla"},formatOrder:function(){return"Ordem"},formatSort:function(){return"Ordenar"},formatSortBy:function(){return"Ordenar por"},formatThenBy:function(){return"em seguida"},formatSortOrders:function(){return{asc:"Ascendente",desc:"Descendente"}}},Object.assign(t.fn.bootstrapTable.defaults,t.fn.bootstrapTable.locales["pt-PT"])}));
diff --git a/dist/bootstrap-table-vue.js b/dist/bootstrap-table-vue.js
index c44c5bcba..f59a98f2c 100644
--- a/dist/bootstrap-table-vue.js
+++ b/dist/bootstrap-table-vue.js
@@ -1,21 +1,21 @@
-var bt = {};
+var Dt = {};
/**
-* @vue/shared v3.4.34
+* @vue/shared v3.5.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
/*! #__NO_SIDE_EFFECTS__ */
// @__NO_SIDE_EFFECTS__
-function Xt(e, t) {
+function un(e, t) {
const n = new Set(e.split(","));
return (r) => n.has(r);
}
-const P = bt.NODE_ENV !== "production" ? Object.freeze({}) : {}, kt = bt.NODE_ENV !== "production" ? Object.freeze([]) : [], k = () => {
-}, en = (e) => e.charCodeAt(0) === 111 && e.charCodeAt(1) === 110 && // uppercase letter
-(e.charCodeAt(2) > 122 || e.charCodeAt(2) < 97), T = Object.assign, tn = Object.prototype.hasOwnProperty, E = (e, t) => tn.call(e, t), g = Array.isArray, Y = (e) => ye(e) === "[object Map]", nn = (e) => ye(e) === "[object Set]", N = (e) => typeof e == "function", $ = (e) => typeof e == "string", se = (e) => typeof e == "symbol", S = (e) => e !== null && typeof e == "object", rn = (e) => (S(e) || N(e)) && N(e.then) && N(e.catch), on = Object.prototype.toString, ye = (e) => on.call(e), wt = (e) => ye(e).slice(8, -1), sn = (e) => ye(e) === "[object Object]", Ue = (e) => $(e) && e !== "NaN" && e[0] !== "-" && "" + parseInt(e, 10) === e, cn = (e) => {
+const I = Dt.NODE_ENV !== "production" ? Object.freeze({}) : {}, fn = Dt.NODE_ENV !== "production" ? Object.freeze([]) : [], ce = () => {
+}, pn = (e) => e.charCodeAt(0) === 111 && e.charCodeAt(1) === 110 && // uppercase letter
+(e.charCodeAt(2) > 122 || e.charCodeAt(2) < 97), C = Object.assign, dn = Object.prototype.hasOwnProperty, w = (e, t) => dn.call(e, t), b = Array.isArray, te = (e) => Pe(e) === "[object Map]", hn = (e) => Pe(e) === "[object Set]", O = (e) => typeof e == "function", A = (e) => typeof e == "string", pe = (e) => typeof e == "symbol", y = (e) => e !== null && typeof e == "object", gn = (e) => (y(e) || O(e)) && O(e.then) && O(e.catch), _n = Object.prototype.toString, Pe = (e) => _n.call(e), Vt = (e) => Pe(e).slice(8, -1), mn = (e) => Pe(e) === "[object Object]", et = (e) => A(e) && e !== "NaN" && e[0] !== "-" && "" + parseInt(e, 10) === e, bn = (e) => {
const t = /* @__PURE__ */ Object.create(null);
return (n) => t[n] || (t[n] = e(n));
-}, ln = cn((e) => e.charAt(0).toUpperCase() + e.slice(1)), X = (e, t) => !Object.is(e, t), an = (e, t, n, r = !1) => {
+}, En = bn((e) => e.charAt(0).toUpperCase() + e.slice(1)), X = (e, t) => !Object.is(e, t), wn = (e, t, n, r = !1) => {
Object.defineProperty(e, t, {
configurable: !0,
enumerable: !1,
@@ -23,361 +23,621 @@ const P = bt.NODE_ENV !== "production" ? Object.freeze({}) : {}, kt = bt.NODE_EN
value: n
});
};
-let ot;
-const Nt = () => ot || (ot = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : typeof global < "u" ? global : {});
-function Be(e) {
- if (g(e)) {
+let gt;
+const Tt = () => gt || (gt = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : typeof global < "u" ? global : {});
+function tt(e) {
+ if (b(e)) {
const t = {};
for (let n = 0; n < e.length; n++) {
- const r = e[n], o = $(r) ? pn(r) : Be(r);
- if (o)
- for (const s in o)
- t[s] = o[s];
+ const r = e[n], s = A(r) ? xn(r) : tt(r);
+ if (s)
+ for (const o in s)
+ t[o] = s[o];
}
return t;
- } else if ($(e) || S(e))
+ } else if (A(e) || y(e))
return e;
}
-const un = /;(?![^(]*\))/g, fn = /:([^]+)/, dn = /\/\*[^]*?\*\//g;
-function pn(e) {
+const Nn = /;(?![^(]*\))/g, Sn = /:([^]+)/, On = /\/\*[^]*?\*\//g;
+function xn(e) {
const t = {};
- return e.replace(dn, "").split(un).forEach((n) => {
+ return e.replace(On, "").split(Nn).forEach((n) => {
if (n) {
- const r = n.split(fn);
+ const r = n.split(Sn);
r.length > 1 && (t[r[0].trim()] = r[1].trim());
}
}), t;
}
-function qe(e) {
+function nt(e) {
let t = "";
- if ($(e))
+ if (A(e))
t = e;
- else if (g(e))
+ else if (b(e))
for (let n = 0; n < e.length; n++) {
- const r = qe(e[n]);
+ const r = nt(e[n]);
r && (t += r + " ");
}
- else if (S(e))
+ else if (y(e))
for (const n in e)
e[n] && (t += n + " ");
return t.trim();
}
-var I = {};
-function re(e, ...t) {
+var E = {};
+function B(e, ...t) {
console.warn(`[Vue warn] ${e}`, ...t);
}
-let hn;
-function _n(e, t = hn) {
- t && t.active && t.effects.push(e);
-}
-let te;
-class gn {
- constructor(t, n, r, o) {
- this.fn = t, this.trigger = n, this.scheduler = r, this.active = !0, this.deps = [], this._dirtyLevel = 4, this._trackId = 0, this._runnings = 0, this._shouldSchedule = !1, this._depsLength = 0, _n(this, o);
+let _;
+const Ke = /* @__PURE__ */ new WeakSet();
+class vn {
+ constructor(t) {
+ this.fn = t, this.deps = void 0, this.depsTail = void 0, this.flags = 5, this.nextEffect = void 0, this.cleanup = void 0, this.scheduler = void 0;
}
- get dirty() {
- if (this._dirtyLevel === 2 || this._dirtyLevel === 3) {
- this._dirtyLevel = 1, xe();
- for (let t = 0; t < this._depsLength; t++) {
- const n = this.deps[t];
- if (n.computed && (mn(n.computed), this._dirtyLevel >= 4))
- break;
- }
- this._dirtyLevel === 1 && (this._dirtyLevel = 0), Ie();
- }
- return this._dirtyLevel >= 4;
+ pause() {
+ this.flags |= 64;
}
- set dirty(t) {
- this._dirtyLevel = t ? 4 : 0;
+ resume() {
+ this.flags & 64 && (this.flags &= -65, Ke.has(this) && (Ke.delete(this), this.trigger()));
+ }
+ /**
+ * @internal
+ */
+ notify() {
+ this.flags & 2 && !(this.flags & 32) || this.flags & 8 || (this.flags |= 8, this.nextEffect = le, le = this);
}
run() {
- if (this._dirtyLevel = 0, !this.active)
+ if (!(this.flags & 1))
return this.fn();
- let t = B, n = te;
+ this.flags |= 2, _t(this), Rt(this);
+ const t = _, n = P;
+ _ = this, P = !0;
try {
- return B = !0, te = this, this._runnings++, st(this), this.fn();
+ return this.fn();
} finally {
- it(this), this._runnings--, te = n, B = t;
+ E.NODE_ENV !== "production" && _ !== this && B(
+ "Active effect was not restored correctly - this is likely a Vue internal bug."
+ ), Ct(this), _ = t, P = n, this.flags &= -3;
}
}
stop() {
- this.active && (st(this), it(this), this.onStop && this.onStop(), this.active = !1);
+ if (this.flags & 1) {
+ for (let t = this.deps; t; t = t.nextDep)
+ ot(t);
+ this.deps = this.depsTail = void 0, _t(this), this.onStop && this.onStop(), this.flags &= -2;
+ }
+ }
+ trigger() {
+ this.flags & 64 ? Ke.add(this) : this.scheduler ? this.scheduler() : this.runIfDirty();
+ }
+ /**
+ * @internal
+ */
+ runIfDirty() {
+ Ye(this) && this.run();
+ }
+ get dirty() {
+ return Ye(this);
}
}
-function mn(e) {
- return e.value;
+let It = 0, le;
+function rt() {
+ It++;
}
-function st(e) {
- e._trackId++, e._depsLength = 0;
+function st() {
+ if (--It > 0)
+ return;
+ let e;
+ for (; le; ) {
+ let t = le;
+ for (le = void 0; t; ) {
+ const n = t.nextEffect;
+ if (t.nextEffect = void 0, t.flags &= -9, t.flags & 1)
+ try {
+ t.trigger();
+ } catch (r) {
+ e || (e = r);
+ }
+ t = n;
+ }
+ }
+ if (e) throw e;
}
-function it(e) {
- if (e.deps.length > e._depsLength) {
- for (let t = e._depsLength; t < e.deps.length; t++)
- Ot(e.deps[t], e);
- e.deps.length = e._depsLength;
+function Rt(e) {
+ for (let t = e.deps; t; t = t.nextDep)
+ t.version = -1, t.prevActiveLink = t.dep.activeLink, t.dep.activeLink = t;
+}
+function Ct(e) {
+ let t, n = e.depsTail;
+ for (let r = n; r; r = r.prevDep)
+ r.version === -1 ? (r === n && (n = r.prevDep), ot(r), Dn(r)) : t = r, r.dep.activeLink = r.prevActiveLink, r.prevActiveLink = void 0;
+ e.deps = t, e.depsTail = n;
+}
+function Ye(e) {
+ for (let t = e.deps; t; t = t.nextDep)
+ if (t.dep.version !== t.version || t.dep.computed && yn(t.dep.computed) === !1 || t.dep.version !== t.version)
+ return !0;
+ return !!e._dirty;
+}
+function yn(e) {
+ if (e.flags & 2)
+ return !1;
+ if (e.flags & 4 && !(e.flags & 16) || (e.flags &= -17, e.globalVersion === ye))
+ return;
+ e.globalVersion = ye;
+ const t = e.dep;
+ if (e.flags |= 2, t.version > 0 && !e.isSSR && !Ye(e)) {
+ e.flags &= -3;
+ return;
+ }
+ const n = _, r = P;
+ _ = e, P = !0;
+ try {
+ Rt(e);
+ const s = e.fn(e._value);
+ (t.version === 0 || X(s, e._value)) && (e._value = s, t.version++);
+ } catch (s) {
+ throw t.version++, s;
+ } finally {
+ _ = n, P = r, Ct(e), e.flags &= -3;
}
}
-function Ot(e, t) {
- const n = e.get(t);
- n !== void 0 && t._trackId !== n && (e.delete(t), e.size === 0 && e.cleanup());
+function ot(e) {
+ const { dep: t, prevSub: n, nextSub: r } = e;
+ if (n && (n.nextSub = r, e.prevSub = void 0), r && (r.prevSub = n, e.nextSub = void 0), t.subs === e && (t.subs = n), !t.subs && t.computed) {
+ t.computed.flags &= -5;
+ for (let s = t.computed.deps; s; s = s.nextDep)
+ ot(s);
+ }
}
-let B = !0, Ae = 0;
-const St = [];
-function xe() {
- St.push(B), B = !1;
+function Dn(e) {
+ const { prevDep: t, nextDep: n } = e;
+ t && (t.nextDep = n, e.prevDep = void 0), n && (n.prevDep = t, e.nextDep = void 0);
}
-function Ie() {
- const e = St.pop();
- B = e === void 0 ? !0 : e;
+let P = !0;
+const $t = [];
+function Ae() {
+ $t.push(P), P = !1;
}
-function Je() {
- Ae++;
+function Me() {
+ const e = $t.pop();
+ P = e === void 0 ? !0 : e;
}
-function Ge() {
- for (Ae--; !Ae && Fe.length; )
- Fe.shift()();
+function _t(e) {
+ const { cleanup: t } = e;
+ if (e.cleanup = void 0, t) {
+ const n = _;
+ _ = void 0;
+ try {
+ t();
+ } finally {
+ _ = n;
+ }
+ }
}
-function En(e, t, n) {
- var r;
- if (t.get(e) !== e._trackId) {
- t.set(e, e._trackId);
- const o = e.deps[e._depsLength];
- o !== t ? (o && Ot(o, e), e.deps[e._depsLength++] = t) : e._depsLength++, I.NODE_ENV !== "production" && ((r = e.onTrack) == null || r.call(e, T({ effect: e }, n)));
+let ye = 0;
+class Vn {
+ constructor(t) {
+ this.computed = t, this.version = 0, this.activeLink = void 0, this.subs = void 0, E.NODE_ENV !== "production" && (this.subsHead = void 0);
+ }
+ track(t) {
+ if (!_ || !P || _ === this.computed)
+ return;
+ let n = this.activeLink;
+ if (n === void 0 || n.sub !== _)
+ n = this.activeLink = {
+ dep: this,
+ sub: _,
+ version: this.version,
+ nextDep: void 0,
+ prevDep: void 0,
+ nextSub: void 0,
+ prevSub: void 0,
+ prevActiveLink: void 0
+ }, _.deps ? (n.prevDep = _.depsTail, _.depsTail.nextDep = n, _.depsTail = n) : _.deps = _.depsTail = n, _.flags & 4 && Pt(n);
+ else if (n.version === -1 && (n.version = this.version, n.nextDep)) {
+ const r = n.nextDep;
+ r.prevDep = n.prevDep, n.prevDep && (n.prevDep.nextDep = r), n.prevDep = _.depsTail, n.nextDep = void 0, _.depsTail.nextDep = n, _.depsTail = n, _.deps === n && (_.deps = r);
+ }
+ return E.NODE_ENV !== "production" && _.onTrack && _.onTrack(
+ C(
+ {
+ effect: _
+ },
+ t
+ )
+ ), n;
+ }
+ trigger(t) {
+ this.version++, ye++, this.notify(t);
+ }
+ notify(t) {
+ rt();
+ try {
+ if (E.NODE_ENV !== "production")
+ for (let n = this.subsHead; n; n = n.nextSub)
+ E.NODE_ENV !== "production" && n.sub.onTrigger && !(n.sub.flags & 8) && n.sub.onTrigger(
+ C(
+ {
+ effect: n.sub
+ },
+ t
+ )
+ );
+ for (let n = this.subs; n; n = n.prevSub)
+ n.sub.notify();
+ } finally {
+ st();
+ }
}
}
-const Fe = [];
-function bn(e, t, n) {
- var r;
- Je();
- for (const o of e.keys()) {
- let s;
- o._dirtyLevel < t && (s ?? (s = e.get(o) === o._trackId)) && (o._shouldSchedule || (o._shouldSchedule = o._dirtyLevel === 0), o._dirtyLevel = t), o._shouldSchedule && (s ?? (s = e.get(o) === o._trackId)) && (I.NODE_ENV !== "production" && ((r = o.onTrigger) == null || r.call(o, T({ effect: o }, n))), o.trigger(), (!o._runnings || o.allowRecurse) && o._dirtyLevel !== 2 && (o._shouldSchedule = !1, o.scheduler && Fe.push(o.scheduler)));
- }
- Ge();
-}
-const wn = (e, t) => {
- const n = /* @__PURE__ */ new Map();
- return n.cleanup = e, n.computed = t, n;
-}, je = /* @__PURE__ */ new WeakMap(), q = Symbol(I.NODE_ENV !== "production" ? "iterate" : ""), Le = Symbol(I.NODE_ENV !== "production" ? "Map key iterate" : "");
-function y(e, t, n) {
- if (B && te) {
- let r = je.get(e);
- r || je.set(e, r = /* @__PURE__ */ new Map());
- let o = r.get(n);
- o || r.set(n, o = wn(() => r.delete(n))), En(
- te,
- o,
- I.NODE_ENV !== "production" ? {
- target: e,
- type: t,
- key: n
- } : void 0
- );
+function Pt(e) {
+ const t = e.dep.computed;
+ if (t && !e.dep.subs) {
+ t.flags |= 20;
+ for (let r = t.deps; r; r = r.nextDep)
+ Pt(r);
+ }
+ const n = e.dep.subs;
+ n !== e && (e.prevSub = n, n && (n.nextSub = e)), E.NODE_ENV !== "production" && e.dep.subsHead === void 0 && (e.dep.subsHead = e), e.dep.subs = e;
+}
+const Ge = /* @__PURE__ */ new WeakMap(), Q = Symbol(
+ E.NODE_ENV !== "production" ? "Object iterate" : ""
+), Qe = Symbol(
+ E.NODE_ENV !== "production" ? "Map keys iterate" : ""
+), ue = Symbol(
+ E.NODE_ENV !== "production" ? "Array iterate" : ""
+);
+function x(e, t, n) {
+ if (P && _) {
+ let r = Ge.get(e);
+ r || Ge.set(e, r = /* @__PURE__ */ new Map());
+ let s = r.get(n);
+ s || r.set(n, s = new Vn()), E.NODE_ENV !== "production" ? s.track({
+ target: e,
+ type: t,
+ key: n
+ }) : s.track();
}
}
-function j(e, t, n, r, o, s) {
- const i = je.get(e);
- if (!i)
+function U(e, t, n, r, s, o) {
+ const i = Ge.get(e);
+ if (!i) {
+ ye++;
return;
- let c = [];
+ }
+ let l = [];
if (t === "clear")
- c = [...i.values()];
- else if (n === "length" && g(e)) {
- const a = Number(r);
- i.forEach((f, _) => {
- (_ === "length" || !se(_) && _ >= a) && c.push(f);
- });
- } else
- switch (n !== void 0 && c.push(i.get(n)), t) {
- case "add":
- g(e) ? Ue(n) && c.push(i.get("length")) : (c.push(i.get(q)), Y(e) && c.push(i.get(Le)));
- break;
- case "delete":
- g(e) || (c.push(i.get(q)), Y(e) && c.push(i.get(Le)));
- break;
- case "set":
- Y(e) && c.push(i.get(q));
- break;
+ l = [...i.values()];
+ else {
+ const a = b(e), p = a && et(n);
+ if (a && n === "length") {
+ const f = Number(r);
+ i.forEach((c, u) => {
+ (u === "length" || u === ue || !pe(u) && u >= f) && l.push(c);
+ });
+ } else {
+ const f = (c) => c && l.push(c);
+ switch (n !== void 0 && f(i.get(n)), p && f(i.get(ue)), t) {
+ case "add":
+ a ? p && f(i.get("length")) : (f(i.get(Q)), te(e) && f(i.get(Qe)));
+ break;
+ case "delete":
+ a || (f(i.get(Q)), te(e) && f(i.get(Qe)));
+ break;
+ case "set":
+ te(e) && f(i.get(Q));
+ break;
+ }
}
- Je();
- for (const a of c)
- a && bn(
- a,
- 4,
- I.NODE_ENV !== "production" ? {
- target: e,
- type: t,
- key: n,
- newValue: r,
- oldValue: o,
- oldTarget: s
- } : void 0
- );
- Ge();
-}
-const Nn = /* @__PURE__ */ Xt("__proto__,__v_isRef,__isVue"), yt = new Set(
- /* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((e) => e !== "arguments" && e !== "caller").map((e) => Symbol[e]).filter(se)
-), ct = /* @__PURE__ */ On();
-function On() {
- const e = {};
- return ["includes", "indexOf", "lastIndexOf"].forEach((t) => {
- e[t] = function(...n) {
- const r = p(this);
- for (let s = 0, i = this.length; s < i; s++)
- y(r, "get", s + "");
- const o = r[t](...n);
- return o === -1 || o === !1 ? r[t](...n.map(p)) : o;
- };
- }), ["push", "pop", "shift", "unshift", "splice"].forEach((t) => {
- e[t] = function(...n) {
- xe(), Je();
- const r = p(this)[t].apply(this, n);
- return Ge(), Ie(), r;
- };
- }), e;
+ }
+ rt();
+ for (const a of l)
+ E.NODE_ENV !== "production" ? a.trigger({
+ target: e,
+ type: t,
+ key: n,
+ newValue: r,
+ oldValue: s,
+ oldTarget: o
+ }) : a.trigger();
+ st();
+}
+function k(e) {
+ const t = g(e);
+ return t === e ? t : (x(t, "iterate", ue), T(e) ? t : t.map(V));
}
-function Sn(e) {
- se(e) || (e = String(e));
- const t = p(this);
- return y(t, "has", e), t.hasOwnProperty(e);
+function it(e) {
+ return x(e = g(e), "iterate", ue), e;
}
-class xt {
+const Tn = {
+ __proto__: null,
+ [Symbol.iterator]() {
+ return ze(this, Symbol.iterator, V);
+ },
+ concat(...e) {
+ return k(this).concat(
+ ...e.map((t) => b(t) ? k(t) : t)
+ );
+ },
+ entries() {
+ return ze(this, "entries", (e) => (e[1] = V(e[1]), e));
+ },
+ every(e, t) {
+ return j(this, "every", e, t, void 0, arguments);
+ },
+ filter(e, t) {
+ return j(this, "filter", e, t, (n) => n.map(V), arguments);
+ },
+ find(e, t) {
+ return j(this, "find", e, t, V, arguments);
+ },
+ findIndex(e, t) {
+ return j(this, "findIndex", e, t, void 0, arguments);
+ },
+ findLast(e, t) {
+ return j(this, "findLast", e, t, V, arguments);
+ },
+ findLastIndex(e, t) {
+ return j(this, "findLastIndex", e, t, void 0, arguments);
+ },
+ // flat, flatMap could benefit from ARRAY_ITERATE but are not straight-forward to implement
+ forEach(e, t) {
+ return j(this, "forEach", e, t, void 0, arguments);
+ },
+ includes(...e) {
+ return Le(this, "includes", e);
+ },
+ indexOf(...e) {
+ return Le(this, "indexOf", e);
+ },
+ join(e) {
+ return k(this).join(e);
+ },
+ // keys() iterator only reads `length`, no optimisation required
+ lastIndexOf(...e) {
+ return Le(this, "lastIndexOf", e);
+ },
+ map(e, t) {
+ return j(this, "map", e, t, void 0, arguments);
+ },
+ pop() {
+ return oe(this, "pop");
+ },
+ push(...e) {
+ return oe(this, "push", e);
+ },
+ reduce(e, ...t) {
+ return mt(this, "reduce", e, t);
+ },
+ reduceRight(e, ...t) {
+ return mt(this, "reduceRight", e, t);
+ },
+ shift() {
+ return oe(this, "shift");
+ },
+ // slice could use ARRAY_ITERATE but also seems to beg for range tracking
+ some(e, t) {
+ return j(this, "some", e, t, void 0, arguments);
+ },
+ splice(...e) {
+ return oe(this, "splice", e);
+ },
+ toReversed() {
+ return k(this).toReversed();
+ },
+ toSorted(e) {
+ return k(this).toSorted(e);
+ },
+ toSpliced(...e) {
+ return k(this).toSpliced(...e);
+ },
+ unshift(...e) {
+ return oe(this, "unshift", e);
+ },
+ values() {
+ return ze(this, "values", V);
+ }
+};
+function ze(e, t, n) {
+ const r = it(e), s = r[t]();
+ return r !== e && !T(e) && (s._next = s.next, s.next = () => {
+ const o = s._next();
+ return o.value && (o.value = n(o.value)), o;
+ }), s;
+}
+const In = Array.prototype;
+function j(e, t, n, r, s, o) {
+ const i = it(e), l = i !== e && !T(e), a = i[t];
+ if (a !== In[t]) {
+ const c = a.apply(e, o);
+ return l ? V(c) : c;
+ }
+ let p = n;
+ i !== e && (l ? p = function(c, u) {
+ return n.call(this, V(c), u, e);
+ } : n.length > 2 && (p = function(c, u) {
+ return n.call(this, c, u, e);
+ }));
+ const f = a.call(i, p, r);
+ return l && s ? s(f) : f;
+}
+function mt(e, t, n, r) {
+ const s = it(e);
+ let o = n;
+ return s !== e && (T(e) ? n.length > 3 && (o = function(i, l, a) {
+ return n.call(this, i, l, a, e);
+ }) : o = function(i, l, a) {
+ return n.call(this, i, V(l), a, e);
+ }), s[t](o, ...r);
+}
+function Le(e, t, n) {
+ const r = g(e);
+ x(r, "iterate", ue);
+ const s = r[t](...n);
+ return (s === -1 || s === !1) && De(n[0]) ? (n[0] = g(n[0]), r[t](...n)) : s;
+}
+function oe(e, t, n = []) {
+ Ae(), rt();
+ const r = g(e)[t].apply(e, n);
+ return st(), Me(), r;
+}
+const Rn = /* @__PURE__ */ un("__proto__,__v_isRef,__isVue"), At = new Set(
+ /* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((e) => e !== "arguments" && e !== "caller").map((e) => Symbol[e]).filter(pe)
+);
+function Cn(e) {
+ pe(e) || (e = String(e));
+ const t = g(this);
+ return x(t, "has", e), t.hasOwnProperty(e);
+}
+class Mt {
constructor(t = !1, n = !1) {
this._isReadonly = t, this._isShallow = n;
}
get(t, n, r) {
- const o = this._isReadonly, s = this._isShallow;
+ const s = this._isReadonly, o = this._isShallow;
if (n === "__v_isReactive")
- return !o;
+ return !s;
if (n === "__v_isReadonly")
- return o;
- if (n === "__v_isShallow")
return s;
+ if (n === "__v_isShallow")
+ return o;
if (n === "__v_raw")
- return r === (o ? s ? $t : Vt : s ? An : Ct).get(t) || // receiver is not the reactive proxy, but has the same prototype
- // this means the reciever is a user proxy of the reactive proxy
+ return r === (s ? o ? Kt : Wt : o ? Bn : Ht).get(t) || // receiver is not the reactive proxy, but has the same prototype
+ // this means the receiver is a user proxy of the reactive proxy
Object.getPrototypeOf(t) === Object.getPrototypeOf(r) ? t : void 0;
- const i = g(t);
- if (!o) {
- if (i && E(ct, n))
- return Reflect.get(ct, n, r);
+ const i = b(t);
+ if (!s) {
+ let a;
+ if (i && (a = Tn[n]))
+ return a;
if (n === "hasOwnProperty")
- return Sn;
+ return Cn;
}
- const c = Reflect.get(t, n, r);
- return (se(n) ? yt.has(n) : Nn(n)) || (o || y(t, "get", n), s) ? c : R(c) ? i && Ue(n) ? c : c.value : S(c) ? o ? Dt(c) : Tt(c) : c;
+ const l = Reflect.get(
+ t,
+ n,
+ // if this is a proxy wrapping a ref, return methods using the raw ref
+ // as receiver so that we don't have to call `toRaw` on the ref in all
+ // its class methods
+ D(t) ? t : r
+ );
+ return (pe(n) ? At.has(n) : Rn(n)) || (s || x(t, "get", n), o) ? l : D(l) ? i && et(n) ? l : l.value : y(l) ? s ? Lt(l) : zt(l) : l;
}
}
-class yn extends xt {
+class $n extends Mt {
constructor(t = !1) {
super(!1, t);
}
- set(t, n, r, o) {
- let s = t[n];
+ set(t, n, r, s) {
+ let o = t[n];
if (!this._isShallow) {
- const a = H(s);
- if (!L(r) && !H(r) && (s = p(s), r = p(r)), !g(t) && R(s) && !R(r))
- return a ? !1 : (s.value = r, !0);
+ const a = J(o);
+ if (!T(r) && !J(r) && (o = g(o), r = g(r)), !b(t) && D(o) && !D(r))
+ return a ? !1 : (o.value = r, !0);
}
- const i = g(t) && Ue(n) ? Number(n) < t.length : E(t, n), c = Reflect.set(t, n, r, o);
- return t === p(o) && (i ? X(r, s) && j(t, "set", n, r, s) : j(t, "add", n, r)), c;
+ const i = b(t) && et(n) ? Number(n) < t.length : w(t, n), l = Reflect.set(
+ t,
+ n,
+ r,
+ D(t) ? t : s
+ );
+ return t === g(s) && (i ? X(r, o) && U(t, "set", n, r, o) : U(t, "add", n, r)), l;
}
deleteProperty(t, n) {
- const r = E(t, n), o = t[n], s = Reflect.deleteProperty(t, n);
- return s && r && j(t, "delete", n, void 0, o), s;
+ const r = w(t, n), s = t[n], o = Reflect.deleteProperty(t, n);
+ return o && r && U(t, "delete", n, void 0, s), o;
}
has(t, n) {
const r = Reflect.has(t, n);
- return (!se(n) || !yt.has(n)) && y(t, "has", n), r;
+ return (!pe(n) || !At.has(n)) && x(t, "has", n), r;
}
ownKeys(t) {
- return y(
+ return x(
t,
"iterate",
- g(t) ? "length" : q
+ b(t) ? "length" : Q
), Reflect.ownKeys(t);
}
}
-class It extends xt {
+class Ft extends Mt {
constructor(t = !1) {
super(!0, t);
}
set(t, n) {
- return I.NODE_ENV !== "production" && re(
+ return E.NODE_ENV !== "production" && B(
`Set operation on key "${String(n)}" failed: target is readonly.`,
t
), !0;
}
deleteProperty(t, n) {
- return I.NODE_ENV !== "production" && re(
+ return E.NODE_ENV !== "production" && B(
`Delete operation on key "${String(n)}" failed: target is readonly.`,
t
), !0;
}
}
-const xn = /* @__PURE__ */ new yn(), In = /* @__PURE__ */ new It(), Rn = /* @__PURE__ */ new It(!0), Ye = (e) => e, Re = (e) => Reflect.getPrototypeOf(e);
-function ce(e, t, n = !1, r = !1) {
+const Pn = /* @__PURE__ */ new $n(), An = /* @__PURE__ */ new Ft(), Mn = /* @__PURE__ */ new Ft(!0), ct = (e) => e, Fe = (e) => Reflect.getPrototypeOf(e);
+function ge(e, t, n = !1, r = !1) {
e = e.__v_raw;
- const o = p(e), s = p(t);
- n || (X(t, s) && y(o, "get", t), y(o, "get", s));
- const { has: i } = Re(o), c = r ? Ye : n ? ke : Xe;
- if (i.call(o, t))
- return c(e.get(t));
- if (i.call(o, s))
- return c(e.get(s));
- e !== o && e.get(t);
-}
-function le(e, t = !1) {
- const n = this.__v_raw, r = p(n), o = p(e);
- return t || (X(e, o) && y(r, "has", e), y(r, "has", o)), e === o ? n.has(e) : n.has(e) || n.has(o);
-}
-function ae(e, t = !1) {
- return e = e.__v_raw, !t && y(p(e), "iterate", q), Reflect.get(e, "size", e);
-}
-function lt(e, t = !1) {
- !t && !L(e) && !H(e) && (e = p(e));
- const n = p(this);
- return Re(n).has.call(n, e) || (n.add(e), j(n, "add", e, e)), this;
-}
-function at(e, t, n = !1) {
- !n && !L(t) && !H(t) && (t = p(t));
- const r = p(this), { has: o, get: s } = Re(r);
- let i = o.call(r, e);
- i ? I.NODE_ENV !== "production" && Rt(r, o, e) : (e = p(e), i = o.call(r, e));
- const c = s.call(r, e);
- return r.set(e, t), i ? X(t, c) && j(r, "set", e, t, c) : j(r, "add", e, t), this;
-}
-function ut(e) {
- const t = p(this), { has: n, get: r } = Re(t);
- let o = n.call(t, e);
- o ? I.NODE_ENV !== "production" && Rt(t, n, e) : (e = p(e), o = n.call(t, e));
- const s = r ? r.call(t, e) : void 0, i = t.delete(e);
- return o && j(t, "delete", e, void 0, s), i;
-}
-function ft() {
- const e = p(this), t = e.size !== 0, n = I.NODE_ENV !== "production" ? Y(e) ? new Map(e) : new Set(e) : void 0, r = e.clear();
- return t && j(e, "clear", void 0, void 0, n), r;
-}
-function ue(e, t) {
- return function(r, o) {
- const s = this, i = s.__v_raw, c = p(i), a = t ? Ye : e ? ke : Xe;
- return !e && y(c, "iterate", q), i.forEach((f, _) => r.call(o, a(f), a(_), s));
+ const s = g(e), o = g(t);
+ n || (X(t, o) && x(s, "get", t), x(s, "get", o));
+ const { has: i } = Fe(s), l = r ? ct : n ? ut : V;
+ if (i.call(s, t))
+ return l(e.get(t));
+ if (i.call(s, o))
+ return l(e.get(o));
+ e !== s && e.get(t);
+}
+function _e(e, t = !1) {
+ const n = this.__v_raw, r = g(n), s = g(e);
+ return t || (X(e, s) && x(r, "has", e), x(r, "has", s)), e === s ? n.has(e) : n.has(e) || n.has(s);
+}
+function me(e, t = !1) {
+ return e = e.__v_raw, !t && x(g(e), "iterate", Q), Reflect.get(e, "size", e);
+}
+function bt(e, t = !1) {
+ !t && !T(e) && !J(e) && (e = g(e));
+ const n = g(this);
+ return Fe(n).has.call(n, e) || (n.add(e), U(n, "add", e, e)), this;
+}
+function Et(e, t, n = !1) {
+ !n && !T(t) && !J(t) && (t = g(t));
+ const r = g(this), { has: s, get: o } = Fe(r);
+ let i = s.call(r, e);
+ i ? E.NODE_ENV !== "production" && jt(r, s, e) : (e = g(e), i = s.call(r, e));
+ const l = o.call(r, e);
+ return r.set(e, t), i ? X(t, l) && U(r, "set", e, t, l) : U(r, "add", e, t), this;
+}
+function wt(e) {
+ const t = g(this), { has: n, get: r } = Fe(t);
+ let s = n.call(t, e);
+ s ? E.NODE_ENV !== "production" && jt(t, n, e) : (e = g(e), s = n.call(t, e));
+ const o = r ? r.call(t, e) : void 0, i = t.delete(e);
+ return s && U(t, "delete", e, void 0, o), i;
+}
+function Nt() {
+ const e = g(this), t = e.size !== 0, n = E.NODE_ENV !== "production" ? te(e) ? new Map(e) : new Set(e) : void 0, r = e.clear();
+ return t && U(e, "clear", void 0, void 0, n), r;
+}
+function be(e, t) {
+ return function(r, s) {
+ const o = this, i = o.__v_raw, l = g(i), a = t ? ct : e ? ut : V;
+ return !e && x(l, "iterate", Q), i.forEach((p, f) => r.call(s, a(p), a(f), o));
};
}
-function fe(e, t, n) {
+function Ee(e, t, n) {
return function(...r) {
- const o = this.__v_raw, s = p(o), i = Y(s), c = e === "entries" || e === Symbol.iterator && i, a = e === "keys" && i, f = o[e](...r), _ = n ? Ye : t ? ke : Xe;
- return !t && y(
- s,
+ const s = this.__v_raw, o = g(s), i = te(o), l = e === "entries" || e === Symbol.iterator && i, a = e === "keys" && i, p = s[e](...r), f = n ? ct : t ? ut : V;
+ return !t && x(
+ o,
"iterate",
- a ? Le : q
+ a ? Qe : Q
), {
// iterator protocol
next() {
- const { value: l, done: d } = f.next();
- return d ? { value: l, done: d } : {
- value: c ? [_(l[0]), _(l[1])] : _(l),
- done: d
+ const { value: c, done: u } = p.next();
+ return u ? { value: c, done: u } : {
+ value: l ? [f(c[0]), f(c[1])] : f(c),
+ done: u
};
},
// iterable protocol
@@ -387,88 +647,88 @@ function fe(e, t, n) {
};
};
}
-function M(e) {
+function K(e) {
return function(...t) {
- if (I.NODE_ENV !== "production") {
+ if (E.NODE_ENV !== "production") {
const n = t[0] ? `on key "${t[0]}" ` : "";
- re(
- `${ln(e)} operation ${n}failed: target is readonly.`,
- p(this)
+ B(
+ `${En(e)} operation ${n}failed: target is readonly.`,
+ g(this)
);
}
return e === "delete" ? !1 : e === "clear" ? void 0 : this;
};
}
-function Cn() {
+function Fn() {
const e = {
- get(s) {
- return ce(this, s);
+ get(o) {
+ return ge(this, o);
},
get size() {
- return ae(this);
+ return me(this);
},
- has: le,
- add: lt,
- set: at,
- delete: ut,
- clear: ft,
- forEach: ue(!1, !1)
+ has: _e,
+ add: bt,
+ set: Et,
+ delete: wt,
+ clear: Nt,
+ forEach: be(!1, !1)
}, t = {
- get(s) {
- return ce(this, s, !1, !0);
+ get(o) {
+ return ge(this, o, !1, !0);
},
get size() {
- return ae(this);
+ return me(this);
},
- has: le,
- add(s) {
- return lt.call(this, s, !0);
+ has: _e,
+ add(o) {
+ return bt.call(this, o, !0);
},
- set(s, i) {
- return at.call(this, s, i, !0);
+ set(o, i) {
+ return Et.call(this, o, i, !0);
},
- delete: ut,
- clear: ft,
- forEach: ue(!1, !0)
+ delete: wt,
+ clear: Nt,
+ forEach: be(!1, !0)
}, n = {
- get(s) {
- return ce(this, s, !0);
+ get(o) {
+ return ge(this, o, !0);
},
get size() {
- return ae(this, !0);
+ return me(this, !0);
},
- has(s) {
- return le.call(this, s, !0);
+ has(o) {
+ return _e.call(this, o, !0);
},
- add: M("add"),
- set: M("set"),
- delete: M("delete"),
- clear: M("clear"),
- forEach: ue(!0, !1)
+ add: K("add"),
+ set: K("set"),
+ delete: K("delete"),
+ clear: K("clear"),
+ forEach: be(!0, !1)
}, r = {
- get(s) {
- return ce(this, s, !0, !0);
+ get(o) {
+ return ge(this, o, !0, !0);
},
get size() {
- return ae(this, !0);
+ return me(this, !0);
},
- has(s) {
- return le.call(this, s, !0);
+ has(o) {
+ return _e.call(this, o, !0);
},
- add: M("add"),
- set: M("set"),
- delete: M("delete"),
- clear: M("clear"),
- forEach: ue(!0, !0)
+ add: K("add"),
+ set: K("set"),
+ delete: K("delete"),
+ clear: K("clear"),
+ forEach: be(!0, !0)
};
return [
"keys",
"values",
"entries",
Symbol.iterator
- ].forEach((s) => {
- e[s] = fe(s, !1, !1), n[s] = fe(s, !0, !1), t[s] = fe(s, !1, !0), r[s] = fe(
- s,
+ ].forEach((o) => {
+ e[o] = Ee(o, !1, !1), n[o] = Ee(o, !0, !1), t[o] = Ee(o, !1, !0), r[o] = Ee(
+ o,
!0,
!0
);
@@ -480,37 +740,37 @@ function Cn() {
];
}
const [
- Vn,
- $n,
- Tn,
- Dn
-] = /* @__PURE__ */ Cn();
-function Qe(e, t) {
- const n = t ? e ? Dn : Tn : e ? $n : Vn;
- return (r, o, s) => o === "__v_isReactive" ? !e : o === "__v_isReadonly" ? e : o === "__v_raw" ? r : Reflect.get(
- E(n, o) && o in r ? n : r,
- o,
- s
+ jn,
+ Hn,
+ Wn,
+ Kn
+] = /* @__PURE__ */ Fn();
+function lt(e, t) {
+ const n = t ? e ? Kn : Wn : e ? Hn : jn;
+ return (r, s, o) => s === "__v_isReactive" ? !e : s === "__v_isReadonly" ? e : s === "__v_raw" ? r : Reflect.get(
+ w(n, s) && s in r ? n : r,
+ s,
+ o
);
}
-const Pn = {
- get: /* @__PURE__ */ Qe(!1, !1)
-}, vn = {
- get: /* @__PURE__ */ Qe(!0, !1)
-}, Mn = {
- get: /* @__PURE__ */ Qe(!0, !0)
+const zn = {
+ get: /* @__PURE__ */ lt(!1, !1)
+}, Ln = {
+ get: /* @__PURE__ */ lt(!0, !1)
+}, Un = {
+ get: /* @__PURE__ */ lt(!0, !0)
};
-function Rt(e, t, n) {
- const r = p(n);
+function jt(e, t, n) {
+ const r = g(n);
if (r !== n && t.call(e, r)) {
- const o = wt(e);
- re(
- `Reactive ${o} contains both the raw and reactive versions of the same object${o === "Map" ? " as keys" : ""}, which can lead to inconsistencies. Avoid differentiating between the raw and reactive versions of an object and only use the reactive version if possible.`
+ const s = Vt(e);
+ B(
+ `Reactive ${s} contains both the raw and reactive versions of the same object${s === "Map" ? " as keys" : ""}, which can lead to inconsistencies. Avoid differentiating between the raw and reactive versions of an object and only use the reactive version if possible.`
);
}
}
-const Ct = /* @__PURE__ */ new WeakMap(), An = /* @__PURE__ */ new WeakMap(), Vt = /* @__PURE__ */ new WeakMap(), $t = /* @__PURE__ */ new WeakMap();
-function Fn(e) {
+const Ht = /* @__PURE__ */ new WeakMap(), Bn = /* @__PURE__ */ new WeakMap(), Wt = /* @__PURE__ */ new WeakMap(), Kt = /* @__PURE__ */ new WeakMap();
+function Jn(e) {
switch (e) {
case "Object":
case "Array":
@@ -524,134 +784,254 @@ function Fn(e) {
return 0;
}
}
-function jn(e) {
- return e.__v_skip || !Object.isExtensible(e) ? 0 : Fn(wt(e));
+function qn(e) {
+ return e.__v_skip || !Object.isExtensible(e) ? 0 : Jn(Vt(e));
}
-function Tt(e) {
- return H(e) ? e : Ze(
+function zt(e) {
+ return J(e) ? e : at(
e,
!1,
- xn,
Pn,
- Ct
+ zn,
+ Ht
);
}
-function Dt(e) {
- return Ze(
+function Lt(e) {
+ return at(
e,
!0,
- In,
- vn,
- Vt
+ An,
+ Ln,
+ Wt
);
}
-function de(e) {
- return Ze(
+function we(e) {
+ return at(
e,
!0,
- Rn,
Mn,
- $t
+ Un,
+ Kt
);
}
-function Ze(e, t, n, r, o) {
- if (!S(e))
- return I.NODE_ENV !== "production" && re(
+function at(e, t, n, r, s) {
+ if (!y(e))
+ return E.NODE_ENV !== "production" && B(
`value cannot be made ${t ? "readonly" : "reactive"}: ${String(
e
)}`
), e;
if (e.__v_raw && !(t && e.__v_isReactive))
return e;
- const s = o.get(e);
- if (s)
- return s;
- const i = jn(e);
+ const o = s.get(e);
+ if (o)
+ return o;
+ const i = qn(e);
if (i === 0)
return e;
- const c = new Proxy(
+ const l = new Proxy(
e,
i === 2 ? r : n
);
- return o.set(e, c), c;
+ return s.set(e, l), l;
}
-function Q(e) {
- return H(e) ? Q(e.__v_raw) : !!(e && e.__v_isReactive);
+function ne(e) {
+ return J(e) ? ne(e.__v_raw) : !!(e && e.__v_isReactive);
}
-function H(e) {
+function J(e) {
return !!(e && e.__v_isReadonly);
}
-function L(e) {
+function T(e) {
return !!(e && e.__v_isShallow);
}
-function He(e) {
+function De(e) {
return e ? !!e.__v_raw : !1;
}
-function p(e) {
+function g(e) {
const t = e && e.__v_raw;
- return t ? p(t) : e;
+ return t ? g(t) : e;
}
-function Ln(e) {
- return Object.isExtensible(e) && an(e, "__v_skip", !0), e;
+function Yn(e) {
+ return Object.isExtensible(e) && wn(e, "__v_skip", !0), e;
}
-const Xe = (e) => S(e) ? Tt(e) : e, ke = (e) => S(e) ? Dt(e) : e;
-function R(e) {
- return !!(e && e.__v_isRef === !0);
+const V = (e) => y(e) ? zt(e) : e, ut = (e) => y(e) ? Lt(e) : e;
+function D(e) {
+ return e ? e.__v_isRef === !0 : !1;
}
-function Hn(e) {
- return R(e) ? e.value : e;
+function Gn(e) {
+ return D(e) ? e.value : e;
}
-const zn = {
- get: (e, t, n) => Hn(Reflect.get(e, t, n)),
+const Qn = {
+ get: (e, t, n) => t === "__v_raw" ? e : Gn(Reflect.get(e, t, n)),
set: (e, t, n, r) => {
- const o = e[t];
- return R(o) && !R(n) ? (o.value = n, !0) : Reflect.set(e, t, n, r);
+ const s = e[t];
+ return D(s) && !D(n) ? (s.value = n, !0) : Reflect.set(e, t, n, r);
}
};
-function Kn(e) {
- return Q(e) ? e : new Proxy(e, zn);
-}
-var u = {};
-const J = [];
-function Wn(e) {
- J.push(e);
-}
-function Un() {
- J.pop();
-}
-let De = !1;
-function b(e, ...t) {
- if (De) return;
- De = !0, xe();
- const n = J.length ? J[J.length - 1].component : null, r = n && n.appContext.config.warnHandler, o = Bn();
+function Zn(e) {
+ return ne(e) ? e : new Proxy(e, Qn);
+}
+const Ne = {}, Ve = /* @__PURE__ */ new WeakMap();
+let G;
+function Xn(e, t = !1, n = G) {
+ if (n) {
+ let r = Ve.get(n);
+ r || Ve.set(n, r = []), r.push(e);
+ } else E.NODE_ENV !== "production" && !t && B(
+ "onWatcherCleanup() was called when there was no active watcher to associate with."
+ );
+}
+function kn(e, t, n = I) {
+ const { immediate: r, deep: s, once: o, scheduler: i, augmentJob: l, call: a } = n, p = (d) => {
+ (n.onWarn || B)(
+ "Invalid watch source: ",
+ d,
+ "A watch source can only be a getter/effect function, a ref, a reactive object, or an array of these types."
+ );
+ }, f = (d) => s ? d : T(d) || s === !1 || s === 0 ? L(d, 1) : L(d);
+ let c, u, m, S, M = !1, de = !1;
+ if (D(e) ? (u = () => e.value, M = T(e)) : ne(e) ? (u = () => f(e), M = !0) : b(e) ? (de = !0, M = e.some((d) => ne(d) || T(d)), u = () => e.map((d) => {
+ if (D(d))
+ return d.value;
+ if (ne(d))
+ return f(d);
+ if (O(d))
+ return a ? a(d, 2) : d();
+ E.NODE_ENV !== "production" && p(d);
+ })) : O(e) ? t ? u = a ? () => a(e, 2) : e : u = () => {
+ if (m) {
+ Ae();
+ try {
+ m();
+ } finally {
+ Me();
+ }
+ }
+ const d = G;
+ G = c;
+ try {
+ return a ? a(e, 3, [S]) : e(S);
+ } finally {
+ G = d;
+ }
+ } : (u = ce, E.NODE_ENV !== "production" && p(e)), t && s) {
+ const d = u, F = s === !0 ? 1 / 0 : s;
+ u = () => L(d(), F);
+ }
+ const q = () => {
+ c.stop();
+ };
+ if (o)
+ if (t) {
+ const d = t;
+ t = (...F) => {
+ d(...F), q();
+ };
+ } else {
+ const d = u;
+ u = () => {
+ d(), q();
+ };
+ }
+ let Y = de ? new Array(e.length).fill(Ne) : Ne;
+ const se = (d) => {
+ if (!(!(c.flags & 1) || !c.dirty && !d))
+ if (t) {
+ const F = c.run();
+ if (s || M || (de ? F.some((We, he) => X(We, Y[he])) : X(F, Y))) {
+ m && m();
+ const We = G;
+ G = c;
+ try {
+ const he = [
+ F,
+ // pass undefined as the old value when it's changed for the first time
+ Y === Ne ? void 0 : de && Y[0] === Ne ? [] : Y,
+ S
+ ];
+ a ? a(t, 3, he) : (
+ // @ts-expect-error
+ t(...he)
+ ), Y = F;
+ } finally {
+ G = We;
+ }
+ }
+ } else
+ c.run();
+ };
+ return l && l(se), c = new vn(u), c.scheduler = i ? () => i(se, !1) : se, S = (d) => Xn(d, !1, c), m = c.onStop = () => {
+ const d = Ve.get(c);
+ if (d) {
+ if (a)
+ a(d, 4);
+ else
+ for (const F of d) F();
+ Ve.delete(c);
+ }
+ }, E.NODE_ENV !== "production" && (c.onTrack = n.onTrack, c.onTrigger = n.onTrigger), t ? r ? se(!0) : Y = c.run() : i ? i(se.bind(null, !0), !0) : c.run(), q.pause = c.pause.bind(c), q.resume = c.resume.bind(c), q.stop = q, q;
+}
+function L(e, t = 1 / 0, n) {
+ if (t <= 0 || !y(e) || e.__v_skip || (n = n || /* @__PURE__ */ new Set(), n.has(e)))
+ return e;
+ if (n.add(e), t--, D(e))
+ L(e.value, t, n);
+ else if (b(e))
+ for (let r = 0; r < e.length; r++)
+ L(e[r], t, n);
+ else if (hn(e) || te(e))
+ e.forEach((r) => {
+ L(r, t, n);
+ });
+ else if (mn(e)) {
+ for (const r in e)
+ L(e[r], t, n);
+ for (const r of Object.getOwnPropertySymbols(e))
+ Object.prototype.propertyIsEnumerable.call(e, r) && L(e[r], t, n);
+ }
+ return e;
+}
+var h = {};
+const Z = [];
+function er(e) {
+ Z.push(e);
+}
+function tr() {
+ Z.pop();
+}
+let Ue = !1;
+function N(e, ...t) {
+ if (Ue) return;
+ Ue = !0, Ae();
+ const n = Z.length ? Z[Z.length - 1].component : null, r = n && n.appContext.config.warnHandler, s = nr();
if (r)
- G(
+ je(
r,
n,
11,
[
// eslint-disable-next-line no-restricted-syntax
- e + t.map((s) => {
- var i, c;
- return (c = (i = s.toString) == null ? void 0 : i.call(s)) != null ? c : JSON.stringify(s);
+ e + t.map((o) => {
+ var i, l;
+ return (l = (i = o.toString) == null ? void 0 : i.call(o)) != null ? l : JSON.stringify(o);
}).join(""),
n && n.proxy,
- o.map(
- ({ vnode: s }) => `at <${Yt(n, s.type)}>`
+ s.map(
+ ({ vnode: o }) => `at <${ln(n, o.type)}>`
).join(`
`),
- o
+ s
]
);
else {
- const s = [`[Vue warn]: ${e}`, ...t];
- o.length && s.push(`
-`, ...qn(o)), console.warn(...s);
+ const o = [`[Vue warn]: ${e}`, ...t];
+ s.length && o.push(`
+`, ...rr(s)), console.warn(...o);
}
- Ie(), De = !1;
+ Me(), Ue = !1;
}
-function Bn() {
- let e = J[J.length - 1];
+function nr() {
+ let e = Z[Z.length - 1];
if (!e)
return [];
const t = [];
@@ -666,31 +1046,31 @@ function Bn() {
}
return t;
}
-function qn(e) {
+function rr(e) {
const t = [];
return e.forEach((n, r) => {
t.push(...r === 0 ? [] : [`
-`], ...Jn(n));
+`], ...sr(n));
}), t;
}
-function Jn({ vnode: e, recurseCount: t }) {
- const n = t > 0 ? `... (${t} recursive calls)` : "", r = e.component ? e.component.parent == null : !1, o = ` at <${Yt(
+function sr({ vnode: e, recurseCount: t }) {
+ const n = t > 0 ? `... (${t} recursive calls)` : "", r = e.component ? e.component.parent == null : !1, s = ` at <${ln(
e.component,
e.type,
r
- )}`, s = ">" + n;
- return e.props ? [o, ...Gn(e.props), s] : [o + s];
+ )}`, o = ">" + n;
+ return e.props ? [s, ...or(e.props), o] : [s + o];
}
-function Gn(e) {
+function or(e) {
const t = [], n = Object.keys(e);
return n.slice(0, 3).forEach((r) => {
- t.push(...Pt(r, e[r]));
+ t.push(...Ut(r, e[r]));
}), n.length > 3 && t.push(" ..."), t;
}
-function Pt(e, t, n) {
- return $(t) ? (t = JSON.stringify(t), n ? t : [`${e}=${t}`]) : typeof t == "number" || typeof t == "boolean" || t == null ? n ? t : [`${e}=${t}`] : R(t) ? (t = Pt(e, p(t.value), !0), n ? t : [`${e}=Ref<`, t, ">"]) : N(t) ? [`${e}=fn${t.name ? `<${t.name}>` : ""}`] : (t = p(t), n ? t : [`${e}=`, t]);
+function Ut(e, t, n) {
+ return A(t) ? (t = JSON.stringify(t), n ? t : [`${e}=${t}`]) : typeof t == "number" || typeof t == "boolean" || t == null ? n ? t : [`${e}=${t}`] : D(t) ? (t = Ut(e, g(t.value), !0), n ? t : [`${e}=Ref<`, t, ">"]) : O(t) ? [`${e}=fn${t.name ? `<${t.name}>` : ""}`] : (t = g(t), n ? t : [`${e}=`, t]);
}
-const vt = {
+const Bt = {
sp: "serverPrefetch hook",
bc: "beforeCreate hook",
c: "created hook",
@@ -720,155 +1100,152 @@ const vt = {
12: "ref function",
13: "async component loader",
14: "scheduler flush",
- 15: "component update"
+ 15: "component update",
+ 16: "app unmount cleanup function"
};
-function G(e, t, n, r) {
+function je(e, t, n, r) {
try {
return r ? e(...r) : e();
- } catch (o) {
- et(o, t, n);
+ } catch (s) {
+ ft(s, t, n);
}
}
-function _e(e, t, n, r) {
- if (N(e)) {
- const o = G(e, t, n, r);
- return o && rn(o) && o.catch((s) => {
- et(s, t, n);
- }), o;
+function Jt(e, t, n, r) {
+ if (O(e)) {
+ const s = je(e, t, n, r);
+ return s && gn(s) && s.catch((o) => {
+ ft(o, t, n);
+ }), s;
}
- if (g(e)) {
- const o = [];
- for (let s = 0; s < e.length; s++)
- o.push(_e(e[s], t, n, r));
- return o;
- } else u.NODE_ENV !== "production" && b(
+ if (b(e)) {
+ const s = [];
+ for (let o = 0; o < e.length; o++)
+ s.push(Jt(e[o], t, n, r));
+ return s;
+ } else h.NODE_ENV !== "production" && N(
`Invalid value type passed to callWithAsyncErrorHandling(): ${typeof e}`
);
}
-function et(e, t, n, r = !0) {
- const o = t ? t.vnode : null;
+function ft(e, t, n, r = !0) {
+ const s = t ? t.vnode : null, { errorHandler: o, throwUnhandledErrorInProduction: i } = t && t.appContext.config || I;
if (t) {
- let s = t.parent;
- const i = t.proxy, c = u.NODE_ENV !== "production" ? vt[n] : `https://vuejs.org/error-reference/#runtime-${n}`;
- for (; s; ) {
- const f = s.ec;
+ let l = t.parent;
+ const a = t.proxy, p = h.NODE_ENV !== "production" ? Bt[n] : `https://vuejs.org/error-reference/#runtime-${n}`;
+ for (; l; ) {
+ const f = l.ec;
if (f) {
- for (let _ = 0; _ < f.length; _++)
- if (f[_](e, i, c) === !1)
+ for (let c = 0; c < f.length; c++)
+ if (f[c](e, a, p) === !1)
return;
}
- s = s.parent;
+ l = l.parent;
}
- const a = t.appContext.config.errorHandler;
- if (a) {
- xe(), G(
+ if (o) {
+ Ae(), je(o, null, 10, [
+ e,
a,
- null,
- 10,
- [e, i, c]
- ), Ie();
+ p
+ ]), Me();
return;
}
}
- Yn(e, n, o, r);
+ ir(e, n, s, r, i);
}
-function Yn(e, t, n, r = !0) {
- if (u.NODE_ENV !== "production") {
- const o = vt[t];
- if (n && Wn(n), b(`Unhandled error${o ? ` during execution of ${o}` : ""}`), n && Un(), r)
+function ir(e, t, n, r = !0, s = !1) {
+ if (h.NODE_ENV !== "production") {
+ const o = Bt[t];
+ if (n && er(n), N(`Unhandled error${o ? ` during execution of ${o}` : ""}`), n && tr(), r)
throw e;
console.error(e);
- } else
+ } else {
+ if (s)
+ throw e;
console.error(e);
+ }
}
-let be = !1, ze = !1;
-const C = [];
-let F = 0;
-const Z = [];
-let A = null, W = 0;
-const Mt = /* @__PURE__ */ Promise.resolve();
-let tt = null;
-const Qn = 100;
-function Zn(e) {
- const t = tt || Mt;
+let Te = !1, Ze = !1;
+const R = [];
+let H = 0;
+const re = [];
+let z = null, ee = 0;
+const qt = /* @__PURE__ */ Promise.resolve();
+let pt = null;
+const cr = 100;
+function lr(e) {
+ const t = pt || qt;
return e ? t.then(this ? e.bind(this) : e) : t;
}
-function Xn(e) {
- let t = F + 1, n = C.length;
+function ar(e) {
+ let t = Te ? H + 1 : 0, n = R.length;
for (; t < n; ) {
- const r = t + n >>> 1, o = C[r], s = oe(o);
- s < e || s === e && o.pre ? t = r + 1 : n = r;
+ const r = t + n >>> 1, s = R[r], o = fe(s);
+ o < e || o === e && s.flags & 2 ? t = r + 1 : n = r;
}
return t;
}
-function nt(e) {
- (!C.length || !C.includes(
- e,
- be && e.allowRecurse ? F + 1 : F
- )) && (e.id == null ? C.push(e) : C.splice(Xn(e.id), 0, e), At());
+function dt(e) {
+ if (!(e.flags & 1)) {
+ const t = fe(e), n = R[R.length - 1];
+ !n || // fast path when the job id is larger than the tail
+ !(e.flags & 2) && t >= fe(n) ? R.push(e) : R.splice(ar(t), 0, e), e.flags |= 1, Yt();
+ }
}
-function At() {
- !be && !ze && (ze = !0, tt = Mt.then(jt));
+function Yt() {
+ !Te && !Ze && (Ze = !0, pt = qt.then(Qt));
}
-function Ft(e) {
- g(e) ? Z.push(...e) : (!A || !A.includes(
- e,
- e.allowRecurse ? W + 1 : W
- )) && Z.push(e), At();
+function Gt(e) {
+ b(e) ? re.push(...e) : z && e.id === -1 ? z.splice(ee + 1, 0, e) : e.flags & 1 || (re.push(e), e.flags |= 1), Yt();
}
-function kn(e) {
- if (Z.length) {
- const t = [...new Set(Z)].sort(
- (n, r) => oe(n) - oe(r)
+function ur(e) {
+ if (re.length) {
+ const t = [...new Set(re)].sort(
+ (n, r) => fe(n) - fe(r)
);
- if (Z.length = 0, A) {
- A.push(...t);
+ if (re.length = 0, z) {
+ z.push(...t);
return;
}
- for (A = t, u.NODE_ENV !== "production" && (e = e || /* @__PURE__ */ new Map()), W = 0; W < A.length; W++) {
- const n = A[W];
- u.NODE_ENV !== "production" && Lt(e, n) || n.active !== !1 && n();
+ for (z = t, h.NODE_ENV !== "production" && (e = e || /* @__PURE__ */ new Map()), ee = 0; ee < z.length; ee++) {
+ const n = z[ee];
+ h.NODE_ENV !== "production" && Zt(e, n) || (n.flags & 4 && (n.flags &= -2), n.flags & 8 || n(), n.flags &= -2);
}
- A = null, W = 0;
+ z = null, ee = 0;
}
}
-const oe = (e) => e.id == null ? 1 / 0 : e.id, er = (e, t) => {
- const n = oe(e) - oe(t);
- if (n === 0) {
- if (e.pre && !t.pre) return -1;
- if (t.pre && !e.pre) return 1;
- }
- return n;
-};
-function jt(e) {
- ze = !1, be = !0, u.NODE_ENV !== "production" && (e = e || /* @__PURE__ */ new Map()), C.sort(er);
- const t = u.NODE_ENV !== "production" ? (n) => Lt(e, n) : k;
+const fe = (e) => e.id == null ? e.flags & 2 ? -1 : 1 / 0 : e.id;
+function Qt(e) {
+ Ze = !1, Te = !0, h.NODE_ENV !== "production" && (e = e || /* @__PURE__ */ new Map());
+ const t = h.NODE_ENV !== "production" ? (n) => Zt(e, n) : ce;
try {
- for (F = 0; F < C.length; F++) {
- const n = C[F];
- if (n && n.active !== !1) {
- if (u.NODE_ENV !== "production" && t(n))
+ for (H = 0; H < R.length; H++) {
+ const n = R[H];
+ if (n && !(n.flags & 8)) {
+ if (h.NODE_ENV !== "production" && t(n))
continue;
- G(
+ n.flags & 4 && (n.flags &= -2), je(
n,
n.i,
n.i ? 15 : 14
- );
+ ), n.flags &= -2;
}
}
} finally {
- F = 0, C.length = 0, kn(e), be = !1, tt = null, (C.length || Z.length) && jt(e);
+ for (; H < R.length; H++) {
+ const n = R[H];
+ n && (n.flags &= -2);
+ }
+ H = 0, R.length = 0, ur(e), Te = !1, pt = null, (R.length || re.length) && Qt(e);
}
}
-function Lt(e, t) {
+function Zt(e, t) {
if (!e.has(t))
e.set(t, 1);
else {
const n = e.get(t);
- if (n > Qn) {
- const r = t.i, o = r && Gt(r.type);
- return et(
- `Maximum recursive updates exceeded${o ? ` in component <${o}>` : ""}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.`,
+ if (n > cr) {
+ const r = t.i, s = r && cn(r.type);
+ return ft(
+ `Maximum recursive updates exceeded${s ? ` in component <${s}>` : ""}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.`,
null,
10
), !0;
@@ -876,52 +1253,52 @@ function Lt(e, t) {
e.set(t, n + 1);
}
}
-const Pe = /* @__PURE__ */ new Map();
-u.NODE_ENV !== "production" && (Nt().__VUE_HMR_RUNTIME__ = {
- createRecord: ve(tr),
- rerender: ve(nr),
- reload: ve(rr)
+const Be = /* @__PURE__ */ new Map();
+h.NODE_ENV !== "production" && (Tt().__VUE_HMR_RUNTIME__ = {
+ createRecord: Je(fr),
+ rerender: Je(pr),
+ reload: Je(dr)
});
-const we = /* @__PURE__ */ new Map();
-function tr(e, t) {
- return we.has(e) ? !1 : (we.set(e, {
- initialDef: Ne(t),
+const Ie = /* @__PURE__ */ new Map();
+function fr(e, t) {
+ return Ie.has(e) ? !1 : (Ie.set(e, {
+ initialDef: Re(t),
instances: /* @__PURE__ */ new Set()
}), !0);
}
-function Ne(e) {
- return Qt(e) ? e.__vccOpts : e;
+function Re(e) {
+ return an(e) ? e.__vccOpts : e;
}
-function nr(e, t) {
- const n = we.get(e);
+function pr(e, t) {
+ const n = Ie.get(e);
n && (n.initialDef.render = t, [...n.instances].forEach((r) => {
- t && (r.render = t, Ne(r.type).render = t), r.renderCache = [], r.effect.dirty = !0, r.update();
+ t && (r.render = t, Re(r.type).render = t), r.renderCache = [], r.update();
}));
}
-function rr(e, t) {
- const n = we.get(e);
+function dr(e, t) {
+ const n = Ie.get(e);
if (!n) return;
- t = Ne(t), dt(n.initialDef, t);
+ t = Re(t), St(n.initialDef, t);
const r = [...n.instances];
- for (let o = 0; o < r.length; o++) {
- const s = r[o], i = Ne(s.type);
- let c = Pe.get(i);
- c || (i !== n.initialDef && dt(i, t), Pe.set(i, c = /* @__PURE__ */ new Set())), c.add(s), s.appContext.propsCache.delete(s.type), s.appContext.emitsCache.delete(s.type), s.appContext.optionsCache.delete(s.type), s.ceReload ? (c.add(s), s.ceReload(t.styles), c.delete(s)) : s.parent ? (s.parent.effect.dirty = !0, nt(() => {
- s.parent.update(), c.delete(s);
- })) : s.appContext.reload ? s.appContext.reload() : typeof window < "u" ? window.location.reload() : console.warn(
+ for (let s = 0; s < r.length; s++) {
+ const o = r[s], i = Re(o.type);
+ let l = Be.get(i);
+ l || (i !== n.initialDef && St(i, t), Be.set(i, l = /* @__PURE__ */ new Set())), l.add(o), o.appContext.propsCache.delete(o.type), o.appContext.emitsCache.delete(o.type), o.appContext.optionsCache.delete(o.type), o.ceReload ? (l.add(o), o.ceReload(t.styles), l.delete(o)) : o.parent ? dt(() => {
+ o.parent.update(), l.delete(o);
+ }) : o.appContext.reload ? o.appContext.reload() : typeof window < "u" ? window.location.reload() : console.warn(
"[HMR] Root or manually mounted instance modified. Full reload required."
- );
+ ), o.root.ce && o !== o.root && o.root.ce._removeChildStyle(i);
}
- Ft(() => {
- Pe.clear();
+ Gt(() => {
+ Be.clear();
});
}
-function dt(e, t) {
- T(e, t);
+function St(e, t) {
+ C(e, t);
for (const n in e)
n !== "__file" && !(n in t) && delete e[n];
}
-function ve(e) {
+function Je(e) {
return (t, n) => {
try {
return e(t, n);
@@ -932,39 +1309,41 @@ function ve(e) {
}
};
}
-let v = null, or = null;
-function Ht(e, t) {
- e.shapeFlag & 6 && e.component ? Ht(e.component.subTree, t) : e.shapeFlag & 128 ? (e.ssContent.transition = t.clone(e.ssContent), e.ssFallback.transition = t.clone(e.ssFallback)) : e.transition = t;
+let W = null, hr = null;
+const gr = (e) => e.__isTeleport;
+function Xt(e, t) {
+ e.shapeFlag & 6 && e.component ? (e.transition = t, Xt(e.component.subTree, t)) : e.shapeFlag & 128 ? (e.ssContent.transition = t.clone(e.ssContent), e.ssFallback.transition = t.clone(e.ssFallback)) : e.transition = t;
}
-const sr = Symbol.for("v-ndc"), Ke = (e) => e ? Mr(e) ? Ar(e) : Ke(e.parent) : null, ne = (
+const _r = Symbol.for("v-ndc"), Xe = (e) => e ? qr(e) ? Yr(e) : Xe(e.parent) : null, ae = (
// Move PURE marker to new line to workaround compiler discarding it
// due to type annotation
- /* @__PURE__ */ T(/* @__PURE__ */ Object.create(null), {
+ /* @__PURE__ */ C(/* @__PURE__ */ Object.create(null), {
$: (e) => e,
$el: (e) => e.vnode.el,
$data: (e) => e.data,
- $props: (e) => u.NODE_ENV !== "production" ? de(e.props) : e.props,
- $attrs: (e) => u.NODE_ENV !== "production" ? de(e.attrs) : e.attrs,
- $slots: (e) => u.NODE_ENV !== "production" ? de(e.slots) : e.slots,
- $refs: (e) => u.NODE_ENV !== "production" ? de(e.refs) : e.refs,
- $parent: (e) => Ke(e.parent),
- $root: (e) => Ke(e.root),
+ $props: (e) => h.NODE_ENV !== "production" ? we(e.props) : e.props,
+ $attrs: (e) => h.NODE_ENV !== "production" ? we(e.attrs) : e.attrs,
+ $slots: (e) => h.NODE_ENV !== "production" ? we(e.slots) : e.slots,
+ $refs: (e) => h.NODE_ENV !== "production" ? we(e.refs) : e.refs,
+ $parent: (e) => Xe(e.parent),
+ $root: (e) => Xe(e.root),
+ $host: (e) => e.ce,
$emit: (e) => e.emit,
- $options: (e) => lr(e),
+ $options: (e) => Er(e),
$forceUpdate: (e) => e.f || (e.f = () => {
- e.effect.dirty = !0, nt(e.update);
+ dt(e.update);
}),
- $nextTick: (e) => e.n || (e.n = Zn.bind(e.proxy)),
- $watch: (e) => Er.bind(e)
+ $nextTick: (e) => e.n || (e.n = lr.bind(e.proxy)),
+ $watch: (e) => Ir.bind(e)
})
-), ir = (e) => e === "_" || e === "$", Me = (e, t) => e !== P && !e.__isScriptSetup && E(e, t), cr = {
+), mr = (e) => e === "_" || e === "$", qe = (e, t) => e !== I && !e.__isScriptSetup && w(e, t), br = {
get({ _: e }, t) {
if (t === "__v_skip")
return !0;
- const { ctx: n, setupState: r, data: o, props: s, accessCache: i, type: c, appContext: a } = e;
- if (u.NODE_ENV !== "production" && t === "__isVue")
+ const { ctx: n, setupState: r, data: s, props: o, accessCache: i, type: l, appContext: a } = e;
+ if (h.NODE_ENV !== "production" && t === "__isVue")
return !0;
- let f;
+ let p;
if (t[0] !== "$") {
const m = i[t];
if (m !== void 0)
@@ -972,154 +1351,154 @@ const sr = Symbol.for("v-ndc"), Ke = (e) => e ? Mr(e) ? Ar(e) : Ke(e.parent) : n
case 1:
return r[t];
case 2:
- return o[t];
+ return s[t];
case 4:
return n[t];
case 3:
- return s[t];
+ return o[t];
}
else {
- if (Me(r, t))
+ if (qe(r, t))
return i[t] = 1, r[t];
- if (o !== P && E(o, t))
- return i[t] = 2, o[t];
+ if (s !== I && w(s, t))
+ return i[t] = 2, s[t];
if (
// only cache other properties when instance has declared (thus stable)
// props
- (f = e.propsOptions[0]) && E(f, t)
+ (p = e.propsOptions[0]) && w(p, t)
)
- return i[t] = 3, s[t];
- if (n !== P && E(n, t))
+ return i[t] = 3, o[t];
+ if (n !== I && w(n, t))
return i[t] = 4, n[t];
i[t] = 0;
}
}
- const _ = ne[t];
- let l, d;
- if (_)
- return t === "$attrs" ? y(e.attrs, "get", "") : u.NODE_ENV !== "production" && t === "$slots" && y(e, "get", t), _(e);
+ const f = ae[t];
+ let c, u;
+ if (f)
+ return t === "$attrs" ? x(e.attrs, "get", "") : h.NODE_ENV !== "production" && t === "$slots" && x(e, "get", t), f(e);
if (
// css module (injected by vue-loader)
- (l = c.__cssModules) && (l = l[t])
+ (c = l.__cssModules) && (c = c[t])
)
- return l;
- if (n !== P && E(n, t))
+ return c;
+ if (n !== I && w(n, t))
return i[t] = 4, n[t];
if (
// global properties
- d = a.config.globalProperties, E(d, t)
+ u = a.config.globalProperties, w(u, t)
)
- return d[t];
- u.NODE_ENV !== "production" && v && (!$(t) || // #1091 avoid internal isRef/isVNode checks on component instance leading
+ return u[t];
+ h.NODE_ENV !== "production" && W && (!A(t) || // #1091 avoid internal isRef/isVNode checks on component instance leading
// to infinite warning loop
- t.indexOf("__v") !== 0) && (o !== P && ir(t[0]) && E(o, t) ? b(
+ t.indexOf("__v") !== 0) && (s !== I && mr(t[0]) && w(s, t) ? N(
`Property ${JSON.stringify(
t
)} must be accessed via $data because it starts with a reserved character ("$" or "_") and is not proxied on the render context.`
- ) : e === v && b(
+ ) : e === W && N(
`Property ${JSON.stringify(t)} was accessed during render but is not defined on instance.`
));
},
set({ _: e }, t, n) {
- const { data: r, setupState: o, ctx: s } = e;
- return Me(o, t) ? (o[t] = n, !0) : u.NODE_ENV !== "production" && o.__isScriptSetup && E(o, t) ? (b(`Cannot mutate