@wacht/jsx 0.0.1-alpha.10 → 0.0.1-alpha.12
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.cjs.js +616 -601
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.es.js +6878 -6805
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { CurrentUser } from '@wacht/types';
|
|
|
6
6
|
import { default as default_2 } from 'react';
|
|
7
7
|
import { Deployment } from '@wacht/types';
|
|
8
8
|
import { DeploymentContextType as DeploymentContextType_2 } from '..';
|
|
9
|
+
import { DeploymentUISettings } from '@wacht/types';
|
|
9
10
|
import { DetailedHTMLProps } from 'react';
|
|
10
11
|
import { ErrorInterface } from '@wacht/types';
|
|
11
12
|
import { FastOmit } from 'styled-components';
|
|
@@ -238,12 +239,13 @@ export declare interface DeploymentInvitationData {
|
|
|
238
239
|
error_code?: string;
|
|
239
240
|
}
|
|
240
241
|
|
|
241
|
-
export declare function DeploymentProvider({ children, publicKey, adapter, }: DeploymentProviderProps): JSX.Element;
|
|
242
|
+
export declare function DeploymentProvider({ children, publicKey, adapter, uiOverwrites, }: DeploymentProviderProps): JSX.Element;
|
|
242
243
|
|
|
243
244
|
declare interface DeploymentProviderProps {
|
|
244
245
|
children: ReactNode;
|
|
245
246
|
publicKey: string;
|
|
246
247
|
adapter: PlatformAdapter;
|
|
248
|
+
uiOverwrites?: Partial<DeploymentUISettings>;
|
|
247
249
|
}
|
|
248
250
|
|
|
249
251
|
export declare const Dialog: FC<DialogProps> & {
|
|
@@ -1312,3 +1314,13 @@ export declare interface WaitlistResponse {
|
|
|
1312
1314
|
export * from "@wacht/types";
|
|
1313
1315
|
|
|
1314
1316
|
export { }
|
|
1317
|
+
|
|
1318
|
+
|
|
1319
|
+
declare module "@wacht/types" {
|
|
1320
|
+
interface OrganizationMembershipWithOrganization {
|
|
1321
|
+
eligibility_restriction?: EligibilityRestriction;
|
|
1322
|
+
}
|
|
1323
|
+
interface WorkspaceMembershipWithWorkspace {
|
|
1324
|
+
eligibility_restriction?: EligibilityRestriction;
|
|
1325
|
+
}
|
|
1326
|
+
}
|