odaptos_design_system 1.4.13 → 1.4.15
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/DatePicker/DatePicker.d.ts +28 -0
- package/dist/Icons/Miscellaneous/AppWindowPieIcon.d.ts +3 -0
- package/dist/Icons/index.d.ts +2 -1
- package/dist/odaptos_design_system.cjs.development.js +76 -47
- 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 +76 -48
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Buttons/Button.modules.scss +1 -1
- package/src/DatePicker/DatePicker.modules.scss +55 -0
- package/src/DatePicker/DatePicker.tsx +81 -0
- package/src/Icons/Interaction/BinIcon.tsx +30 -25
- package/src/Icons/Miscellaneous/AppWindowPieIcon.tsx +32 -0
- package/src/Icons/index.ts +2 -1
- package/src/Notifications/Banner.modules.scss +7 -0
- package/src/SingleSelect/SingleSelect.tsx +2 -2
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
.button_secondary {
|
|
35
35
|
background: transparent;
|
|
36
|
-
border: 1px solid
|
|
36
|
+
border: 1px solid var(--color-neutral-basics-black, #00040a);
|
|
37
37
|
&:hover {
|
|
38
38
|
border: 1px solid var(--color-neutral-basics-black, #00040a);
|
|
39
39
|
background: var(--color-neutral-clear-shades-200, #e1e1e2);
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
.input {
|
|
2
|
+
min-width: 12.5rem;
|
|
3
|
+
width: 100%;
|
|
4
|
+
font-family: var(--sdFontFamilyOpenSans);
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: var(--sdFontWeightRegular);
|
|
7
|
+
font-size: var(--sdTypoTextNoDecorationRegularBase);
|
|
8
|
+
line-height: var(--sdLineHeight130);
|
|
9
|
+
letter-spacing: var(--sdLetterSpacingButtons);
|
|
10
|
+
text-align: left;
|
|
11
|
+
margin: unset;
|
|
12
|
+
|
|
13
|
+
svg {
|
|
14
|
+
height: 0.75rem;
|
|
15
|
+
width: 0.75rem;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
input {
|
|
20
|
+
font-style: normal;
|
|
21
|
+
font-weight: var(--sdFontWeightRegular);
|
|
22
|
+
font-size: var(--sdTypoTextNoDecorationRegularBase);
|
|
23
|
+
line-height: var(--sdLineHeight130);
|
|
24
|
+
letter-spacing: var(--sdLetterSpacingButtons);
|
|
25
|
+
text-align: left;
|
|
26
|
+
margin: unset;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
input.input {
|
|
30
|
+
height: 1rem;
|
|
31
|
+
}
|
|
32
|
+
.MuiInputBase-root-MuiOutlinedInput-root {
|
|
33
|
+
font-family: var(--sdFontFamilyOpenSans);
|
|
34
|
+
font-style: normal;
|
|
35
|
+
font-weight: var(--sdFontWeightRegular);
|
|
36
|
+
font-size: var(--sdTypoTextNoDecorationRegularBase);
|
|
37
|
+
line-height: var(--sdLineHeight130);
|
|
38
|
+
letter-spacing: var(--sdLetterSpacingButtons);
|
|
39
|
+
text-align: left;
|
|
40
|
+
margin: unset;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.input_top_label {
|
|
44
|
+
margin-bottom: 0.625rem;
|
|
45
|
+
}
|
|
46
|
+
.input .MuiInputBase-input {
|
|
47
|
+
color: var(--gray-black);
|
|
48
|
+
font-family: 'OpenSans';
|
|
49
|
+
font-size: 1rem;
|
|
50
|
+
padding: 0.375rem 0.75rem;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.text_below {
|
|
54
|
+
margin: 0.25rem 0.5rem 0.25rem 0.75rem;
|
|
55
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Text } from '../Typography/Text';
|
|
3
|
+
import styles from './DatePicker.modules.scss';
|
|
4
|
+
import { DatePicker as MuiDatePicker } from '@mui/x-date-pickers/DatePicker';
|
|
5
|
+
|
|
6
|
+
interface InputProps {
|
|
7
|
+
className?: string;
|
|
8
|
+
rightIcon?: JSX.Element;
|
|
9
|
+
leftIcon?: JSX.Element;
|
|
10
|
+
variant?: 'filled' | 'standard' | 'outlined';
|
|
11
|
+
topLabel?: string | undefined;
|
|
12
|
+
placeholder?: string;
|
|
13
|
+
label?: string;
|
|
14
|
+
required?: boolean | undefined;
|
|
15
|
+
name?: string;
|
|
16
|
+
value: string | number;
|
|
17
|
+
onChange: (event: any) => void;
|
|
18
|
+
onBlur?: (event: any) => void;
|
|
19
|
+
onKeyDown?: () => void;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
type?: 'number' | 'text' | 'password';
|
|
22
|
+
id?: string;
|
|
23
|
+
helperText?: string;
|
|
24
|
+
errorText?: string;
|
|
25
|
+
error?: boolean;
|
|
26
|
+
multiline?: boolean;
|
|
27
|
+
rows?: number;
|
|
28
|
+
inputProps?: any;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/** Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=738-5899&mode=dev */
|
|
32
|
+
export const DatePicker = (props: InputProps) => {
|
|
33
|
+
const {
|
|
34
|
+
className,
|
|
35
|
+
topLabel,
|
|
36
|
+
required = false,
|
|
37
|
+
value,
|
|
38
|
+
onChange,
|
|
39
|
+
error,
|
|
40
|
+
id,
|
|
41
|
+
helperText,
|
|
42
|
+
errorText,
|
|
43
|
+
} = props;
|
|
44
|
+
|
|
45
|
+
return (
|
|
46
|
+
<div className={`${className} ${styles.input}`} id={id}>
|
|
47
|
+
{topLabel && (
|
|
48
|
+
<Text
|
|
49
|
+
text={`${topLabel ? topLabel : ''}`}
|
|
50
|
+
weight="bold"
|
|
51
|
+
size="base"
|
|
52
|
+
className={styles.input_top_label}
|
|
53
|
+
required={required}
|
|
54
|
+
/>
|
|
55
|
+
)}
|
|
56
|
+
<MuiDatePicker
|
|
57
|
+
label="Controlled picker"
|
|
58
|
+
value={value}
|
|
59
|
+
onChange={onChange}
|
|
60
|
+
/>
|
|
61
|
+
|
|
62
|
+
{errorText && error && (
|
|
63
|
+
<Text
|
|
64
|
+
size="xs"
|
|
65
|
+
color="#F54C4C"
|
|
66
|
+
italic
|
|
67
|
+
text={errorText}
|
|
68
|
+
className={styles.text_below}
|
|
69
|
+
/>
|
|
70
|
+
)}
|
|
71
|
+
{helperText && (
|
|
72
|
+
<Text
|
|
73
|
+
size="xs"
|
|
74
|
+
italic
|
|
75
|
+
text={helperText}
|
|
76
|
+
className={styles.text_below}
|
|
77
|
+
/>
|
|
78
|
+
)}
|
|
79
|
+
</div>
|
|
80
|
+
);
|
|
81
|
+
};
|
|
@@ -20,31 +20,36 @@ export default function BinIcon({
|
|
|
20
20
|
viewBox="0 0 24 24"
|
|
21
21
|
fill="none"
|
|
22
22
|
>
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
23
|
+
<path
|
|
24
|
+
fill-rule="evenodd"
|
|
25
|
+
clip-rule="evenodd"
|
|
26
|
+
d="M3.46143 5.07692C3.46143 4.6627 3.79722 4.32692 4.21143 4.32692H19.7883C20.2025 4.32692 20.5383 4.6627 20.5383 5.07692V20.6538C20.5383 21.3118 20.277 21.9427 19.8117 22.408C19.3465 22.8733 18.7155 23.1346 18.0576 23.1346H5.94219C5.28431 23.1346 4.65329 22.8733 4.18801 22.408C3.72278 21.9428 3.46143 21.3118 3.46143 20.6538V5.07692ZM4.96143 5.82692V20.6538C4.96143 20.914 5.06476 21.1634 5.2487 21.3474C5.43258 21.5313 5.68203 21.6346 5.94219 21.6346H18.0576C18.3177 21.6346 18.5671 21.5313 18.7511 21.3474C18.935 21.1635 19.0383 20.914 19.0383 20.6538V5.82692H4.96143Z"
|
|
27
|
+
fill={fill}
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
fill-rule="evenodd"
|
|
31
|
+
clip-rule="evenodd"
|
|
32
|
+
d="M9.40381 9.5192C9.81802 9.5192 10.1538 9.85498 10.1538 10.2692V17.1923C10.1538 17.6065 9.81802 17.9423 9.40381 17.9423C8.9896 17.9423 8.65381 17.6065 8.65381 17.1923V10.2692C8.65381 9.85498 8.9896 9.5192 9.40381 9.5192Z"
|
|
33
|
+
fill={fill}
|
|
34
|
+
/>
|
|
35
|
+
<path
|
|
36
|
+
fill-rule="evenodd"
|
|
37
|
+
clip-rule="evenodd"
|
|
38
|
+
d="M14.5962 9.5192C15.0104 9.5192 15.3462 9.85498 15.3462 10.2692V17.1923C15.3462 17.6065 15.0104 17.9423 14.5962 17.9423C14.182 17.9423 13.8462 17.6065 13.8462 17.1923V10.2692C13.8462 9.85498 14.182 9.5192 14.5962 9.5192Z"
|
|
39
|
+
fill={fill}
|
|
40
|
+
/>
|
|
41
|
+
<path
|
|
42
|
+
fill-rule="evenodd"
|
|
43
|
+
clip-rule="evenodd"
|
|
44
|
+
d="M0 5.07692C0 4.6627 0.335786 4.32692 0.75 4.32692H23.25C23.6642 4.32692 24 4.6627 24 5.07692C24 5.49113 23.6642 5.82692 23.25 5.82692H0.75C0.335786 5.82692 0 5.49113 0 5.07692Z"
|
|
45
|
+
fill={fill}
|
|
46
|
+
/>
|
|
47
|
+
<path
|
|
48
|
+
fill-rule="evenodd"
|
|
49
|
+
clip-rule="evenodd"
|
|
50
|
+
d="M7.64971 1.59198C8.11494 1.12675 8.74593 0.865387 9.40386 0.865387H14.5962C15.2541 0.865387 15.8851 1.12677 16.3503 1.59197C16.8156 2.05725 17.0769 2.68827 17.0769 3.34616V5.07693C17.0769 5.49114 16.7411 5.82693 16.3269 5.82693H7.6731C7.25889 5.82693 6.9231 5.49114 6.9231 5.07693V3.34616C6.9231 2.68823 7.18446 2.05722 7.64971 1.59198ZM9.40386 2.36539C9.14375 2.36539 8.89429 2.46872 8.71036 2.65265C8.52644 2.83656 8.4231 3.08603 8.4231 3.34616V4.32693H15.5769V3.34616C15.5769 3.08599 15.4736 2.83655 15.2897 2.65266C15.1057 2.4687 14.8563 2.36539 14.5962 2.36539H9.40386Z"
|
|
51
|
+
fill={fill}
|
|
52
|
+
/>
|
|
48
53
|
</svg>
|
|
49
54
|
</SvgIcon>
|
|
50
55
|
);
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SvgIcon, SvgIconProps } from '@mui/material';
|
|
3
|
+
|
|
4
|
+
export default function AppWindowPieIcon({
|
|
5
|
+
stroke,
|
|
6
|
+
strokeWidth,
|
|
7
|
+
fill,
|
|
8
|
+
...rest
|
|
9
|
+
}: SvgIconProps) {
|
|
10
|
+
return (
|
|
11
|
+
<SvgIcon
|
|
12
|
+
strokeWidth={strokeWidth ?? 0.1}
|
|
13
|
+
stroke={stroke ? stroke : 'currentColor'}
|
|
14
|
+
{...rest}
|
|
15
|
+
>
|
|
16
|
+
<svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
width="24"
|
|
19
|
+
height="24"
|
|
20
|
+
viewBox="0 0 24 24"
|
|
21
|
+
fill="none"
|
|
22
|
+
>
|
|
23
|
+
<path
|
|
24
|
+
fill-rule="evenodd"
|
|
25
|
+
clip-rule="evenodd"
|
|
26
|
+
d="M21 1.60001H3C1.4 1.60001 0.800003 2.90001 0.800003 3.80001V20.3C0.800003 21.9 2.1 22.5 3 22.5H21C22.6 22.5 23.2 21.2 23.2 20.3V3.80001C23.2 2.10001 21.9 1.60001 21 1.60001ZM3 3.00001H21C21.3 3.00001 21.8 3.10001 21.8 3.80001V6.10001H2.2V3.80001C2.2 3.50001 2.3 3.00001 3 3.00001ZM21 21.1H3C2.7 21.1 2.2 21 2.2 20.3V7.50001H21.8V20.3C21.8 20.5 21.7 21.1 21 21.1ZM13.8 12.3C13.5 11.7 13.2 11.1 12.7 10.6C12.2 10.1 11.6 9.70001 11 9.50001C10.4 9.20001 9.7 9.10001 9 9.10001C8.3 9.10001 7.7 9.20001 7 9.50001C6.4 9.80001 5.8 10.1 5.3 10.6C4.8 11.1 4.4 11.7 4.2 12.3C3.9 12.9 3.8 13.6 3.8 14.3C3.8 15.7 4.3 17 5.3 18C6.3 19 7.6 19.5 9 19.5C10.4 19.5 11.7 19 12.7 18C13.7 17 14.2 15.7 14.2 14.3C14.2 13.6 14.1 12.9 13.8 12.3ZM11.7 11.6C12.1 12 12.3 12.4 12.5 12.8C12.7 13.3 12.8 13.8 12.8 14.3C12.8 15.1 12.6 15.8 12.1 16.4L9.7 14V10.6C9.93739 10.6 10.1122 10.6626 10.3234 10.7383L10.3235 10.7383L10.3236 10.7384C10.3793 10.7583 10.4375 10.7792 10.5 10.8C10.9 10.9 11.3 11.2 11.7 11.6ZM6.3 16.9C5.6 16.2 5.2 15.2 5.2 14.2C5.2 13.7 5.3 13.2 5.5 12.7C5.7 12.2 6 11.8 6.3 11.5C6.7 11.1 7.1 10.9 7.5 10.7C7.7 10.6 8 10.5 8.3 10.5V14.2C8.3 14.4 8.4 14.6 8.5 14.7L11.1 17.3C9.7 18.4 7.6 18.2 6.3 16.9ZM16.5 10.6H19.5C19.9 10.6 20.2 10.9 20.2 11.3C20.2 11.7 19.9 12 19.5 12H16.5C16.1 12 15.8 11.7 15.8 11.3C15.8 10.9 16.1 10.6 16.5 10.6ZM19.5 13.6H16.5C16.1 13.6 15.8 13.9 15.8 14.3C15.8 14.7 16.1 15 16.5 15H19.5C19.9 15 20.2 14.7 20.2 14.3C20.2 13.9 19.9 13.6 19.5 13.6ZM16.5 16.6H19.5C19.9 16.6 20.2 16.9 20.2 17.3C20.2 17.7 19.9 18 19.5 18H16.5C16.1 18 15.8 17.7 15.8 17.3C15.8 16.9 16.1 16.6 16.5 16.6Z"
|
|
27
|
+
fill="#00040A"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
</SvgIcon>
|
|
31
|
+
);
|
|
32
|
+
}
|
package/src/Icons/index.ts
CHANGED
|
@@ -70,6 +70,7 @@ export { default as RecordingIcon } from './MediaControl/RecordingIcon';
|
|
|
70
70
|
export { default as VolumeIcon } from './MediaControl/VolumeIcon';
|
|
71
71
|
export { default as AddSeatIcon } from './Miscellaneous/AddSeatIcon';
|
|
72
72
|
export { default as AddUsersIcon } from './Miscellaneous/AddUsersIcon';
|
|
73
|
+
export { default as AppWindowPieIcon } from './Miscellaneous/AppWindowPieIcon';
|
|
73
74
|
export { default as BillPdfIcon } from './Miscellaneous/BillPdfIcon';
|
|
74
75
|
export { default as BinocularIcon } from './Miscellaneous/BinocularIcon';
|
|
75
76
|
export { default as BrainIcon } from './Miscellaneous/BrainIcon';
|
|
@@ -93,8 +94,8 @@ export { default as LinkIcon } from './Miscellaneous/LinkIcon';
|
|
|
93
94
|
export { default as MetaAnalyseIcon } from './Miscellaneous/MetaAnalyseIcon';
|
|
94
95
|
export { default as ModeratedIcon } from './Miscellaneous/ModeratedIcon';
|
|
95
96
|
export { default as NbOfUsersIcon } from './Miscellaneous/NbOfUsersIcon';
|
|
96
|
-
export { default as OfficeDrawerIcon } from './Miscellaneous/OfficeDrawerIcon';
|
|
97
97
|
export { default as NeutralBackgroudIcon } from './Miscellaneous/NeutralBackgroudIcon';
|
|
98
|
+
export { default as OfficeDrawerIcon } from './Miscellaneous/OfficeDrawerIcon';
|
|
98
99
|
export { default as RefreshIcon } from './Miscellaneous/RefreshIcon';
|
|
99
100
|
export { default as ReportIcon } from './Miscellaneous/ReportIcon';
|
|
100
101
|
export { default as SeatIcon } from './Miscellaneous/SeatIcon';
|
|
@@ -139,10 +139,10 @@ export const SingleSelect = ({
|
|
|
139
139
|
}, [defaultValue]);
|
|
140
140
|
|
|
141
141
|
return (
|
|
142
|
-
<div className={`${className}`}>
|
|
142
|
+
<div className={`${className && className}`} style={{ width: '100%' }}>
|
|
143
143
|
{topLabel && (
|
|
144
144
|
<Text
|
|
145
|
-
text={`${topLabel ? topLabel : ''}
|
|
145
|
+
text={`${topLabel ? topLabel : ''}`}
|
|
146
146
|
weight="bold"
|
|
147
147
|
size="base"
|
|
148
148
|
className={styles.input_top_label}
|