@mirantes-micro/foundation-design-system 1.0.55 → 1.0.56
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 +3 -1
- package/dist/index.js +94 -67
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ interface IMirantesFoundationProviderProps {
|
|
|
36
36
|
chatForPage?: boolean;
|
|
37
37
|
mirantesDomain?: string;
|
|
38
38
|
openCageApiKey?: string;
|
|
39
|
+
ocpSubscriptionKey?: string;
|
|
39
40
|
locale?: TLocale;
|
|
40
41
|
Link?: LinkComponent;
|
|
41
42
|
usePathname?: UsePathname;
|
|
@@ -73,6 +74,7 @@ interface IMirantesFoundationContext {
|
|
|
73
74
|
isGettingStats?: boolean;
|
|
74
75
|
Notification?: ReactNode;
|
|
75
76
|
openCageApiKey?: string;
|
|
77
|
+
ocpSubscriptionKey?: string;
|
|
76
78
|
authedApi?: AxiosInstance;
|
|
77
79
|
uploadFilesApi?: AxiosInstance;
|
|
78
80
|
authApiUrl?: string;
|
|
@@ -107,7 +109,7 @@ type User = {
|
|
|
107
109
|
type LinkComponent = (props: CommonLinkProps) => any;
|
|
108
110
|
type UsePathname = () => string;
|
|
109
111
|
|
|
110
|
-
declare function MirantesFoundationProvider({ children, Notification, queryClient, onOpenCreatePostModal, values: { chatApiUrl, chatForPage, locale, Link, usePathname, user, isGettingUser, mirantesDomain, environment, feedApi, widgetsApi, hostUrl, isDev, profileApiUrl, isGettingStats, openCageApiKey, pageId, authedApi, authApiUrl, socketApiUrl, uploadFilesApi, page }, }: IMirantesFoundationProviderProps): React__default.JSX.Element;
|
|
112
|
+
declare function MirantesFoundationProvider({ children, Notification, queryClient, onOpenCreatePostModal, values: { chatApiUrl, chatForPage, locale, Link, usePathname, user, isGettingUser, mirantesDomain, environment, feedApi, widgetsApi, hostUrl, isDev, profileApiUrl, isGettingStats, openCageApiKey, pageId, authedApi, authApiUrl, socketApiUrl, uploadFilesApi, page, ocpSubscriptionKey }, }: IMirantesFoundationProviderProps): React__default.JSX.Element;
|
|
111
113
|
|
|
112
114
|
declare function WorkspacePanel(): React__default.JSX.Element;
|
|
113
115
|
|