From a3435728150c9a981fdb3b3f8b0919dcbd1eef27 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Tue, 7 Nov 2023 14:36:57 +0000 Subject: [PATCH] Add utils to client lib --- packages/client/src/sdk.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/client/src/sdk.js b/packages/client/src/sdk.js index 77089d648b..b83039df2a 100644 --- a/packages/client/src/sdk.js +++ b/packages/client/src/sdk.js @@ -14,6 +14,7 @@ import { dndIsDragging, confirmationStore, roleStore, + stateStore, } from "stores" import { styleable } from "utils/styleable" import { linkable } from "utils/linkable" @@ -25,6 +26,7 @@ import { ActionTypes } from "./constants" import { fetchDatasourceSchema } from "./utils/schema.js" import { getAPIKey } from "./utils/api.js" import { enrichButtonActions } from "./utils/buttonActions.js" +import { processStringSync } from "@budibase/string-templates" export default { API, @@ -44,6 +46,7 @@ export default { currentRole, confirmationStore, roleStore, + stateStore, // Utils styleable, @@ -52,6 +55,7 @@ export default { fetchDatasourceSchema, getAPIKey, enrichButtonActions, + processStringSync, // Components Provider,