@ecodev/natural 50.1.0 → 50.1.1
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/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 +3 -0
- package/fesm2015/ecodev-natural.mjs.map +1 -1
- package/fesm2020/ecodev-natural.mjs +3 -0
- package/fesm2020/ecodev-natural.mjs.map +1 -1
- package/lib/modules/common/pipes/capitalize.pipe.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/_natural.theme.scss +1 -0
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Returns the string with the first letter as capital
|
|
5
|
+
*/
|
|
3
6
|
export declare class NaturalCapitalizePipe implements PipeTransform {
|
|
4
7
|
transform(value: string | null): string | null;
|
|
5
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<NaturalCapitalizePipe, never>;
|
package/package.json
CHANGED