@incodetech/welcome 1.85.0-20251104090115.0 → 1.85.0-20251104182555.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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
|
|
3
|
+
interface ReadyToRenderContextType {
|
|
4
|
+
isReadyToRender: boolean;
|
|
5
|
+
setisReadyToRender: (value: boolean) => void;
|
|
6
|
+
}
|
|
7
|
+
interface ReadyToRenderProviderProps {
|
|
8
|
+
children: ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export declare function ReadyToRenderProvider({ children, }: ReadyToRenderProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare function useReadyToRender(): ReadyToRenderContextType;
|
|
12
|
+
export {};
|
|
@@ -171,6 +171,7 @@ export declare const mergeUiConfig: (uiConfig: CaptureIdProps['uiConfig'], theme
|
|
|
171
171
|
readonly positive: string;
|
|
172
172
|
readonly invert: string;
|
|
173
173
|
readonly success: string;
|
|
174
|
+
readonly disabled: string;
|
|
174
175
|
};
|
|
175
176
|
readonly border: {
|
|
176
177
|
readonly primary: string;
|