This commit is contained in:
Xon 2025-03-14 05:14:25 +00:00
commit 758ccaae62
14 changed files with 7305 additions and 30 deletions

View file

@ -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;
}());

File diff suppressed because one or more lines are too long

View file

@ -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;
}());

View file

@ -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;
}());

File diff suppressed because one or more lines are too long

View file

@ -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;
}());

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

View file

@ -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;
}());

File diff suppressed because one or more lines are too long

View file

@ -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;
}());