@ecodev/natural 50.1.0 → 50.2.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/esm2020/lib/classes/abstract-list.mjs +4 -1
- package/esm2020/lib/classes/query-variable-manager.mjs +1 -1
- package/esm2020/lib/modules/common/pipes/capitalize.pipe.mjs +4 -1
- package/esm2020/lib/modules/search/input/input.component.mjs +1 -1
- package/esm2020/lib/modules/search/search.module.mjs +3 -3
- package/fesm2015/ecodev-natural.mjs +6 -0
- package/fesm2015/ecodev-natural.mjs.map +1 -1
- package/fesm2020/ecodev-natural.mjs +6 -0
- package/fesm2020/ecodev-natural.mjs.map +1 -1
- package/lib/classes/abstract-list.d.ts +1 -1
- package/lib/classes/query-variable-manager.d.ts +1 -0
- package/lib/modules/common/pipes/capitalize.pipe.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/_natural.theme.scss +1 -0
|
@@ -3706,6 +3706,9 @@ class NaturalAbstractList extends NaturalAbstractPanel {
|
|
|
3706
3706
|
if ('nullAsHighest' in sortingEvent) {
|
|
3707
3707
|
s.nullAsHighest = sortingEvent.nullAsHighest;
|
|
3708
3708
|
}
|
|
3709
|
+
if ('emptyStringAsHighest' in sortingEvent) {
|
|
3710
|
+
s.emptyStringAsHighest = sortingEvent.emptyStringAsHighest;
|
|
3711
|
+
}
|
|
3709
3712
|
return s;
|
|
3710
3713
|
});
|
|
3711
3714
|
// Empty sorting fallbacks on default
|
|
@@ -5450,6 +5453,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
5450
5453
|
type: Input
|
|
5451
5454
|
}] } });
|
|
5452
5455
|
|
|
5456
|
+
/**
|
|
5457
|
+
* Returns the string with the first letter as capital
|
|
5458
|
+
*/
|
|
5453
5459
|
class NaturalCapitalizePipe {
|
|
5454
5460
|
transform(value) {
|
|
5455
5461
|
if (value) {
|