@frigade/react 1.34.4 → 1.35.0
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 +2 -1
- package/lib/index.js +104 -95
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +215 -206
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ interface BaseTheme {
|
|
|
177
177
|
colorTextSecondary?: string;
|
|
178
178
|
colorTextDisabled?: string;
|
|
179
179
|
colorTextError?: string;
|
|
180
|
+
colorTextSuccess?: string;
|
|
180
181
|
colorBorder?: string;
|
|
181
182
|
fontSize?: string | number;
|
|
182
183
|
fontSmoothing?: string;
|
|
@@ -608,7 +609,7 @@ interface FrigadeTourProps extends Omit<DefaultFrigadeFlowProps, 'flowId'> {
|
|
|
608
609
|
* How to position the tooltips with CSS. Defaults to `absolute`.
|
|
609
610
|
* @ignore
|
|
610
611
|
*/
|
|
611
|
-
cssPosition?: 'fixed' | 'absolute' | '
|
|
612
|
+
cssPosition?: 'fixed' | 'absolute' | 'static';
|
|
612
613
|
}
|
|
613
614
|
declare const FrigadeTour: FC<FrigadeTourProps & {
|
|
614
615
|
flowId: string;
|