@libs-ui/utils 0.2.275 → 0.2.277

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.
@@ -0,0 +1,6 @@
1
+ import { ITextFormatOptions } from "@libs-ui/interfaces-types";
2
+ export declare const highlightByKeyword: (value: string | undefined, search: string | undefined, ignoreHighlight?: boolean, classHightLight?: string) => string;
3
+ export declare const fullNameFormat: (value: string) => string;
4
+ export declare const capitalize: (text: string, options?: ITextFormatOptions) => string;
5
+ export declare const firstLetterToUpperCase: (text: string, options?: ITextFormatOptions) => string;
6
+ export declare const uppercaseByPosition: (text: string, position: number, options?: ITextFormatOptions) => string;
package/index.d.ts CHANGED
@@ -27,3 +27,4 @@ export * from './base64';
27
27
  export * from './inject-token';
28
28
  export * from './file';
29
29
  export * from './uri';
30
+ export * from './format-text';
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@libs-ui/utils",
3
- "version": "0.2.275",
3
+ "version": "0.2.277",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0",
7
7
  "crypto-es": "^2.1.0",
8
8
  "dayjs": "1.11.5",
9
- "@libs-ui/interfaces-types": "^0.2.275",
9
+ "@libs-ui/interfaces-types": "^0.2.277",
10
10
  "rxjs": "~7.8.0"
11
11
  },
12
12
  "sideEffects": false,