@mindly/ui-components 5.57.0 → 5.57.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.
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
1
2
|
import { TranslationType } from '../../shared/types';
|
|
2
3
|
type AppNotSupportedProps = {
|
|
3
4
|
isOpen: boolean;
|
|
4
5
|
showMessenger: () => void;
|
|
5
6
|
} & TranslationType;
|
|
6
|
-
export declare function AppNotSupportedFeature({ isOpen, showMessenger, t, }: AppNotSupportedProps): JSX.Element;
|
|
7
|
+
export declare function AppNotSupportedFeature({ isOpen, showMessenger, t, children }: PropsWithChildren<AppNotSupportedProps>): JSX.Element;
|
|
7
8
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent, SVGAttributes, InputHTMLAttributes, SVGProps } from 'react';
|
|
2
|
+
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent, SVGAttributes, InputHTMLAttributes, SVGProps, PropsWithChildren } from 'react';
|
|
3
3
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
4
4
|
import * as react_i18next from 'react-i18next';
|
|
5
5
|
import { WithTranslation } from 'react-i18next';
|
|
@@ -2617,7 +2617,7 @@ type AppNotSupportedProps = {
|
|
|
2617
2617
|
isOpen: boolean;
|
|
2618
2618
|
showMessenger: () => void;
|
|
2619
2619
|
} & TranslationType;
|
|
2620
|
-
declare function AppNotSupportedFeature({ isOpen, showMessenger, t, }: AppNotSupportedProps): JSX.Element;
|
|
2620
|
+
declare function AppNotSupportedFeature({ isOpen, showMessenger, t, children }: PropsWithChildren<AppNotSupportedProps>): JSX.Element;
|
|
2621
2621
|
|
|
2622
2622
|
type ScreenInputUpdateFeatureProps = {
|
|
2623
2623
|
children?: any;
|