@mindly/ui-components 3.11.5 → 3.12.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.
- 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
|
@@ -5,6 +5,8 @@ declare type NotSupportModalProps = {
|
|
|
5
5
|
redText?: React.ReactElement;
|
|
6
6
|
mainText?: React.ReactElement;
|
|
7
7
|
buttonLink?: string;
|
|
8
|
+
type?: 'danger' | 'primary';
|
|
9
|
+
title?: string;
|
|
8
10
|
} & JSX.IonModal;
|
|
9
11
|
declare const NotSupportModal: React.FC<NotSupportModalProps>;
|
|
10
12
|
export default NotSupportModal;
|
package/dist/index.d.ts
CHANGED
|
@@ -633,6 +633,8 @@ declare type NotSupportModalProps = {
|
|
|
633
633
|
redText?: React.ReactElement;
|
|
634
634
|
mainText?: React.ReactElement;
|
|
635
635
|
buttonLink?: string;
|
|
636
|
+
type?: 'danger' | 'primary';
|
|
637
|
+
title?: string;
|
|
636
638
|
} & JSX$1.IonModal;
|
|
637
639
|
declare const NotSupportModal: React.FC<NotSupportModalProps>;
|
|
638
640
|
|