@budibase/string-templates 2.1.22-alpha.3 → 2.1.22-alpha.5
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const HelperFunctionBuiltin: string[];
|
|
2
2
|
export namespace HelperFunctionNames {
|
|
3
3
|
const OBJECT: string;
|
|
4
4
|
const ALL: string;
|
|
5
5
|
const LITERAL: string;
|
|
6
6
|
const JS: string;
|
|
7
7
|
}
|
|
8
|
-
export
|
|
8
|
+
export const LITERAL_MARKER: "%LITERAL%";
|
package/dist/utilities.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export const FIND_HBS_REGEX: RegExp;
|
|
2
|
+
export const FIND_ANY_HBS_REGEX: RegExp;
|
|
3
|
+
export const FIND_TRIPLE_HBS_REGEX: RegExp;
|
|
4
4
|
export function findDoubleHbsInstances(string: any): any;
|
|
5
5
|
export function isAlphaNumeric(char: any): any;
|
|
6
6
|
export function swapStrings(string: any, start: any, length: any, swap: any): any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/string-templates",
|
|
3
|
-
"version": "2.1.22-alpha.
|
|
3
|
+
"version": "2.1.22-alpha.5",
|
|
4
4
|
"description": "Handlebars wrapper for Budibase templating.",
|
|
5
5
|
"main": "src/index.cjs",
|
|
6
6
|
"module": "dist/bundle.mjs",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"rollup-plugin-node-globals": "^1.4.0",
|
|
45
45
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
46
46
|
"rollup-plugin-terser": "^7.0.2",
|
|
47
|
-
"typescript": "
|
|
47
|
+
"typescript": "4.7.3"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "0367d466c3c566be54d45d040654929966c836ff"
|
|
50
50
|
}
|