@mindly/ui-components 7.4.0-dev.7 → 7.4.0-dev.8
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.
|
@@ -2,7 +2,8 @@ import { PropsWithChildren } from 'react';
|
|
|
2
2
|
import { TranslationType } from '../../shared/types';
|
|
3
3
|
type AppNotSupportedProps = {
|
|
4
4
|
isOpen: boolean;
|
|
5
|
-
|
|
5
|
+
onUpdate?: () => void;
|
|
6
|
+
redirectToWeb?: () => void;
|
|
6
7
|
} & TranslationType;
|
|
7
|
-
export declare function AppNotSupportedFeature({ isOpen,
|
|
8
|
+
export declare function AppNotSupportedFeature({ isOpen, t, children, onUpdate, redirectToWeb, }: PropsWithChildren<AppNotSupportedProps>): JSX.Element;
|
|
8
9
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -2827,9 +2827,10 @@ declare const ReviewsCardFeatureSkeleton: React__default.MemoExoticComponent<()
|
|
|
2827
2827
|
|
|
2828
2828
|
type AppNotSupportedProps = {
|
|
2829
2829
|
isOpen: boolean;
|
|
2830
|
-
|
|
2830
|
+
onUpdate?: () => void;
|
|
2831
|
+
redirectToWeb?: () => void;
|
|
2831
2832
|
} & TranslationType;
|
|
2832
|
-
declare function AppNotSupportedFeature({ isOpen,
|
|
2833
|
+
declare function AppNotSupportedFeature({ isOpen, t, children, onUpdate, redirectToWeb, }: PropsWithChildren<AppNotSupportedProps>): JSX.Element;
|
|
2833
2834
|
|
|
2834
2835
|
type ScreenInputUpdateFeatureProps = {
|
|
2835
2836
|
children?: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindly/ui-components",
|
|
3
|
-
"version": "7.4.0-dev.
|
|
3
|
+
"version": "7.4.0-dev.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/polyfill": "7.12.1",
|
|
19
|
-
"@capacitor/core": "7.4.1",
|
|
20
19
|
"@capacitor/app": "7.0.1",
|
|
21
20
|
"@capacitor/clipboard": "7.0.1",
|
|
22
21
|
"@capacitor/haptics": "7.0.1",
|