@frigade/react 1.32.53 → 1.32.55
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/lib/index.d.ts +5 -1
- package/lib/index.js +116 -112
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +125 -121
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -44,6 +44,10 @@ interface StepData {
|
|
|
44
44
|
* Secondary button URI target (either _blank or _self)
|
|
45
45
|
*/
|
|
46
46
|
secondaryButtonUriTarget?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Text on button if a back button is present
|
|
49
|
+
*/
|
|
50
|
+
backButtonTitle?: string;
|
|
47
51
|
/**
|
|
48
52
|
* If true, the step will be marked as completed when the secondary button is clicked.
|
|
49
53
|
*/
|
|
@@ -542,7 +546,7 @@ declare function useOrganization(): {
|
|
|
542
546
|
};
|
|
543
547
|
|
|
544
548
|
declare function Label({ title, required, appearance, }: {
|
|
545
|
-
title
|
|
549
|
+
title?: string;
|
|
546
550
|
required: boolean;
|
|
547
551
|
appearance?: Appearance;
|
|
548
552
|
}): JSX.Element;
|