@mindly/ui-components 5.6.1 → 5.7.0

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.
@@ -0,0 +1,2 @@
1
+ import { PushNotificationsModalProps } from './types';
2
+ export declare function PushNotificationsModal({ onApplyPermission, onDismissPermission, isOpen, title, description, heightInPx, applyPermissionText, dismissPermissionText, ...props }: PushNotificationsModalProps): JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './PushNotificationsModal';
@@ -0,0 +1,10 @@
1
+ import { JSX as IonicJSX } from '@ionic/core/components';
2
+ export type PushNotificationsModalProps = IonicJSX.IonModal & {
3
+ onApplyPermission: () => void;
4
+ onDismissPermission: () => void;
5
+ title: string;
6
+ applyPermissionText: string;
7
+ dismissPermissionText: string;
8
+ description: string;
9
+ heightInPx?: number;
10
+ };
@@ -2,3 +2,4 @@ export * from './CountryOfOriginModal';
2
2
  export * from './ChangeLanguageModal';
3
3
  export * from './CardModal';
4
4
  export * from './SlotsGrid';
5
+ export * from './PushNotificationsModal';
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconChat3d: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -30,3 +30,4 @@ export * from './IconApple';
30
30
  export * from './IconGoogle';
31
31
  export * from './IconLetter';
32
32
  export * from './IconSpinner';
33
+ export * from './IconChat3d';
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ declare const ModalSheet: React.ForwardRefExoticComponent<import("@ionic/core/dist/types/components").JSX.IonModal & {
3
+ children?: React.ReactNode;
4
+ } & {
5
+ heightInPx?: number | undefined;
6
+ className?: string | undefined;
7
+ } & React.RefAttributes<HTMLIonModalElement>>;
8
+ export default ModalSheet;
@@ -0,0 +1 @@
1
+ export { default as ModalSheet } from './ModalSheet';
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { JSX } from '@ionic/core/components';
3
+ export type ModalSheetProps = React.PropsWithChildren<JSX.IonModal> & {
4
+ heightInPx?: number;
5
+ className?: string;
6
+ };
@@ -17,3 +17,4 @@ export * from './IconButton';
17
17
  export * from './Toast';
18
18
  export * from './ScreenInput';
19
19
  export * from './Spinner_v2';
20
+ export * from './ModalSheet';