ngx-ode-ui 4.5.0-dev.0 → 4.6.0-dev-produit.0
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/bundles/ngx-ode-ui.umd.js +4 -3
- package/bundles/ngx-ode-ui.umd.js.map +1 -1
- package/bundles/ngx-ode-ui.umd.min.js +1 -1
- package/bundles/ngx-ode-ui.umd.min.js.map +1 -1
- package/esm2015/lib/pipes/orderBy.pipe.js +5 -4
- package/esm5/lib/pipes/orderBy.pipe.js +5 -4
- package/fesm2015/ngx-ode-ui.js +4 -3
- package/fesm2015/ngx-ode-ui.js.map +1 -1
- package/fesm5/ngx-ode-ui.js +4 -3
- package/fesm5/ngx-ode-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -5261,6 +5261,7 @@
|
|
|
5261
5261
|
// Compare strings case-insensitively
|
|
5262
5262
|
value1 = value1.toLowerCase();
|
|
5263
5263
|
value2 = value2.toLowerCase();
|
|
5264
|
+
result = value1.localeCompare(value2);
|
|
5264
5265
|
}
|
|
5265
5266
|
else if (type1 === 'object') {
|
|
5266
5267
|
// For basic objects, use the position of the object
|
|
@@ -5271,9 +5272,9 @@
|
|
|
5271
5272
|
if (isObject(value2)) {
|
|
5272
5273
|
value2 = v2.index;
|
|
5273
5274
|
}
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
|
|
5275
|
+
if (value1 !== value2) {
|
|
5276
|
+
result = value1 < value2 ? -1 : 1;
|
|
5277
|
+
}
|
|
5277
5278
|
}
|
|
5278
5279
|
}
|
|
5279
5280
|
else {
|