Skip to content

Commit 5e25576

Browse files
committed
Build JS & CSS files
1 parent ddc7bb8 commit 5e25576

12 files changed

Lines changed: 104 additions & 104 deletions

public/assets/scripts/choices.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! choices.js v11.2.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
1+
/*! choices.js v11.2.0 | © 2026 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
22

33
(function (global, factory) {
44
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
@@ -3433,7 +3433,7 @@
34333433
this.initialised = false;
34343434
this._store = new Store(config);
34353435
this._currentValue = '';
3436-
config.searchEnabled = (!isText && config.searchEnabled) || isSelectMultiple;
3436+
config.searchEnabled = !isText && config.searchEnabled;
34373437
this._canSearch = config.searchEnabled;
34383438
this._isScrollingOnIe = false;
34393439
this._highlightPosition = 0;
@@ -5176,25 +5176,25 @@
51765176
containerInner.wrap(passedElement.element);
51775177
// Wrapper inner container with outer container
51785178
containerOuter.wrap(containerInner.element);
5179+
containerOuter.element.appendChild(containerInner.element);
5180+
containerOuter.element.appendChild(dropdownElement);
5181+
containerInner.element.appendChild(this.itemList.element);
5182+
dropdownElement.appendChild(this.choiceList.element);
51795183
if (this._isSelectOneElement) {
51805184
this.input.placeholder = this.config.searchPlaceholderValue || '';
5185+
if (this.config.searchEnabled) {
5186+
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
5187+
}
51815188
}
51825189
else {
5190+
if (!this._isSelectMultipleElement || this.config.searchEnabled) {
5191+
containerInner.element.appendChild(this.input.element);
5192+
}
51835193
if (this._placeholderValue) {
51845194
this.input.placeholder = this._placeholderValue;
51855195
}
51865196
this.input.setWidth();
51875197
}
5188-
containerOuter.element.appendChild(containerInner.element);
5189-
containerOuter.element.appendChild(dropdownElement);
5190-
containerInner.element.appendChild(this.itemList.element);
5191-
dropdownElement.appendChild(this.choiceList.element);
5192-
if (!this._isSelectOneElement) {
5193-
containerInner.element.appendChild(this.input.element);
5194-
}
5195-
else if (this.config.searchEnabled) {
5196-
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
5197-
}
51985198
this._highlightPosition = 0;
51995199
this._isSearching = false;
52005200
};

public/assets/scripts/choices.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/scripts/choices.mjs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! choices.js v11.2.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
1+
/*! choices.js v11.2.0 | © 2026 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
22

33
/******************************************************************************
44
Copyright (c) Microsoft Corporation.
@@ -3427,7 +3427,7 @@ var Choices = /** @class */ (function () {
34273427
this.initialised = false;
34283428
this._store = new Store(config);
34293429
this._currentValue = '';
3430-
config.searchEnabled = (!isText && config.searchEnabled) || isSelectMultiple;
3430+
config.searchEnabled = !isText && config.searchEnabled;
34313431
this._canSearch = config.searchEnabled;
34323432
this._isScrollingOnIe = false;
34333433
this._highlightPosition = 0;
@@ -5170,25 +5170,25 @@ var Choices = /** @class */ (function () {
51705170
containerInner.wrap(passedElement.element);
51715171
// Wrapper inner container with outer container
51725172
containerOuter.wrap(containerInner.element);
5173+
containerOuter.element.appendChild(containerInner.element);
5174+
containerOuter.element.appendChild(dropdownElement);
5175+
containerInner.element.appendChild(this.itemList.element);
5176+
dropdownElement.appendChild(this.choiceList.element);
51735177
if (this._isSelectOneElement) {
51745178
this.input.placeholder = this.config.searchPlaceholderValue || '';
5179+
if (this.config.searchEnabled) {
5180+
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
5181+
}
51755182
}
51765183
else {
5184+
if (!this._isSelectMultipleElement || this.config.searchEnabled) {
5185+
containerInner.element.appendChild(this.input.element);
5186+
}
51775187
if (this._placeholderValue) {
51785188
this.input.placeholder = this._placeholderValue;
51795189
}
51805190
this.input.setWidth();
51815191
}
5182-
containerOuter.element.appendChild(containerInner.element);
5183-
containerOuter.element.appendChild(dropdownElement);
5184-
containerInner.element.appendChild(this.itemList.element);
5185-
dropdownElement.appendChild(this.choiceList.element);
5186-
if (!this._isSelectOneElement) {
5187-
containerInner.element.appendChild(this.input.element);
5188-
}
5189-
else if (this.config.searchEnabled) {
5190-
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
5191-
}
51925192
this._highlightPosition = 0;
51935193
this._isSearching = false;
51945194
};

public/assets/scripts/choices.search-basic.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! choices.js v11.2.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
1+
/*! choices.js v11.2.0 | © 2026 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
22

33
(function (global, factory) {
44
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
@@ -2954,7 +2954,7 @@
29542954
this.initialised = false;
29552955
this._store = new Store(config);
29562956
this._currentValue = '';
2957-
config.searchEnabled = (!isText && config.searchEnabled) || isSelectMultiple;
2957+
config.searchEnabled = !isText && config.searchEnabled;
29582958
this._canSearch = config.searchEnabled;
29592959
this._isScrollingOnIe = false;
29602960
this._highlightPosition = 0;
@@ -4697,25 +4697,25 @@
46974697
containerInner.wrap(passedElement.element);
46984698
// Wrapper inner container with outer container
46994699
containerOuter.wrap(containerInner.element);
4700+
containerOuter.element.appendChild(containerInner.element);
4701+
containerOuter.element.appendChild(dropdownElement);
4702+
containerInner.element.appendChild(this.itemList.element);
4703+
dropdownElement.appendChild(this.choiceList.element);
47004704
if (this._isSelectOneElement) {
47014705
this.input.placeholder = this.config.searchPlaceholderValue || '';
4706+
if (this.config.searchEnabled) {
4707+
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
4708+
}
47024709
}
47034710
else {
4711+
if (!this._isSelectMultipleElement || this.config.searchEnabled) {
4712+
containerInner.element.appendChild(this.input.element);
4713+
}
47044714
if (this._placeholderValue) {
47054715
this.input.placeholder = this._placeholderValue;
47064716
}
47074717
this.input.setWidth();
47084718
}
4709-
containerOuter.element.appendChild(containerInner.element);
4710-
containerOuter.element.appendChild(dropdownElement);
4711-
containerInner.element.appendChild(this.itemList.element);
4712-
dropdownElement.appendChild(this.choiceList.element);
4713-
if (!this._isSelectOneElement) {
4714-
containerInner.element.appendChild(this.input.element);
4715-
}
4716-
else if (this.config.searchEnabled) {
4717-
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
4718-
}
47194719
this._highlightPosition = 0;
47204720
this._isSearching = false;
47214721
};

public/assets/scripts/choices.search-basic.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/scripts/choices.search-basic.mjs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! choices.js v11.2.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
1+
/*! choices.js v11.2.0 | © 2026 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
22

33
/******************************************************************************
44
Copyright (c) Microsoft Corporation.
@@ -2948,7 +2948,7 @@ var Choices = /** @class */ (function () {
29482948
this.initialised = false;
29492949
this._store = new Store(config);
29502950
this._currentValue = '';
2951-
config.searchEnabled = (!isText && config.searchEnabled) || isSelectMultiple;
2951+
config.searchEnabled = !isText && config.searchEnabled;
29522952
this._canSearch = config.searchEnabled;
29532953
this._isScrollingOnIe = false;
29542954
this._highlightPosition = 0;
@@ -4691,25 +4691,25 @@ var Choices = /** @class */ (function () {
46914691
containerInner.wrap(passedElement.element);
46924692
// Wrapper inner container with outer container
46934693
containerOuter.wrap(containerInner.element);
4694+
containerOuter.element.appendChild(containerInner.element);
4695+
containerOuter.element.appendChild(dropdownElement);
4696+
containerInner.element.appendChild(this.itemList.element);
4697+
dropdownElement.appendChild(this.choiceList.element);
46944698
if (this._isSelectOneElement) {
46954699
this.input.placeholder = this.config.searchPlaceholderValue || '';
4700+
if (this.config.searchEnabled) {
4701+
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
4702+
}
46964703
}
46974704
else {
4705+
if (!this._isSelectMultipleElement || this.config.searchEnabled) {
4706+
containerInner.element.appendChild(this.input.element);
4707+
}
46984708
if (this._placeholderValue) {
46994709
this.input.placeholder = this._placeholderValue;
47004710
}
47014711
this.input.setWidth();
47024712
}
4703-
containerOuter.element.appendChild(containerInner.element);
4704-
containerOuter.element.appendChild(dropdownElement);
4705-
containerInner.element.appendChild(this.itemList.element);
4706-
dropdownElement.appendChild(this.choiceList.element);
4707-
if (!this._isSelectOneElement) {
4708-
containerInner.element.appendChild(this.input.element);
4709-
}
4710-
else if (this.config.searchEnabled) {
4711-
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
4712-
}
47134713
this._highlightPosition = 0;
47144714
this._isSearching = false;
47154715
};

public/assets/scripts/choices.search-kmp.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! choices.js v11.2.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
1+
/*! choices.js v11.2.0 | © 2026 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
22

33
(function (global, factory) {
44
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
@@ -1841,7 +1841,7 @@
18411841
this.initialised = false;
18421842
this._store = new Store(config);
18431843
this._currentValue = '';
1844-
config.searchEnabled = (!isText && config.searchEnabled) || isSelectMultiple;
1844+
config.searchEnabled = !isText && config.searchEnabled;
18451845
this._canSearch = config.searchEnabled;
18461846
this._isScrollingOnIe = false;
18471847
this._highlightPosition = 0;
@@ -3584,25 +3584,25 @@
35843584
containerInner.wrap(passedElement.element);
35853585
// Wrapper inner container with outer container
35863586
containerOuter.wrap(containerInner.element);
3587+
containerOuter.element.appendChild(containerInner.element);
3588+
containerOuter.element.appendChild(dropdownElement);
3589+
containerInner.element.appendChild(this.itemList.element);
3590+
dropdownElement.appendChild(this.choiceList.element);
35873591
if (this._isSelectOneElement) {
35883592
this.input.placeholder = this.config.searchPlaceholderValue || '';
3593+
if (this.config.searchEnabled) {
3594+
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
3595+
}
35893596
}
35903597
else {
3598+
if (!this._isSelectMultipleElement || this.config.searchEnabled) {
3599+
containerInner.element.appendChild(this.input.element);
3600+
}
35913601
if (this._placeholderValue) {
35923602
this.input.placeholder = this._placeholderValue;
35933603
}
35943604
this.input.setWidth();
35953605
}
3596-
containerOuter.element.appendChild(containerInner.element);
3597-
containerOuter.element.appendChild(dropdownElement);
3598-
containerInner.element.appendChild(this.itemList.element);
3599-
dropdownElement.appendChild(this.choiceList.element);
3600-
if (!this._isSelectOneElement) {
3601-
containerInner.element.appendChild(this.input.element);
3602-
}
3603-
else if (this.config.searchEnabled) {
3604-
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
3605-
}
36063606
this._highlightPosition = 0;
36073607
this._isSearching = false;
36083608
};

public/assets/scripts/choices.search-kmp.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/scripts/choices.search-kmp.mjs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! choices.js v11.2.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
1+
/*! choices.js v11.2.0 | © 2026 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
22

33
/******************************************************************************
44
Copyright (c) Microsoft Corporation.
@@ -1835,7 +1835,7 @@ var Choices = /** @class */ (function () {
18351835
this.initialised = false;
18361836
this._store = new Store(config);
18371837
this._currentValue = '';
1838-
config.searchEnabled = (!isText && config.searchEnabled) || isSelectMultiple;
1838+
config.searchEnabled = !isText && config.searchEnabled;
18391839
this._canSearch = config.searchEnabled;
18401840
this._isScrollingOnIe = false;
18411841
this._highlightPosition = 0;
@@ -3578,25 +3578,25 @@ var Choices = /** @class */ (function () {
35783578
containerInner.wrap(passedElement.element);
35793579
// Wrapper inner container with outer container
35803580
containerOuter.wrap(containerInner.element);
3581+
containerOuter.element.appendChild(containerInner.element);
3582+
containerOuter.element.appendChild(dropdownElement);
3583+
containerInner.element.appendChild(this.itemList.element);
3584+
dropdownElement.appendChild(this.choiceList.element);
35813585
if (this._isSelectOneElement) {
35823586
this.input.placeholder = this.config.searchPlaceholderValue || '';
3587+
if (this.config.searchEnabled) {
3588+
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
3589+
}
35833590
}
35843591
else {
3592+
if (!this._isSelectMultipleElement || this.config.searchEnabled) {
3593+
containerInner.element.appendChild(this.input.element);
3594+
}
35853595
if (this._placeholderValue) {
35863596
this.input.placeholder = this._placeholderValue;
35873597
}
35883598
this.input.setWidth();
35893599
}
3590-
containerOuter.element.appendChild(containerInner.element);
3591-
containerOuter.element.appendChild(dropdownElement);
3592-
containerInner.element.appendChild(this.itemList.element);
3593-
dropdownElement.appendChild(this.choiceList.element);
3594-
if (!this._isSelectOneElement) {
3595-
containerInner.element.appendChild(this.input.element);
3596-
}
3597-
else if (this.config.searchEnabled) {
3598-
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
3599-
}
36003600
this._highlightPosition = 0;
36013601
this._isSearching = false;
36023602
};

public/assets/scripts/choices.search-prefix.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! choices.js v11.2.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
1+
/*! choices.js v11.2.0 | © 2026 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
22

33
(function (global, factory) {
44
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
@@ -1799,7 +1799,7 @@
17991799
this.initialised = false;
18001800
this._store = new Store(config);
18011801
this._currentValue = '';
1802-
config.searchEnabled = (!isText && config.searchEnabled) || isSelectMultiple;
1802+
config.searchEnabled = !isText && config.searchEnabled;
18031803
this._canSearch = config.searchEnabled;
18041804
this._isScrollingOnIe = false;
18051805
this._highlightPosition = 0;
@@ -3542,25 +3542,25 @@
35423542
containerInner.wrap(passedElement.element);
35433543
// Wrapper inner container with outer container
35443544
containerOuter.wrap(containerInner.element);
3545+
containerOuter.element.appendChild(containerInner.element);
3546+
containerOuter.element.appendChild(dropdownElement);
3547+
containerInner.element.appendChild(this.itemList.element);
3548+
dropdownElement.appendChild(this.choiceList.element);
35453549
if (this._isSelectOneElement) {
35463550
this.input.placeholder = this.config.searchPlaceholderValue || '';
3551+
if (this.config.searchEnabled) {
3552+
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
3553+
}
35473554
}
35483555
else {
3556+
if (!this._isSelectMultipleElement || this.config.searchEnabled) {
3557+
containerInner.element.appendChild(this.input.element);
3558+
}
35493559
if (this._placeholderValue) {
35503560
this.input.placeholder = this._placeholderValue;
35513561
}
35523562
this.input.setWidth();
35533563
}
3554-
containerOuter.element.appendChild(containerInner.element);
3555-
containerOuter.element.appendChild(dropdownElement);
3556-
containerInner.element.appendChild(this.itemList.element);
3557-
dropdownElement.appendChild(this.choiceList.element);
3558-
if (!this._isSelectOneElement) {
3559-
containerInner.element.appendChild(this.input.element);
3560-
}
3561-
else if (this.config.searchEnabled) {
3562-
dropdownElement.insertBefore(this.input.element, dropdownElement.firstChild);
3563-
}
35643564
this._highlightPosition = 0;
35653565
this._isSearching = false;
35663566
};

0 commit comments

Comments
 (0)