@libs-ui/utils 0.2.255 → 0.2.257

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/inject-token.d.ts CHANGED
@@ -1,2 +1,4 @@
1
1
  import { InjectionToken } from "@angular/core";
2
2
  export declare const LINK_IMAGE_ERROR_TOKEN_INJECT: InjectionToken<string>;
3
+ export declare const PROCESS_BAR_STANDARD_CONFIG_DEFAULT_TOKEN_INJECT: InjectionToken<string>;
4
+ export declare const PROCESS_BAR_STEPS_CONFIG_DEFAULT_TOKEN_INJECT: InjectionToken<string>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@libs-ui/utils",
3
- "version": "0.2.255",
3
+ "version": "0.2.257",
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.255",
9
+ "@libs-ui/interfaces-types": "^0.2.257",
10
10
  "rxjs": "~7.8.0"
11
11
  },
12
12
  "sideEffects": false,
package/uri.d.ts CHANGED
@@ -1,3 +1,5 @@
1
1
  import { TYPE_OBJECT } from "@libs-ui/interfaces-types";
2
+ export declare const ENCODE_URI_PATTERN: RegExp;
2
3
  export declare const decodeURI: (value: string) => string;
4
+ export declare const encodeURI: (value: string) => string;
3
5
  export declare const endCodeUrl: (params: TYPE_OBJECT, isBody: boolean) => string;