odaptos_design_system 2.0.39 → 2.0.41
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/Atoms/Buttons/MksiteButton.d.ts +11 -0
- package/dist/DesignTokens/Icons/Interaction/AccountIconMksite.d.ts +7 -0
- package/dist/DesignTokens/Icons/index.d.ts +1 -0
- package/dist/Molecules/Interviews/SelfProtocolManager.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/odaptos_design_system.cjs.development.js +588 -534
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +570 -518
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Atoms/Buttons/MksiteButton.modules.scss +84 -0
- package/src/Atoms/Buttons/MksiteButton.tsx +41 -0
- package/src/DesignTokens/Icons/Interaction/AccountIconMksite.tsx +37 -0
- package/src/DesignTokens/Icons/index.ts +1 -0
- package/src/Molecules/Interviews/SelfProtocolManager.tsx +7 -3
- package/src/index.ts +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React, { HTMLAttributes } from 'react';
|
|
2
|
+
export interface MksiteButtonProps extends HTMLAttributes<HTMLButtonElement> {
|
|
3
|
+
variant?: 'primary' | 'secondary';
|
|
4
|
+
iconLeft?: JSX.Element;
|
|
5
|
+
iconRight?: JSX.Element;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
text: string;
|
|
8
|
+
className?: string;
|
|
9
|
+
}
|
|
10
|
+
/** Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=131-253&mode=dev */
|
|
11
|
+
export declare const MksiteButton: ({ variant, iconLeft, iconRight, text, disabled, className, ...props }: MksiteButtonProps) => React.JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SvgIconProps } from '@mui/material';
|
|
3
|
+
interface CustomSvgProps {
|
|
4
|
+
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
5
|
+
}
|
|
6
|
+
export default function AccountIconMksite({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -61,6 +61,7 @@ export { default as VideoFlag2 } from './Illustrations/VideoFlag2';
|
|
|
61
61
|
export { default as VideoFlagGreen } from './Illustrations/VideoFlagGreen';
|
|
62
62
|
export { default as WaitingMen } from './Illustrations/WaitingMen';
|
|
63
63
|
export { default as AccountIcon } from './Interaction/AccountIcon';
|
|
64
|
+
export { default as AccountIconMksite } from './Interaction/AccountIconMksite';
|
|
64
65
|
export { default as AddIcon } from './Interaction/AddIcon';
|
|
65
66
|
export { default as AddTagIcon } from './Interaction/AddTagIcon';
|
|
66
67
|
export { default as AgendaIcon } from './Interaction/AgendaIcon';
|
|
@@ -34,7 +34,7 @@ export interface SelfProtocolManagerProps extends HTMLAttributes<HTMLDivElement>
|
|
|
34
34
|
areAllTasksSend?: boolean;
|
|
35
35
|
isLastScenario?: boolean;
|
|
36
36
|
isRecordingFinished?: boolean;
|
|
37
|
-
isUserSharingScreen
|
|
37
|
+
isUserSharingScreen?: boolean;
|
|
38
38
|
isScreenShareMessageDisplayed?: boolean;
|
|
39
39
|
disabledStopRecording?: boolean;
|
|
40
40
|
isExtensionDownloaded?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from './Atoms/Avatar/Avatar';
|
|
|
3
3
|
export * from './Atoms/Badge/Badge';
|
|
4
4
|
export * from './Atoms/Box/Box';
|
|
5
5
|
export * from './Atoms/Buttons/Button';
|
|
6
|
+
export * from './Atoms/Buttons/MksiteButton';
|
|
6
7
|
export * from './Atoms/Buttons/IconButton';
|
|
7
8
|
export * from './Atoms/Cards/Card';
|
|
8
9
|
export * from './Atoms/Cards/CardButton';
|