@budibase/string-templates 2.15.7 → 2.16.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/dist/bundle.mjs +1 -1
- package/dist/helpers/index.d.ts +2 -2
- package/dist/helpers/list.d.ts +2 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +2 -1
- package/manifest.json +281 -149
- package/package.json +3 -3
- package/src/conversion/index.js +2 -2
- package/src/helpers/date.js +1 -1
- package/src/helpers/index.js +2 -2
- package/src/helpers/javascript.js +2 -2
- package/src/helpers/list.js +10 -2
- package/src/index.cjs +1 -0
- package/src/index.js +2 -0
- package/src/index.mjs +1 -0
package/dist/helpers/index.d.ts
CHANGED
@@ -2,5 +2,5 @@ export function HelperNames(): string[];
|
|
2
2
|
export function registerMinimum(handlebars: any): void;
|
3
3
|
export function registerAll(handlebars: any): void;
|
4
4
|
export function unregisterAll(handlebars: any): void;
|
5
|
-
export {
|
6
|
-
import {
|
5
|
+
export { getJsHelperList };
|
6
|
+
import { getJsHelperList } from "./list";
|
package/dist/helpers/list.d.ts
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
export function
|
1
|
+
export function getJsHelperList(): any;
|
2
|
+
export const helpersToRemoveForJs: string[];
|
package/dist/index.d.cts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { isValid, makePropSafe, getManifest, isJSBinding, encodeJSBinding, decodeJSBinding, processStringSync, processObjectSync, processString, processObject, doesContainStrings, doesContainString, disableEscaping, findHBSBlocks, convertToJS, setJSRunner, FIND_ANY_HBS_REGEX };
|
1
|
+
export { isValid, makePropSafe, getManifest, isJSBinding, encodeJSBinding, decodeJSBinding, processStringSync, processObjectSync, processString, processObject, doesContainStrings, doesContainString, disableEscaping, findHBSBlocks, convertToJS, setJSRunner, FIND_ANY_HBS_REGEX, helpersToRemoveForJs };
|
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
@@ -14,4 +14,5 @@ export function findHBSBlocks(string: string): string[];
|
|
14
14
|
export function doesContainString(template: string, string: string): boolean;
|
15
15
|
export function convertToJS(hbs: any): string;
|
16
16
|
import { FIND_ANY_HBS_REGEX } from "./utilities";
|
17
|
-
|
17
|
+
import { helpersToRemoveForJs } from "./helpers/list";
|
18
|
+
export { setJSRunner, FIND_ANY_HBS_REGEX, helpersToRemoveForJs };
|