master-components-react-ts 2.1.1 → 2.1.3
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/assets/Icons/IconErrorDash.d.ts +2 -3
- package/dist/assets/Icons/IconErrorDash.js +15 -0
- package/dist/assets/Icons/IconLoading.js +22 -0
- package/dist/assets/Icons/IconSuccess.js +15 -0
- package/dist/assets/components/ActionDropdown/ActionDropdown.module-CJpBa8kB.css +85 -0
- package/dist/assets/components/Checkbox/Checkbox.module-_XqqEodq.css +82 -0
- package/dist/assets/components/DatePicker/Calendar.module-D3fcZWFD.css +316 -0
- package/dist/assets/components/DatePicker/Datepicker.module-BxWRyQpP.css +39 -0
- package/dist/assets/components/Dropdown/Dropdown.module-DgjqziBo.css +242 -0
- package/dist/assets/components/FormInput/FormInput.module-DvfUbgbC.css +240 -0
- package/dist/assets/components/InlineLoading/InlineLoading.module-iVTVTMU0.css +40 -0
- package/dist/assets/components/MainButton/MainButton.module-8Us8t8Lb.css +306 -0
- package/dist/assets/components/NotificationToast/NotificationToast.module-mSanXElM.css +179 -0
- package/dist/assets/components/Popup/Popup.module-C1XFPW6u.css +152 -0
- package/dist/assets/components/Radio/Radio.module-BvqKw6WX.css +21 -0
- package/dist/assets/components/Skeleton/Skeleton.module-BxbVrXDg.css +57 -0
- package/dist/assets/components/Textarea/Textarea.module-BxaBUjlU.css +167 -0
- package/dist/assets/components/TimePicker/TimePicker.module-DfRiUaeb.css +150 -0
- package/dist/assets/components/Toggle/Toggle.module-DBfTR8Br.css +75 -0
- package/dist/assets/components/Tooltip/Tooltip.module-DEYqvQtd.css +113 -0
- package/dist/components/Dropdown/Dropdown.js +3 -2
- package/dist/components/Dropdown/Dropdown.types.d.ts +2 -2
- package/dist/components/FormInput/FormInput.js +8 -1
- package/dist/components/InlineLoading/InlineLoading.d.ts +3 -0
- package/dist/components/InlineLoading/InlineLoading.js +24 -0
- package/dist/components/InlineLoading/InlineLoading.module.scss.js +11 -0
- package/dist/components/InlineLoading/InlineLoading.types.d.ts +24 -0
- package/dist/components/Textarea/Textarea.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2221
- package/package.json +57 -60
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
interface IconErrorDashProps {
|
|
2
|
-
|
|
3
|
-
height?: string;
|
|
2
|
+
size?: string | number;
|
|
4
3
|
color?: string;
|
|
5
4
|
}
|
|
6
|
-
export declare const IconErrorDash: ({
|
|
5
|
+
export declare const IconErrorDash: ({ size, color }: IconErrorDashProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
6
|
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { j as jsxRuntimeExports } from "../../node_modules/react/jsx-runtime.js";
|
|
2
|
+
const IconErrorDash = ({ size = "16", color = "#DA1A1C" }) => {
|
|
3
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
4
|
+
"path",
|
|
5
|
+
{
|
|
6
|
+
fillRule: "evenodd",
|
|
7
|
+
clipRule: "evenodd",
|
|
8
|
+
d: "M8 1C4.1 1 1 4.1 1 8C1 11.9 4.1 15 8 15C11.9 15 15 11.9 15 8C15 4.1 11.9 1 8 1ZM10.7 11.5L4.5 5.3L5.3 4.5L11.5 10.7L10.7 11.5Z",
|
|
9
|
+
fill: color
|
|
10
|
+
}
|
|
11
|
+
) });
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
IconErrorDash
|
|
15
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { j as jsxRuntimeExports } from "../../node_modules/react/jsx-runtime.js";
|
|
2
|
+
const IconLoading = ({ color1 = "#BCC1C2", color2 = "#0266EF", size = "16" }) => {
|
|
3
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: [
|
|
4
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
d: "M16 7.99998C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 7.99998C0 3.5817 3.58172 -2.28882e-05 8 -2.28882e-05C12.4183 -2.28882e-05 16 3.5817 16 7.99998ZM2.96 7.99998C2.96 10.7835 5.21649 13.04 8 13.04C10.7835 13.04 13.04 10.7835 13.04 7.99998C13.04 5.21646 10.7835 2.95998 8 2.95998C5.21649 2.95998 2.96 5.21646 2.96 7.99998Z",
|
|
8
|
+
fill: color1
|
|
9
|
+
}
|
|
10
|
+
),
|
|
11
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
d: "M8 -2.28882e-05C9.58225 -2.28693e-05 11.129 0.469169 12.4446 1.34822C13.7602 2.22727 14.7855 3.4767 15.391 4.93851C15.9965 6.40032 16.155 8.00885 15.8463 9.5607C15.5376 11.1125 14.7757 12.538 13.6569 13.6568C12.538 14.7757 11.1126 15.5376 9.56072 15.8463C8.00887 16.1549 6.40034 15.9965 4.93853 15.391C3.47672 14.7855 2.22729 13.7601 1.34824 12.4445C0.469192 11.1289 -3.77363e-08 9.58223 0 7.99998L2.96 7.99998C2.96 8.99679 3.25559 9.97123 3.80939 10.8001C4.3632 11.6289 5.15034 12.2749 6.07128 12.6563C6.99222 13.0378 8.00559 13.1376 8.98326 12.9431C9.96092 12.7487 10.859 12.2687 11.5638 11.5638C12.2687 10.8589 12.7487 9.9609 12.9432 8.98323C13.1376 8.00557 13.0378 6.99219 12.6564 6.07125C12.2749 5.15031 11.6289 4.36317 10.8001 3.80937C9.97125 3.25557 8.99682 2.95998 8 2.95998L8 -2.28882e-05Z",
|
|
15
|
+
fill: color2 ?? "#0266EF"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
] });
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
IconLoading
|
|
22
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { j as jsxRuntimeExports } from "../../node_modules/react/jsx-runtime.js";
|
|
2
|
+
const IconSuccess = ({ size = "16", color = "#138761" }) => {
|
|
3
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
4
|
+
"path",
|
|
5
|
+
{
|
|
6
|
+
fillRule: "evenodd",
|
|
7
|
+
clipRule: "evenodd",
|
|
8
|
+
d: "M8 1C4.1 1 1 4.1 1 8C1 11.9 4.1 15 8 15C11.9 15 15 11.9 15 8C15 4.1 11.9 1 8 1ZM7 11L4.3 8.3L5.2 7.5L7 9.3L11 5.4L11.9 6.2L7 11Z",
|
|
9
|
+
fill: color
|
|
10
|
+
}
|
|
11
|
+
) });
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
IconSuccess
|
|
15
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Inter-Regular";
|
|
3
|
+
src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
|
|
4
|
+
}
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Inter-SemiBold";
|
|
7
|
+
src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "Inter-Medium";
|
|
11
|
+
src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
|
|
12
|
+
}
|
|
13
|
+
.ActionDropdown-module__actionDropdownContainer {
|
|
14
|
+
width: 100%;
|
|
15
|
+
}
|
|
16
|
+
.ActionDropdown-module__actionDropdownContainer.ActionDropdown-module__collapsed .ActionDropdown-module__actionDropdownIcon {
|
|
17
|
+
transform: rotate(180deg);
|
|
18
|
+
}
|
|
19
|
+
.ActionDropdown-module__actionDropdownContainer .ActionDropdown-module__actionDropdownContent {
|
|
20
|
+
width: 100%;
|
|
21
|
+
border-radius: 6px;
|
|
22
|
+
background: #f2f2f2;
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
justify-content: space-between;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
user-select: none;
|
|
28
|
+
-webkit-user-select: none;
|
|
29
|
+
-moz-user-select: none;
|
|
30
|
+
-ms-user-select: none;
|
|
31
|
+
}
|
|
32
|
+
.ActionDropdown-module__actionDropdownContainer .ActionDropdown-module__actionDropdownContent .ActionDropdown-module__actionDropdownTitle {
|
|
33
|
+
width: 90%;
|
|
34
|
+
white-space: nowrap;
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
color: #131314;
|
|
37
|
+
font-feature-settings: "liga" off, "clig" off;
|
|
38
|
+
text-overflow: ellipsis;
|
|
39
|
+
font-family: "Inter-Regular", sans-serif;
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
font-weight: 400;
|
|
42
|
+
line-height: 24px;
|
|
43
|
+
letter-spacing: 0.1px;
|
|
44
|
+
border-right: 1px solid #ffffff;
|
|
45
|
+
padding: 8px 16px;
|
|
46
|
+
}
|
|
47
|
+
.ActionDropdown-module__actionDropdownContainer .ActionDropdown-module__actionDropdownContent .ActionDropdown-module__actionDropdownIcon {
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
justify-content: center;
|
|
51
|
+
padding: 8px;
|
|
52
|
+
width: 40px;
|
|
53
|
+
height: 40px;
|
|
54
|
+
transition: transform 0.2s ease-in-out;
|
|
55
|
+
}
|
|
56
|
+
.ActionDropdown-module__actionDropdownContainer .ActionDropdown-module__actionDropdownList {
|
|
57
|
+
width: 100%;
|
|
58
|
+
border-radius: 12px;
|
|
59
|
+
border: 1px solid #e6e6e6;
|
|
60
|
+
background: #fff;
|
|
61
|
+
box-shadow: 0px 2px 4px 0px rgba(19, 19, 20, 0.04);
|
|
62
|
+
height: 250px;
|
|
63
|
+
overflow: auto;
|
|
64
|
+
padding: 8px;
|
|
65
|
+
}
|
|
66
|
+
.ActionDropdown-module__actionDropdownContainer .ActionDropdown-module__actionDropdownList .ActionDropdown-module__actionDropdownItem {
|
|
67
|
+
width: 100%;
|
|
68
|
+
border-radius: 4px;
|
|
69
|
+
background: #fff;
|
|
70
|
+
padding: 6px 10px;
|
|
71
|
+
overflow: hidden;
|
|
72
|
+
color: #131314;
|
|
73
|
+
font-feature-settings: "liga" off, "clig" off;
|
|
74
|
+
text-overflow: ellipsis;
|
|
75
|
+
font-family: "Inter-Regular", sans-serif;
|
|
76
|
+
font-size: 14px;
|
|
77
|
+
font-weight: 400;
|
|
78
|
+
line-height: 24px;
|
|
79
|
+
letter-spacing: 0.1px;
|
|
80
|
+
cursor: pointer;
|
|
81
|
+
}
|
|
82
|
+
.ActionDropdown-module__actionDropdownContainer .ActionDropdown-module__actionDropdownList .ActionDropdown-module__actionDropdownItem:hover, .ActionDropdown-module__actionDropdownContainer .ActionDropdown-module__actionDropdownList .ActionDropdown-module__actionDropdownItem.ActionDropdown-module__selected {
|
|
83
|
+
border-radius: 4px;
|
|
84
|
+
background: #f2f2f2;
|
|
85
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Inter-Regular";
|
|
3
|
+
src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
|
|
4
|
+
}
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Inter-SemiBold";
|
|
7
|
+
src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "Inter-Medium";
|
|
11
|
+
src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
|
|
12
|
+
}
|
|
13
|
+
.Checkbox-module__checkboxWrapper {
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
border: 2px solid #c1c2c7;
|
|
16
|
+
background: #ffffff;
|
|
17
|
+
position: relative;
|
|
18
|
+
padding: 5px 4px;
|
|
19
|
+
border-radius: 3px;
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
transition: 0.2;
|
|
22
|
+
display: grid;
|
|
23
|
+
place-items: center;
|
|
24
|
+
width: 18px;
|
|
25
|
+
height: 18px;
|
|
26
|
+
user-select: none;
|
|
27
|
+
-webkit-user-select: none;
|
|
28
|
+
-moz-user-select: none;
|
|
29
|
+
-ms-user-select: none;
|
|
30
|
+
}
|
|
31
|
+
.Checkbox-module__checkboxWrapper .Checkbox-module__checkMark {
|
|
32
|
+
display: grid;
|
|
33
|
+
place-items: center;
|
|
34
|
+
}
|
|
35
|
+
.Checkbox-module__checkboxWrapper .Checkbox-module__checkMark svg {
|
|
36
|
+
width: 0.625rem;
|
|
37
|
+
user-select: none;
|
|
38
|
+
pointer-events: none;
|
|
39
|
+
}
|
|
40
|
+
.Checkbox-module__checkboxWrapper.Checkbox-module__error {
|
|
41
|
+
border-color: #e3292f;
|
|
42
|
+
}
|
|
43
|
+
.Checkbox-module__checkboxWrapper.Checkbox-module__error.Checkbox-module__checked {
|
|
44
|
+
background: #e3292f;
|
|
45
|
+
border: none;
|
|
46
|
+
}
|
|
47
|
+
.Checkbox-module__checkboxWrapper.Checkbox-module__checked {
|
|
48
|
+
background: #0058ff;
|
|
49
|
+
border: none;
|
|
50
|
+
}
|
|
51
|
+
.Checkbox-module__checkboxWrapper.Checkbox-module__checked.Checkbox-module__disabled {
|
|
52
|
+
background: #95969c;
|
|
53
|
+
}
|
|
54
|
+
.Checkbox-module__checkboxWrapper.Checkbox-module__disabled {
|
|
55
|
+
cursor: not-allowed;
|
|
56
|
+
border-color: #c1c2c7 !important;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.Checkbox-module__Namespace_Hr.Checkbox-module__checkboxWrapper.Checkbox-module__checked {
|
|
60
|
+
background: #32b45f;
|
|
61
|
+
border: 0.0625rem solid #32b45f;
|
|
62
|
+
}
|
|
63
|
+
.Checkbox-module__Namespace_Hr.Checkbox-module__checkboxWrapper.Checkbox-module__checked:hover {
|
|
64
|
+
background: #24994d;
|
|
65
|
+
border: 0.0625rem solid #24994d;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.Checkbox-module__dark {
|
|
69
|
+
background: #373a41;
|
|
70
|
+
border: unset;
|
|
71
|
+
}
|
|
72
|
+
.Checkbox-module__dark.Checkbox-module__checked {
|
|
73
|
+
background: #0158ff;
|
|
74
|
+
border: 0.0625rem solid #0158ff;
|
|
75
|
+
}
|
|
76
|
+
.Checkbox-module__dark.Checkbox-module__checked.Checkbox-module__disabled svg path {
|
|
77
|
+
stroke: #d5d7da;
|
|
78
|
+
}
|
|
79
|
+
.Checkbox-module__dark.Checkbox-module__disabled {
|
|
80
|
+
background: #8d8d8d !important;
|
|
81
|
+
border: 0.0625rem solid #373a41 !important;
|
|
82
|
+
}
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Inter-Regular";
|
|
3
|
+
src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
|
|
4
|
+
}
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Inter-SemiBold";
|
|
7
|
+
src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "Inter-Medium";
|
|
11
|
+
src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
|
|
12
|
+
}
|
|
13
|
+
.Calendar-module__datePicker {
|
|
14
|
+
z-index: 150;
|
|
15
|
+
position: absolute;
|
|
16
|
+
left: 0;
|
|
17
|
+
top: calc(100% + 8px);
|
|
18
|
+
display: flex;
|
|
19
|
+
border-radius: 0.75rem;
|
|
20
|
+
border: 1px solid #e9eaeb;
|
|
21
|
+
background: #fff;
|
|
22
|
+
box-shadow: 0px 20px 24px -4px rgba(10, 13, 18, 0.08), 0px 8px 8px -4px rgba(10, 13, 18, 0.03), 0px 3px 3px -1.5px rgba(10, 13, 18, 0.04);
|
|
23
|
+
width: 279px;
|
|
24
|
+
}
|
|
25
|
+
.Calendar-module__datePicker.Calendar-module__dualCalendar, .Calendar-module__datePicker.Calendar-module__dualCalendarWithQuick {
|
|
26
|
+
padding: 1rem;
|
|
27
|
+
}
|
|
28
|
+
.Calendar-module__datePicker.Calendar-module__dualCalendar .Calendar-module__border, .Calendar-module__datePicker.Calendar-module__dualCalendarWithQuick .Calendar-module__border {
|
|
29
|
+
width: 0.0625rem;
|
|
30
|
+
background-color: #e9eaeb;
|
|
31
|
+
margin: 0 8px;
|
|
32
|
+
}
|
|
33
|
+
.Calendar-module__datePicker.Calendar-module__dualCalendar .Calendar-module__calendarWrapper, .Calendar-module__datePicker.Calendar-module__dualCalendarWithQuick .Calendar-module__calendarWrapper {
|
|
34
|
+
width: 100%;
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: row;
|
|
37
|
+
justify-content: space-between;
|
|
38
|
+
}
|
|
39
|
+
.Calendar-module__datePicker.Calendar-module__dualCalendar .Calendar-module__quickPick, .Calendar-module__datePicker.Calendar-module__dualCalendarWithQuick .Calendar-module__quickPick {
|
|
40
|
+
display: flex;
|
|
41
|
+
flex-direction: column;
|
|
42
|
+
align-items: flex-start;
|
|
43
|
+
gap: 0.25rem;
|
|
44
|
+
min-width: 160px;
|
|
45
|
+
}
|
|
46
|
+
.Calendar-module__datePicker.Calendar-module__dualCalendar .Calendar-module__quickPick li, .Calendar-module__datePicker.Calendar-module__dualCalendarWithQuick .Calendar-module__quickPick li {
|
|
47
|
+
width: 100%;
|
|
48
|
+
padding: 8px;
|
|
49
|
+
color: #414651;
|
|
50
|
+
font-family: "Inter-Regular", sans-serif;
|
|
51
|
+
font-size: 0.875rem;
|
|
52
|
+
font-style: normal;
|
|
53
|
+
font-weight: 500;
|
|
54
|
+
line-height: 1.25rem; /* 142.857% */
|
|
55
|
+
border-radius: 0.375rem;
|
|
56
|
+
}
|
|
57
|
+
.Calendar-module__datePicker.Calendar-module__dualCalendar .Calendar-module__quickPick li:hover, .Calendar-module__datePicker.Calendar-module__dualCalendarWithQuick .Calendar-module__quickPick li:hover {
|
|
58
|
+
background: #fafafa;
|
|
59
|
+
text-decoration: unset;
|
|
60
|
+
}
|
|
61
|
+
.Calendar-module__datePicker.Calendar-module__dualCalendar {
|
|
62
|
+
width: 656px;
|
|
63
|
+
}
|
|
64
|
+
.Calendar-module__datePicker.Calendar-module__dualCalendarWithQuick {
|
|
65
|
+
width: 848px;
|
|
66
|
+
}
|
|
67
|
+
.Calendar-module__datePicker .Calendar-module__datePickerHeader {
|
|
68
|
+
width: 100%;
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: column;
|
|
71
|
+
gap: 8px;
|
|
72
|
+
padding: 8px;
|
|
73
|
+
}
|
|
74
|
+
.Calendar-module__datePicker .Calendar-module__datePickerHeader span {
|
|
75
|
+
color: #414651;
|
|
76
|
+
text-align: center;
|
|
77
|
+
font-size: 1rem;
|
|
78
|
+
font-style: normal;
|
|
79
|
+
font-weight: 600;
|
|
80
|
+
line-height: 1.5rem; /* 150% */
|
|
81
|
+
}
|
|
82
|
+
.Calendar-module__datePicker .Calendar-module__div {
|
|
83
|
+
width: 100%;
|
|
84
|
+
}
|
|
85
|
+
.Calendar-module__datePicker .Calendar-module__div span {
|
|
86
|
+
font-family: "Inter-Regular", sans-serif;
|
|
87
|
+
}
|
|
88
|
+
.Calendar-module__datePicker .Calendar-module__currentDateHeader {
|
|
89
|
+
overflow: hidden;
|
|
90
|
+
color: #131314;
|
|
91
|
+
text-align: center;
|
|
92
|
+
font-feature-settings: "liga" off, "clig" off;
|
|
93
|
+
text-overflow: ellipsis;
|
|
94
|
+
/* UI/14 semi medium */
|
|
95
|
+
font-family: "Inter-Regular", sans-serif;
|
|
96
|
+
font-size: 14px;
|
|
97
|
+
font-style: normal;
|
|
98
|
+
font-weight: 450;
|
|
99
|
+
line-height: 24px; /* 171.429% */
|
|
100
|
+
letter-spacing: 0.1px;
|
|
101
|
+
padding: 6px 16px;
|
|
102
|
+
border-radius: 6px;
|
|
103
|
+
border: 1px solid #e6e6e6;
|
|
104
|
+
background: #fff;
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
}
|
|
107
|
+
.Calendar-module__datePicker .Calendar-module__left,
|
|
108
|
+
.Calendar-module__datePicker .Calendar-module__right {
|
|
109
|
+
display: flex;
|
|
110
|
+
justify-content: center;
|
|
111
|
+
align-items: center;
|
|
112
|
+
cursor: pointer;
|
|
113
|
+
}
|
|
114
|
+
.Calendar-module__datePicker .Calendar-module__left .Calendar-module__singleIcon,
|
|
115
|
+
.Calendar-module__datePicker .Calendar-module__left .Calendar-module__doubleIcon,
|
|
116
|
+
.Calendar-module__datePicker .Calendar-module__right .Calendar-module__singleIcon,
|
|
117
|
+
.Calendar-module__datePicker .Calendar-module__right .Calendar-module__doubleIcon {
|
|
118
|
+
display: flex;
|
|
119
|
+
justify-content: center;
|
|
120
|
+
align-items: center;
|
|
121
|
+
}
|
|
122
|
+
.Calendar-module__datePicker .Calendar-module__left .Calendar-module__singleIcon:hover,
|
|
123
|
+
.Calendar-module__datePicker .Calendar-module__left .Calendar-module__doubleIcon:hover,
|
|
124
|
+
.Calendar-module__datePicker .Calendar-module__right .Calendar-module__singleIcon:hover,
|
|
125
|
+
.Calendar-module__datePicker .Calendar-module__right .Calendar-module__doubleIcon:hover {
|
|
126
|
+
opacity: 0.6;
|
|
127
|
+
}
|
|
128
|
+
.Calendar-module__datePicker .Calendar-module__left .Calendar-module__doubleIcon svg:first-of-type,
|
|
129
|
+
.Calendar-module__datePicker .Calendar-module__right .Calendar-module__doubleIcon svg:first-of-type {
|
|
130
|
+
margin-right: -15px;
|
|
131
|
+
}
|
|
132
|
+
.Calendar-module__datePicker .Calendar-module__left span,
|
|
133
|
+
.Calendar-module__datePicker .Calendar-module__right span {
|
|
134
|
+
position: relative;
|
|
135
|
+
}
|
|
136
|
+
.Calendar-module__datePicker .Calendar-module__left span::after,
|
|
137
|
+
.Calendar-module__datePicker .Calendar-module__right span::after {
|
|
138
|
+
position: absolute;
|
|
139
|
+
top: 4px;
|
|
140
|
+
inset-inline-start: 4px;
|
|
141
|
+
display: inline-block;
|
|
142
|
+
width: 7px;
|
|
143
|
+
height: 7px;
|
|
144
|
+
border: 0 solid currentcolor;
|
|
145
|
+
border-block-start-width: 1.5px;
|
|
146
|
+
border-block-end-width: 0;
|
|
147
|
+
border-inline-start-width: 1.5px;
|
|
148
|
+
border-inline-end-width: 0;
|
|
149
|
+
color: #a4a7ae;
|
|
150
|
+
content: "";
|
|
151
|
+
}
|
|
152
|
+
.Calendar-module__datePicker .Calendar-module__left span::before,
|
|
153
|
+
.Calendar-module__datePicker .Calendar-module__right span::before {
|
|
154
|
+
position: absolute;
|
|
155
|
+
top: 0;
|
|
156
|
+
inset-inline-start: 0;
|
|
157
|
+
display: inline-block;
|
|
158
|
+
width: 7px;
|
|
159
|
+
height: 7px;
|
|
160
|
+
border: 0 solid currentcolor;
|
|
161
|
+
border-block-start-width: 1.5px;
|
|
162
|
+
border-block-end-width: 0;
|
|
163
|
+
border-inline-start-width: 1.5px;
|
|
164
|
+
border-inline-end-width: 0;
|
|
165
|
+
color: #a4a7ae;
|
|
166
|
+
content: "";
|
|
167
|
+
}
|
|
168
|
+
.Calendar-module__datePicker .Calendar-module__calendarWrapper {
|
|
169
|
+
padding: 0 8px;
|
|
170
|
+
width: 100%;
|
|
171
|
+
display: flex;
|
|
172
|
+
flex-direction: column;
|
|
173
|
+
justify-content: space-between;
|
|
174
|
+
}
|
|
175
|
+
.Calendar-module__datePicker table {
|
|
176
|
+
border-collapse: collapse;
|
|
177
|
+
border-spacing: 0 0; /* vertical spacing */
|
|
178
|
+
}
|
|
179
|
+
.Calendar-module__datePicker table thead {
|
|
180
|
+
border-bottom: 2px solid #e6e6e6;
|
|
181
|
+
}
|
|
182
|
+
.Calendar-module__datePicker table thead tr th {
|
|
183
|
+
color: #7a7b80;
|
|
184
|
+
}
|
|
185
|
+
.Calendar-module__datePicker table tbody {
|
|
186
|
+
margin-top: 12px;
|
|
187
|
+
}
|
|
188
|
+
.Calendar-module__datePicker table .Calendar-module__spacerRow td {
|
|
189
|
+
height: 4px;
|
|
190
|
+
border: none;
|
|
191
|
+
padding: 0;
|
|
192
|
+
}
|
|
193
|
+
.Calendar-module__datePicker table th,
|
|
194
|
+
.Calendar-module__datePicker table td:not(.Calendar-module__spacerRow td) {
|
|
195
|
+
text-align: center;
|
|
196
|
+
font-family: "Inter-Regular", sans-serif;
|
|
197
|
+
color: #131314;
|
|
198
|
+
font-family: "Inter-Regular", sans-serif;
|
|
199
|
+
font-size: 14px;
|
|
200
|
+
font-style: normal;
|
|
201
|
+
font-weight: 450;
|
|
202
|
+
line-height: 24px; /* 171.429% */
|
|
203
|
+
letter-spacing: 0.1px;
|
|
204
|
+
width: 36px;
|
|
205
|
+
height: 36px;
|
|
206
|
+
padding: 6px;
|
|
207
|
+
border-radius: 6px;
|
|
208
|
+
background: #fff;
|
|
209
|
+
}
|
|
210
|
+
.Calendar-module__datePicker table td.Calendar-module__day {
|
|
211
|
+
cursor: pointer;
|
|
212
|
+
border-radius: 6px;
|
|
213
|
+
font-size: 0.875rem;
|
|
214
|
+
line-height: 1.25rem;
|
|
215
|
+
box-sizing: border-box !important;
|
|
216
|
+
}
|
|
217
|
+
.Calendar-module__datePicker table td.Calendar-module__day:hover {
|
|
218
|
+
background: #fafafa;
|
|
219
|
+
}
|
|
220
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__today {
|
|
221
|
+
position: relative;
|
|
222
|
+
}
|
|
223
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__today::before {
|
|
224
|
+
content: "";
|
|
225
|
+
position: absolute;
|
|
226
|
+
bottom: 4px;
|
|
227
|
+
left: 50%;
|
|
228
|
+
transform: translate(-50%, 0);
|
|
229
|
+
background-color: #0158ff;
|
|
230
|
+
width: 5px;
|
|
231
|
+
height: 5px;
|
|
232
|
+
border-radius: 50%;
|
|
233
|
+
z-index: 1;
|
|
234
|
+
}
|
|
235
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__inRange {
|
|
236
|
+
background: #f2f2f2;
|
|
237
|
+
}
|
|
238
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__selected, .Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__startDate, .Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__endDate {
|
|
239
|
+
background-color: #0158ff;
|
|
240
|
+
color: #fff;
|
|
241
|
+
position: relative;
|
|
242
|
+
}
|
|
243
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__disabled {
|
|
244
|
+
color: #a4a7ae;
|
|
245
|
+
pointer-events: none;
|
|
246
|
+
opacity: 0.4;
|
|
247
|
+
}
|
|
248
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__endDate::before {
|
|
249
|
+
background-color: #fafafa;
|
|
250
|
+
width: 20px;
|
|
251
|
+
height: 40px;
|
|
252
|
+
position: absolute;
|
|
253
|
+
top: 0;
|
|
254
|
+
inset-inline-start: 0;
|
|
255
|
+
inset-inline-end: 0;
|
|
256
|
+
z-index: -1;
|
|
257
|
+
content: "";
|
|
258
|
+
}
|
|
259
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__startDate::before {
|
|
260
|
+
background-color: #fafafa;
|
|
261
|
+
width: 20px;
|
|
262
|
+
height: 40px;
|
|
263
|
+
position: absolute;
|
|
264
|
+
top: 0;
|
|
265
|
+
right: 0;
|
|
266
|
+
z-index: -1;
|
|
267
|
+
content: "";
|
|
268
|
+
}
|
|
269
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__endDate.Calendar-module__startDate::before {
|
|
270
|
+
content: none;
|
|
271
|
+
}
|
|
272
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__otherMonth {
|
|
273
|
+
color: #95969c;
|
|
274
|
+
font-family: "Inter-Regular", sans-serif;
|
|
275
|
+
font-size: 14px;
|
|
276
|
+
font-style: normal;
|
|
277
|
+
font-weight: 450;
|
|
278
|
+
line-height: 24px; /* 171.429% */
|
|
279
|
+
letter-spacing: 0.1px;
|
|
280
|
+
}
|
|
281
|
+
.Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__otherMonth.Calendar-module__startDate, .Calendar-module__datePicker table td.Calendar-module__day.Calendar-module__otherMonth.Calendar-module__endDate {
|
|
282
|
+
color: #fff;
|
|
283
|
+
}
|
|
284
|
+
.Calendar-module__datePicker ul.Calendar-module__monthsWrapper {
|
|
285
|
+
width: 100%;
|
|
286
|
+
display: flex;
|
|
287
|
+
flex-direction: column;
|
|
288
|
+
gap: 2px;
|
|
289
|
+
height: 257px;
|
|
290
|
+
overflow: auto;
|
|
291
|
+
}
|
|
292
|
+
.Calendar-module__datePicker ul.Calendar-module__monthsWrapper li.Calendar-module__month {
|
|
293
|
+
width: 100%;
|
|
294
|
+
border-radius: 4px;
|
|
295
|
+
background: #fff;
|
|
296
|
+
padding: 6px 10px;
|
|
297
|
+
cursor: pointer;
|
|
298
|
+
color: #131314;
|
|
299
|
+
font-feature-settings: "liga" off, "clig" off;
|
|
300
|
+
text-overflow: ellipsis;
|
|
301
|
+
font-family: "Inter-Regular", sans-serif;
|
|
302
|
+
font-size: 14px;
|
|
303
|
+
font-style: normal;
|
|
304
|
+
font-weight: 400;
|
|
305
|
+
line-height: 24px; /* 171.429% */
|
|
306
|
+
letter-spacing: 0.1px;
|
|
307
|
+
}
|
|
308
|
+
.Calendar-module__datePicker ul.Calendar-module__monthsWrapper li.Calendar-module__month.Calendar-module__pickedMonth {
|
|
309
|
+
background: #ECF3FF;
|
|
310
|
+
color: #0158ff;
|
|
311
|
+
}
|
|
312
|
+
.Calendar-module__datePicker .Calendar-module__buttonWrapper {
|
|
313
|
+
margin-top: 8px;
|
|
314
|
+
padding: 8px;
|
|
315
|
+
border-top: 1px solid #e6e6e6;
|
|
316
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Inter-Regular";
|
|
3
|
+
src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
|
|
4
|
+
}
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Inter-SemiBold";
|
|
7
|
+
src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "Inter-Medium";
|
|
11
|
+
src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
|
|
12
|
+
}
|
|
13
|
+
.Datepicker-module__datepickerContainer {
|
|
14
|
+
width: 100%;
|
|
15
|
+
user-select: none;
|
|
16
|
+
scroll-behavior: smooth;
|
|
17
|
+
}
|
|
18
|
+
.Datepicker-module__datepickerContainer::-webkit-scrollbar {
|
|
19
|
+
display: block !important;
|
|
20
|
+
width: 0;
|
|
21
|
+
}
|
|
22
|
+
.Datepicker-module__datepickerContainer::-webkit-scrollbar-thumb {
|
|
23
|
+
opacity: 0;
|
|
24
|
+
}
|
|
25
|
+
.Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper {
|
|
26
|
+
width: 100%;
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
}
|
|
29
|
+
.Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper .Datepicker-module__datepickerLeftIcon {
|
|
30
|
+
display: flex;
|
|
31
|
+
align-items: center;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
}
|
|
34
|
+
.Datepicker-module__datepickerContainer .Datepicker-module__datepickerInputWrapper .Datepicker-module__datepickerRightIcon {
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|