@wacht/jsx 1.0.0-beta.4 → 1.0.0-beta.6

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
@@ -13,6 +13,7 @@ import { ButtonHTMLAttributes } from 'react';
13
13
  import { CancelReplayTaskOptions } from '@wacht/types';
14
14
  import { CancelReplayTaskResponse } from '@wacht/types';
15
15
  import { Client } from '@wacht/types';
16
+ import { ComponentPropsWithoutRef } from 'react';
16
17
  import { ConsentURLResponse } from '@wacht/types';
17
18
  import { ConversationMessage } from '@wacht/types';
18
19
  import { CreateApiAuthKeyInput } from '@wacht/types';
@@ -191,6 +192,10 @@ declare interface CreateWorkspaceFormProps {
191
192
  onCreateOrganization?: () => void;
192
193
  }
193
194
 
195
+ export declare function DefaultStylesProvider({ children, style, ...props }: DefaultStylesProviderProps): JSX.Element;
196
+
197
+ declare type DefaultStylesProviderProps = ComponentPropsWithoutRef<"div">;
198
+
194
199
  export declare interface DeploymentContextType {
195
200
  loading: boolean;
196
201
  deployment: Deployment | null;