impact-chatbot 2.3.14 → 2.3.16
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/dist/index.cjs.js +21 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +21 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/utils/coreUtils.d.ts +7 -0
- package/package.json +1 -1
|
@@ -10,6 +10,13 @@ export declare const pxToRem: (pxValue: number) => string;
|
|
|
10
10
|
* Replace special characters in a string
|
|
11
11
|
*/
|
|
12
12
|
export declare const replaceSpecialCharacter: (str: any) => any;
|
|
13
|
+
/**
|
|
14
|
+
* @function
|
|
15
|
+
* @description Function is used to return string by replacing the special characters with respective key mapped to SPECIAL_CHARACTER_MAPPING
|
|
16
|
+
* @param {String} str
|
|
17
|
+
* @returns {String} key of mapped special character used in the string
|
|
18
|
+
*/
|
|
19
|
+
export declare const replaceSpecialCharToCharCode: (str: any) => any;
|
|
13
20
|
/**
|
|
14
21
|
* Fetch base URL from tenant config
|
|
15
22
|
* This is a stub - the actual implementation should be passed as a prop
|