@optionfactory/ful 4.0.7 → 4.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ful.iife.js +1 -1
- package/dist/ful.iife.js.map +1 -1
- package/dist/ful.iife.min.js +1 -1
- package/dist/ful.iife.min.js.map +1 -1
- package/dist/ful.min.mjs +1 -1
- package/dist/ful.min.mjs.map +1 -1
- package/dist/ful.mjs +1 -1
- package/dist/ful.mjs.map +1 -1
- package/package.json +1 -1
package/dist/ful.iife.js
CHANGED
|
@@ -2912,7 +2912,7 @@ var ful = (function (exports, ftl) {
|
|
|
2912
2912
|
get value() {
|
|
2913
2913
|
const operator = this.#operator.getAttribute('value');
|
|
2914
2914
|
const values = operator == 'BETWEEN' ? [this.#value1.value, this.#value2.value] : [this.#value1.value];
|
|
2915
|
-
return values.some(v => v === '') ? undefined : [operator,
|
|
2915
|
+
return values.some(v => v === '') ? undefined : [operator, ...values];
|
|
2916
2916
|
}
|
|
2917
2917
|
set value(v) {
|
|
2918
2918
|
if (v === null || v === undefined) {
|