@mindly/ui-components 3.10.1 → 3.10.3
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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/BrowserNotSupport/NotSupportModal.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/BrowserNotSupport/NotSupportModal.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2,6 +2,8 @@ import React from 'react';
|
|
|
2
2
|
import { JSX } from '@ionic/core/components';
|
|
3
3
|
declare type NotSupportModalProps = {
|
|
4
4
|
closeModal?: () => void;
|
|
5
|
+
redText?: React.ReactElement;
|
|
6
|
+
mainText?: React.ReactElement;
|
|
5
7
|
} & JSX.IonModal;
|
|
6
8
|
declare const NotSupportModal: React.FC<NotSupportModalProps>;
|
|
7
9
|
export default NotSupportModal;
|
package/dist/index.d.ts
CHANGED
|
@@ -628,6 +628,8 @@ declare const _default: React.NamedExoticComponent<VideoPlayerProps>;
|
|
|
628
628
|
|
|
629
629
|
declare type NotSupportModalProps = {
|
|
630
630
|
closeModal?: () => void;
|
|
631
|
+
redText?: React.ReactElement;
|
|
632
|
+
mainText?: React.ReactElement;
|
|
631
633
|
} & JSX$1.IonModal;
|
|
632
634
|
declare const NotSupportModal: React.FC<NotSupportModalProps>;
|
|
633
635
|
|