@mindly/ui-components 3.11.5 → 3.13.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/AgoraMediaPlayer/AgoraMediaPlayer.d.ts +1 -0
- package/dist/cjs/types/lib/BrowserNotSupport/NotSupportModal.d.ts +2 -0
- package/dist/cjs/types/lib/RoundButton/RoundButton.d.ts +1 -1
- package/dist/cjs/types/lib/RoundButton/RoundButton.styled.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/AgoraMediaPlayer/AgoraMediaPlayer.d.ts +1 -0
- package/dist/esm/types/lib/BrowserNotSupport/NotSupportModal.d.ts +2 -0
- package/dist/esm/types/lib/RoundButton/RoundButton.d.ts +1 -1
- package/dist/esm/types/lib/RoundButton/RoundButton.styled.d.ts +1 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ export declare type MediaPlayerProps = {
|
|
|
10
10
|
fallbackAvatar?: string;
|
|
11
11
|
fallbackName?: string;
|
|
12
12
|
showControls: boolean;
|
|
13
|
+
isScreenSharing?: boolean;
|
|
13
14
|
} & HTMLAttributes<HTMLDivElement>;
|
|
14
15
|
declare const _default: React.NamedExoticComponent<MediaPlayerProps>;
|
|
15
16
|
export default _default;
|
|
@@ -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;
|
|
@@ -4,7 +4,7 @@ declare type RoundButtonPropsType = {
|
|
|
4
4
|
onClickHandler?: () => void;
|
|
5
5
|
buttonText?: string;
|
|
6
6
|
buttonIcon?: string;
|
|
7
|
-
buttonType?: 'transparent' | 'fullFill' | 'reject';
|
|
7
|
+
buttonType?: 'transparent' | 'fullFill' | 'reject' | 'success';
|
|
8
8
|
dimension?: number;
|
|
9
9
|
transformed?: boolean;
|
|
10
10
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const StyledRoundButtonContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
2
|
export declare const StyledRoundButtonText: import("styled-components").StyledComponent<"p", any, {}, never>;
|
|
3
3
|
declare type StyledControlPanelButtonPropsType = {
|
|
4
|
-
buttonType?: 'transparent' | 'fullFill' | 'reject';
|
|
4
|
+
buttonType?: 'transparent' | 'fullFill' | 'reject' | 'success';
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
dimension?: number;
|
|
7
7
|
transformed?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -442,6 +442,7 @@ declare type MediaPlayerProps = {
|
|
|
442
442
|
fallbackAvatar?: string;
|
|
443
443
|
fallbackName?: string;
|
|
444
444
|
showControls: boolean;
|
|
445
|
+
isScreenSharing?: boolean;
|
|
445
446
|
} & HTMLAttributes<HTMLDivElement>;
|
|
446
447
|
declare const _default$4: React.NamedExoticComponent<MediaPlayerProps>;
|
|
447
448
|
|
|
@@ -450,7 +451,7 @@ declare type RoundButtonPropsType = {
|
|
|
450
451
|
onClickHandler?: () => void;
|
|
451
452
|
buttonText?: string;
|
|
452
453
|
buttonIcon?: string;
|
|
453
|
-
buttonType?: 'transparent' | 'fullFill' | 'reject';
|
|
454
|
+
buttonType?: 'transparent' | 'fullFill' | 'reject' | 'success';
|
|
454
455
|
dimension?: number;
|
|
455
456
|
transformed?: boolean;
|
|
456
457
|
};
|
|
@@ -633,6 +634,8 @@ declare type NotSupportModalProps = {
|
|
|
633
634
|
redText?: React.ReactElement;
|
|
634
635
|
mainText?: React.ReactElement;
|
|
635
636
|
buttonLink?: string;
|
|
637
|
+
type?: 'danger' | 'primary';
|
|
638
|
+
title?: string;
|
|
636
639
|
} & JSX$1.IonModal;
|
|
637
640
|
declare const NotSupportModal: React.FC<NotSupportModalProps>;
|
|
638
641
|
|