@integry/sdk 4.7.49 → 4.7.51
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/esm/index.csm.d.ts
CHANGED
|
@@ -253,6 +253,14 @@ type ShowFunctionOptions = {
|
|
|
253
253
|
autoMapPayload?: boolean;
|
|
254
254
|
version?: string | null;
|
|
255
255
|
allow_workspace_connected_accounts?: boolean;
|
|
256
|
+
submitButtonText?: string; // Optional prop to customize the submit button text
|
|
257
|
+
onChangeCallback?: (data: {
|
|
258
|
+
fieldMachineName: string;
|
|
259
|
+
value: any;
|
|
260
|
+
}) => void;
|
|
261
|
+
hideSubmitButton?: boolean; // Optional prop to hide the submit button
|
|
262
|
+
hideFunctionTitle?: boolean; // Optional prop to hide the function title header
|
|
263
|
+
hiddenFields?: string[]; // Field machine names that should be hidden by default
|
|
256
264
|
};
|
|
257
265
|
type RenderAppAuthrozationsOptions = {
|
|
258
266
|
containerId: string;
|