@frigade/react 1.38.42 → 1.38.44

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/index.d.ts CHANGED
@@ -122,6 +122,40 @@ interface StepData {
122
122
  * Whether to show a highlight in the page where the step is shown. Typically used in tooltips for creating small pings.
123
123
  */
124
124
  showHighlight?: boolean;
125
+ /**
126
+ * Config for the primary button in this step
127
+ */
128
+ primaryButton?: {
129
+ /**
130
+ * Primary button URI target (defaults to _self).
131
+ */
132
+ target?: string;
133
+ /**
134
+ * Primary button title. If omitted, the primary button will not be shown.
135
+ */
136
+ title?: string;
137
+ /**
138
+ * Primary button URI.
139
+ */
140
+ uri?: string;
141
+ };
142
+ /**
143
+ * Config for the secondary button in this step
144
+ */
145
+ secondaryButton?: {
146
+ /**
147
+ * Secondary button URI target (defaults to _self).
148
+ */
149
+ target?: string;
150
+ /**
151
+ * Secondary button title. If omitted, the secondary button will not be shown.
152
+ */
153
+ title?: string;
154
+ /**
155
+ * Secondary button URI.
156
+ */
157
+ uri?: string;
158
+ };
125
159
  /**
126
160
  * Any other additional props defined in config.yml
127
161
  */