@mindly/ui-components 3.10.3 → 3.10.4
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/BrowserNotSupport/NotSupportModal.d.ts +1 -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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ declare type NotSupportModalProps = {
|
|
|
4
4
|
closeModal?: () => void;
|
|
5
5
|
redText?: React.ReactElement;
|
|
6
6
|
mainText?: React.ReactElement;
|
|
7
|
+
buttonLink?: string;
|
|
7
8
|
} & JSX.IonModal;
|
|
8
9
|
declare const NotSupportModal: React.FC<NotSupportModalProps>;
|
|
9
10
|
export default NotSupportModal;
|
package/dist/index.d.ts
CHANGED
|
@@ -630,6 +630,7 @@ declare type NotSupportModalProps = {
|
|
|
630
630
|
closeModal?: () => void;
|
|
631
631
|
redText?: React.ReactElement;
|
|
632
632
|
mainText?: React.ReactElement;
|
|
633
|
+
buttonLink?: string;
|
|
633
634
|
} & JSX$1.IonModal;
|
|
634
635
|
declare const NotSupportModal: React.FC<NotSupportModalProps>;
|
|
635
636
|
|