@budibase/string-templates 3.4.22 → 3.4.24
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.cjs +2 -2
- package/dist/bundle.mjs +2 -2
- package/dist/helpers/constants.d.ts +1 -0
- package/dist/helpers/index.d.ts +2 -0
- package/package.json +2 -2
package/dist/helpers/index.d.ts
CHANGED
@@ -1,5 +1,7 @@
|
|
1
|
+
import Helper from "./Helper";
|
1
2
|
import Handlebars from "handlebars";
|
2
3
|
export { getJsHelperList } from "./list";
|
4
|
+
export declare const HELPERS: Helper[];
|
3
5
|
export declare function HelperNames(): string[];
|
4
6
|
export declare function registerMinimum(handlebars: typeof Handlebars): void;
|
5
7
|
export declare function registerAll(handlebars: typeof Handlebars): void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@budibase/string-templates",
|
3
|
-
"version": "3.4.
|
3
|
+
"version": "3.4.24",
|
4
4
|
"description": "Handlebars wrapper for Budibase templating.",
|
5
5
|
"main": "dist/bundle.cjs",
|
6
6
|
"module": "dist/bundle.mjs",
|
@@ -43,5 +43,5 @@
|
|
43
43
|
"ts-jest": "29.1.1",
|
44
44
|
"typescript": "5.7.2"
|
45
45
|
},
|
46
|
-
"gitHead": "
|
46
|
+
"gitHead": "91298a9929a20e89b0672d861cc9deafff68a3e8"
|
47
47
|
}
|