@mindly/ui-components 8.2.18 → 8.2.19
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/cjs/index.js +1 -1
- package/dist/cjs/lib2/features/GoogleCalendarModalFeature/GoogleCalendarModalFeature.d.ts +3 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/features/GoogleCalendarModalFeature/GoogleCalendarModalFeature.d.ts +3 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { WithTranslation } from 'react-i18next';
|
|
3
|
+
import { CardModalProps } from '../CardModal/CardModal';
|
|
3
4
|
type GoogleCalendarModalFeatureProps = {
|
|
4
5
|
isOpen: boolean;
|
|
5
6
|
status: 'active' | 'inactive' | 'access_denied';
|
|
@@ -9,6 +10,6 @@ type GoogleCalendarModalFeatureProps = {
|
|
|
9
10
|
isLoading: boolean;
|
|
10
11
|
imageUrl: string;
|
|
11
12
|
t: WithTranslation['t'];
|
|
12
|
-
};
|
|
13
|
-
export declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): React.ReactElement;
|
|
13
|
+
} & CardModalProps;
|
|
14
|
+
export declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, ...cardModalProps }: GoogleCalendarModalFeatureProps): React.ReactElement;
|
|
14
15
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -2839,8 +2839,8 @@ type GoogleCalendarModalFeatureProps = {
|
|
|
2839
2839
|
isLoading: boolean;
|
|
2840
2840
|
imageUrl: string;
|
|
2841
2841
|
t: WithTranslation['t'];
|
|
2842
|
-
};
|
|
2843
|
-
declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): React$1.ReactElement;
|
|
2842
|
+
} & CardModalProps;
|
|
2843
|
+
declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, ...cardModalProps }: GoogleCalendarModalFeatureProps): React$1.ReactElement;
|
|
2844
2844
|
|
|
2845
2845
|
type ReviewCardFeatureVariantType = 'default' | 'outlined' | 'full' | 'store' | 'starFirst';
|
|
2846
2846
|
declare const _default$O: React__default.NamedExoticComponent<{
|