@budibase/string-templates 2.3.20 → 2.3.21-alpha.0

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +15 -15
  2. package/package.json +2 -2
package/dist/index.d.mts CHANGED
@@ -1,18 +1,18 @@
1
1
  /**
2
2
  * ES6 entrypoint for rollup
3
3
  */
4
- export const isValid: any;
5
- export const makePropSafe: any;
6
- export const getManifest: any;
7
- export const isJSBinding: any;
8
- export const encodeJSBinding: any;
9
- export const decodeJSBinding: any;
10
- export const processStringSync: any;
11
- export const processObjectSync: any;
12
- export const processString: any;
13
- export const processObject: any;
14
- export const doesContainStrings: any;
15
- export const doesContainString: any;
16
- export const disableEscaping: any;
17
- export const findHBSBlocks: any;
18
- export const convertToJS: any;
4
+ export const isValid: (string: any, opts?: any) => boolean;
5
+ export const makePropSafe: (property: string) => string;
6
+ export const getManifest: () => any;
7
+ export const isJSBinding: (handlebars: any) => boolean;
8
+ export const encodeJSBinding: (javascript: any) => string;
9
+ export const decodeJSBinding: (handlebars: any) => string;
10
+ export const processStringSync: (string: string, context: any, opts?: any) => string;
11
+ export const processObjectSync: (object: any, context: any, opts?: any) => any;
12
+ export const processString: (string: string, context: any, opts?: any) => Promise<string>;
13
+ export const processObject: (object: any, context: any, opts?: any) => Promise<any>;
14
+ export const doesContainStrings: (template: string, strings: string[]) => boolean;
15
+ export const doesContainString: (template: string, string: string) => boolean;
16
+ export const disableEscaping: (string: any) => any;
17
+ export const findHBSBlocks: (string: string) => string[];
18
+ export const convertToJS: (hbs: any) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/string-templates",
3
- "version": "2.3.20",
3
+ "version": "2.3.21-alpha.0",
4
4
  "description": "Handlebars wrapper for Budibase templating.",
5
5
  "main": "src/index.cjs",
6
6
  "module": "dist/bundle.mjs",
@@ -46,5 +46,5 @@
46
46
  "rollup-plugin-terser": "^7.0.2",
47
47
  "typescript": "4.7.3"
48
48
  },
49
- "gitHead": "6963c46ab30c99df435ec7674b515f714ea5f896"
49
+ "gitHead": "e07c36dd8ca5d1fcfcf18961457dc539016535ca"
50
50
  }