@saas-support/react 0.7.0 → 0.7.1
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 +1 -0
- package/dist/react.cjs +591 -301
- package/dist/react.d.ts +11 -0
- package/dist/react.js +1735 -1047
- package/package.json +1 -1
package/dist/react.d.ts
CHANGED
|
@@ -344,6 +344,7 @@ export declare interface Org {
|
|
|
344
344
|
slug: string;
|
|
345
345
|
avatarUrl?: string;
|
|
346
346
|
metadata?: string;
|
|
347
|
+
planName?: string;
|
|
347
348
|
}
|
|
348
349
|
|
|
349
350
|
export declare function OrgSwitcher({ appearance: localAppearance, onOrgChange }: OrgSwitcherProps): JSX_2.Element | null;
|
|
@@ -568,6 +569,16 @@ export declare interface SavedQueryListProps {
|
|
|
568
569
|
appearance?: Appearance;
|
|
569
570
|
}
|
|
570
571
|
|
|
572
|
+
export declare function SettingsPanel({ onClose, afterDeleteAccountUrl, defaultTab }: SettingsPanelProps): JSX_2.Element;
|
|
573
|
+
|
|
574
|
+
export declare interface SettingsPanelProps {
|
|
575
|
+
onClose: () => void;
|
|
576
|
+
afterDeleteAccountUrl?: string;
|
|
577
|
+
defaultTab?: SettingsTab;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
declare type SettingsTab = 'profile' | 'organization' | 'people' | 'billing';
|
|
581
|
+
|
|
571
582
|
export declare function SignIn({ appearance: localAppearance, signUpUrl, onSignUp }: SignInProps): JSX_2.Element;
|
|
572
583
|
|
|
573
584
|
export declare interface SignInProps {
|