mirror of
https://github.com/Choices-js/Choices.git
synced 2026-03-14 14:45:47 +01:00
deploy: 2723dd63a4
This commit is contained in:
parent
e468a28d14
commit
758ccaae62
14 changed files with 7305 additions and 30 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/*! choices.js v11.0.6 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
/*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||
|
|
@ -872,7 +872,9 @@
|
|||
score: 0,
|
||||
rank: 0,
|
||||
value: option.value,
|
||||
label: option.innerText, // HTML options do not support most html tags, but innerHtml will extract html comments...
|
||||
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
||||
// This attribute is text for the label indicating the meaning of the option. If the `label` attribute isn't defined, its value is that of the element text content (ie `innerText`).
|
||||
label: option.label,
|
||||
element: option,
|
||||
active: true,
|
||||
// this returns true if nothing is selected on initial load, which will break placeholder support
|
||||
|
|
@ -3247,7 +3249,6 @@
|
|||
inp.autocomplete = 'off';
|
||||
inp.autocapitalize = 'off';
|
||||
inp.spellcheck = false;
|
||||
inp.setAttribute('role', 'textbox');
|
||||
inp.setAttribute('aria-autocomplete', 'list');
|
||||
if (placeholderValue) {
|
||||
inp.setAttribute('aria-label', placeholderValue);
|
||||
|
|
@ -5220,7 +5221,7 @@
|
|||
throw new TypeError("".concat(caller, " called for an element which has multiple instances of Choices initialised on it"));
|
||||
}
|
||||
};
|
||||
Choices.version = '11.0.6';
|
||||
Choices.version = '11.1.0';
|
||||
return Choices;
|
||||
}());
|
||||
|
||||
|
|
|
|||
4
assets/scripts/choices.min.js
vendored
4
assets/scripts/choices.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
/*! choices.js v11.0.6 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
/*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
|
||||
/******************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
|
@ -866,7 +866,9 @@ var WrappedSelect = /** @class */ (function (_super) {
|
|||
score: 0,
|
||||
rank: 0,
|
||||
value: option.value,
|
||||
label: option.innerText, // HTML options do not support most html tags, but innerHtml will extract html comments...
|
||||
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
||||
// This attribute is text for the label indicating the meaning of the option. If the `label` attribute isn't defined, its value is that of the element text content (ie `innerText`).
|
||||
label: option.label,
|
||||
element: option,
|
||||
active: true,
|
||||
// this returns true if nothing is selected on initial load, which will break placeholder support
|
||||
|
|
@ -3241,7 +3243,6 @@ var templates = {
|
|||
inp.autocomplete = 'off';
|
||||
inp.autocapitalize = 'off';
|
||||
inp.spellcheck = false;
|
||||
inp.setAttribute('role', 'textbox');
|
||||
inp.setAttribute('aria-autocomplete', 'list');
|
||||
if (placeholderValue) {
|
||||
inp.setAttribute('aria-label', placeholderValue);
|
||||
|
|
@ -5214,7 +5215,7 @@ var Choices = /** @class */ (function () {
|
|||
throw new TypeError("".concat(caller, " called for an element which has multiple instances of Choices initialised on it"));
|
||||
}
|
||||
};
|
||||
Choices.version = '11.0.6';
|
||||
Choices.version = '11.1.0';
|
||||
return Choices;
|
||||
}());
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*! choices.js v11.0.6 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
/*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||
|
|
@ -872,7 +872,9 @@
|
|||
score: 0,
|
||||
rank: 0,
|
||||
value: option.value,
|
||||
label: option.innerText, // HTML options do not support most html tags, but innerHtml will extract html comments...
|
||||
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
||||
// This attribute is text for the label indicating the meaning of the option. If the `label` attribute isn't defined, its value is that of the element text content (ie `innerText`).
|
||||
label: option.label,
|
||||
element: option,
|
||||
active: true,
|
||||
// this returns true if nothing is selected on initial load, which will break placeholder support
|
||||
|
|
@ -2765,7 +2767,6 @@
|
|||
inp.autocomplete = 'off';
|
||||
inp.autocapitalize = 'off';
|
||||
inp.spellcheck = false;
|
||||
inp.setAttribute('role', 'textbox');
|
||||
inp.setAttribute('aria-autocomplete', 'list');
|
||||
if (placeholderValue) {
|
||||
inp.setAttribute('aria-label', placeholderValue);
|
||||
|
|
@ -4738,7 +4739,7 @@
|
|||
throw new TypeError("".concat(caller, " called for an element which has multiple instances of Choices initialised on it"));
|
||||
}
|
||||
};
|
||||
Choices.version = '11.0.6';
|
||||
Choices.version = '11.1.0';
|
||||
return Choices;
|
||||
}());
|
||||
|
||||
|
|
|
|||
4
assets/scripts/choices.search-basic.min.js
vendored
4
assets/scripts/choices.search-basic.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
/*! choices.js v11.0.6 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
/*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
|
||||
/******************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
|
@ -866,7 +866,9 @@ var WrappedSelect = /** @class */ (function (_super) {
|
|||
score: 0,
|
||||
rank: 0,
|
||||
value: option.value,
|
||||
label: option.innerText, // HTML options do not support most html tags, but innerHtml will extract html comments...
|
||||
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
||||
// This attribute is text for the label indicating the meaning of the option. If the `label` attribute isn't defined, its value is that of the element text content (ie `innerText`).
|
||||
label: option.label,
|
||||
element: option,
|
||||
active: true,
|
||||
// this returns true if nothing is selected on initial load, which will break placeholder support
|
||||
|
|
@ -2759,7 +2761,6 @@ var templates = {
|
|||
inp.autocomplete = 'off';
|
||||
inp.autocapitalize = 'off';
|
||||
inp.spellcheck = false;
|
||||
inp.setAttribute('role', 'textbox');
|
||||
inp.setAttribute('aria-autocomplete', 'list');
|
||||
if (placeholderValue) {
|
||||
inp.setAttribute('aria-label', placeholderValue);
|
||||
|
|
@ -4732,7 +4733,7 @@ var Choices = /** @class */ (function () {
|
|||
throw new TypeError("".concat(caller, " called for an element which has multiple instances of Choices initialised on it"));
|
||||
}
|
||||
};
|
||||
Choices.version = '11.0.6';
|
||||
Choices.version = '11.1.0';
|
||||
return Choices;
|
||||
}());
|
||||
|
||||
|
|
|
|||
3631
assets/scripts/choices.search-kmp.js
Normal file
3631
assets/scripts/choices.search-kmp.js
Normal file
File diff suppressed because it is too large
Load diff
2
assets/scripts/choices.search-kmp.min.js
vendored
Normal file
2
assets/scripts/choices.search-kmp.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
3623
assets/scripts/choices.search-kmp.mjs
Normal file
3623
assets/scripts/choices.search-kmp.mjs
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,4 +1,4 @@
|
|||
/*! choices.js v11.0.6 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
/*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||
|
|
@ -863,7 +863,9 @@
|
|||
score: 0,
|
||||
rank: 0,
|
||||
value: option.value,
|
||||
label: option.innerText, // HTML options do not support most html tags, but innerHtml will extract html comments...
|
||||
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
||||
// This attribute is text for the label indicating the meaning of the option. If the `label` attribute isn't defined, its value is that of the element text content (ie `innerText`).
|
||||
label: option.label,
|
||||
element: option,
|
||||
active: true,
|
||||
// this returns true if nothing is selected on initial load, which will break placeholder support
|
||||
|
|
@ -1607,7 +1609,6 @@
|
|||
inp.autocomplete = 'off';
|
||||
inp.autocapitalize = 'off';
|
||||
inp.spellcheck = false;
|
||||
inp.setAttribute('role', 'textbox');
|
||||
inp.setAttribute('aria-autocomplete', 'list');
|
||||
if (placeholderValue) {
|
||||
inp.setAttribute('aria-label', placeholderValue);
|
||||
|
|
@ -3580,7 +3581,7 @@
|
|||
throw new TypeError("".concat(caller, " called for an element which has multiple instances of Choices initialised on it"));
|
||||
}
|
||||
};
|
||||
Choices.version = '11.0.6';
|
||||
Choices.version = '11.1.0';
|
||||
return Choices;
|
||||
}());
|
||||
|
||||
|
|
|
|||
4
assets/scripts/choices.search-prefix.min.js
vendored
4
assets/scripts/choices.search-prefix.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
/*! choices.js v11.0.6 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
/*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
||||
|
||||
/******************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
|
@ -857,7 +857,9 @@ var WrappedSelect = /** @class */ (function (_super) {
|
|||
score: 0,
|
||||
rank: 0,
|
||||
value: option.value,
|
||||
label: option.innerText, // HTML options do not support most html tags, but innerHtml will extract html comments...
|
||||
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
|
||||
// This attribute is text for the label indicating the meaning of the option. If the `label` attribute isn't defined, its value is that of the element text content (ie `innerText`).
|
||||
label: option.label,
|
||||
element: option,
|
||||
active: true,
|
||||
// this returns true if nothing is selected on initial load, which will break placeholder support
|
||||
|
|
@ -1601,7 +1603,6 @@ var templates = {
|
|||
inp.autocomplete = 'off';
|
||||
inp.autocapitalize = 'off';
|
||||
inp.spellcheck = false;
|
||||
inp.setAttribute('role', 'textbox');
|
||||
inp.setAttribute('aria-autocomplete', 'list');
|
||||
if (placeholderValue) {
|
||||
inp.setAttribute('aria-label', placeholderValue);
|
||||
|
|
@ -3574,7 +3575,7 @@ var Choices = /** @class */ (function () {
|
|||
throw new TypeError("".concat(caller, " called for an element which has multiple instances of Choices initialised on it"));
|
||||
}
|
||||
};
|
||||
Choices.version = '11.0.6';
|
||||
Choices.version = '11.1.0';
|
||||
return Choices;
|
||||
}());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue