react-restyle-components 0.2.89 → 0.2.91
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/lib/src/core-components/__mocks__/styleMock.d.ts +2 -0
- package/lib/src/core-components/__mocks__/styleMock.d.ts.map +1 -0
- package/lib/src/core-components/__mocks__/styleMock.js +1 -0
- package/lib/src/core-components/index.d.ts +34 -0
- package/lib/src/core-components/index.d.ts.map +1 -0
- package/lib/src/core-components/index.js +33 -0
- package/lib/src/core-components/jest.config.d.ts +12 -0
- package/lib/src/core-components/jest.config.d.ts.map +1 -0
- package/lib/src/core-components/jest.config.js +10 -0
- package/lib/src/core-components/src/App.css +45 -0
- package/lib/src/core-components/src/App.d.ts +4 -0
- package/lib/src/core-components/src/App.d.ts.map +1 -0
- package/lib/src/core-components/src/App.js +9 -0
- package/lib/src/core-components/src/assets/styles/colors.css +217 -0
- package/lib/src/core-components/src/assets/styles/decorations.css +15 -0
- package/lib/src/core-components/src/assets/styles/fontface.css +17 -0
- package/lib/src/core-components/src/assets/styles/scrollbars.css +70 -0
- package/lib/src/core-components/src/assets/styles/typography.css +3 -0
- package/lib/src/core-components/src/atoms/button/Button.test.d.ts +2 -0
- package/lib/src/core-components/src/atoms/button/Button.test.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/button/Button.test.js +27 -0
- package/lib/src/core-components/src/atoms/button/Button.types.d.ts +26 -0
- package/lib/src/core-components/src/atoms/button/Button.types.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/button/Button.types.js +1 -0
- package/lib/src/core-components/src/atoms/button/button.component.d.ts +4 -0
- package/lib/src/core-components/src/atoms/button/button.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/button/button.component.js +18 -0
- package/lib/src/core-components/src/atoms/button/buttonGroup/buttonGroup.component.d.ts +7 -0
- package/lib/src/core-components/src/atoms/button/buttonGroup/buttonGroup.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/button/buttonGroup/buttonGroup.component.js +4 -0
- package/lib/src/core-components/src/atoms/check-box/checkBox.component.d.ts +10 -0
- package/lib/src/core-components/src/atoms/check-box/checkBox.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/check-box/checkBox.component.js +20 -0
- package/lib/src/core-components/src/atoms/check-box/checkBox.spec.d.ts +2 -0
- package/lib/src/core-components/src/atoms/check-box/checkBox.spec.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/check-box/checkBox.spec.js +32 -0
- package/lib/src/core-components/src/atoms/date-picker/date-picker.component.d.ts +12 -0
- package/lib/src/core-components/src/atoms/date-picker/date-picker.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/date-picker/date-picker.component.js +20 -0
- package/lib/src/core-components/src/atoms/form/form.component.d.ts +105 -0
- package/lib/src/core-components/src/atoms/form/form.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/form/form.component.js +87 -0
- package/lib/src/core-components/src/atoms/icons/icons.component.d.ts +11 -0
- package/lib/src/core-components/src/atoms/icons/icons.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/icons/icons.component.js +71 -0
- package/lib/src/core-components/src/atoms/input/input-otp.component.d.ts +14 -0
- package/lib/src/core-components/src/atoms/input/input-otp.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/input/input-otp.component.js +61 -0
- package/lib/src/core-components/src/atoms/input/input-otp.styles.css +35 -0
- package/lib/src/core-components/src/atoms/input/input-pin.component.d.ts +16 -0
- package/lib/src/core-components/src/atoms/input/input-pin.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/input/input-pin.component.js +76 -0
- package/lib/src/core-components/src/atoms/input/input.component.d.ts +18 -0
- package/lib/src/core-components/src/atoms/input/input.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/input/input.component.js +16 -0
- package/lib/src/core-components/src/atoms/input/input.styles.css +35 -0
- package/lib/src/core-components/src/atoms/input-dropdown/input-dropdown.component.d.ts +10 -0
- package/lib/src/core-components/src/atoms/input-dropdown/input-dropdown.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/input-dropdown/input-dropdown.component.js +44 -0
- package/lib/src/core-components/src/atoms/loader/loader.component.d.ts +6 -0
- package/lib/src/core-components/src/atoms/loader/loader.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/loader/loader.component.js +6 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-images.components.d.ts +9 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-images.components.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-images.components.js +7 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-table.components.d.ts +11 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-table.components.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-table.components.js +48 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-typography.components.d.ts +21 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-typography.components.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-typography.components.js +70 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-wrapped-view.components.d.ts +53 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-wrapped-view.components.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/pdf/pdf-wrapped-view.components.js +50 -0
- package/lib/src/core-components/src/atoms/radio/radio.component.d.ts +9 -0
- package/lib/src/core-components/src/atoms/radio/radio.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/radio/radio.component.js +20 -0
- package/lib/src/core-components/src/atoms/stepper/stepper.component.d.ts +9 -0
- package/lib/src/core-components/src/atoms/stepper/stepper.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/stepper/stepper.component.js +26 -0
- package/lib/src/core-components/src/atoms/tabs/tabs.component.d.ts +18 -0
- package/lib/src/core-components/src/atoms/tabs/tabs.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/tabs/tabs.component.js +19 -0
- package/lib/src/core-components/src/atoms/tabs/tabs.module.css +238 -0
- package/lib/src/core-components/src/atoms/timer/timer.component.d.ts +7 -0
- package/lib/src/core-components/src/atoms/timer/timer.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/timer/timer.component.js +76 -0
- package/lib/src/core-components/src/atoms/tooltip/Tooltip.types.d.ts +22 -0
- package/lib/src/core-components/src/atoms/tooltip/Tooltip.types.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/tooltip/Tooltip.types.js +1 -0
- package/lib/src/core-components/src/atoms/tooltip/tooltip.component.d.ts +10 -0
- package/lib/src/core-components/src/atoms/tooltip/tooltip.component.d.ts.map +1 -0
- package/lib/src/core-components/src/atoms/tooltip/tooltip.component.js +10 -0
- package/lib/src/core-components/src/helpers/constants.d.ts +4 -0
- package/lib/src/core-components/src/helpers/constants.d.ts.map +1 -0
- package/lib/src/core-components/src/helpers/constants.js +11 -0
- package/lib/src/core-components/src/hooks/index.d.ts +2 -0
- package/lib/src/core-components/src/hooks/index.d.ts.map +1 -0
- package/lib/src/core-components/src/hooks/index.js +1 -0
- package/lib/src/core-components/src/hooks/outside.hook.d.ts +2 -0
- package/lib/src/core-components/src/hooks/outside.hook.d.ts.map +1 -0
- package/lib/src/core-components/src/hooks/outside.hook.js +28 -0
- package/lib/src/core-components/src/index.css +118 -0
- package/lib/src/core-components/src/index.d.ts +2 -0
- package/lib/src/core-components/src/index.d.ts.map +1 -0
- package/lib/src/core-components/src/index.js +12 -0
- package/lib/src/core-components/src/library/assets/fonts/arima/arima-bold.ttf +0 -0
- package/lib/src/core-components/src/library/assets/fonts/arima/arima-regular.ttf +0 -0
- package/lib/src/core-components/src/library/assets/svg/CheckedBox.svg +14 -0
- package/lib/src/core-components/src/library/assets/svg/DownArrow.svg +14 -0
- package/lib/src/core-components/src/library/assets/svg/UnCheckbox.svg +3 -0
- package/lib/src/core-components/src/library/assets/svg/UpArrow.svg +14 -0
- package/lib/src/core-components/src/library/assets/svg/checkedRadio.svg +13 -0
- package/lib/src/core-components/src/library/assets/svg/datePicker.svg +3 -0
- package/lib/src/core-components/src/library/assets/svg/index.d.ts +10 -0
- package/lib/src/core-components/src/library/assets/svg/index.d.ts.map +1 -0
- package/lib/src/core-components/src/library/assets/svg/index.js +27 -0
- package/lib/src/core-components/src/library/assets/svg/timer copy.svg +3 -0
- package/lib/src/core-components/src/library/assets/svg/timer.svg +3 -0
- package/lib/src/core-components/src/library/assets/svg/uncheckRadio.svg +3 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-multiple-select-multiple-fields-display/auto-complete-filter-multiple-select-multiple-fields-display.component.d.ts +17 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-multiple-select-multiple-fields-display/auto-complete-filter-multiple-select-multiple-fields-display.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-multiple-select-multiple-fields-display/auto-complete-filter-multiple-select-multiple-fields-display.component.js +101 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-single-select/auto-complete-filter-single-select.component.d.ts +13 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-single-select/auto-complete-filter-single-select.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-single-select/auto-complete-filter-single-select.component.js +59 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component.d.ts +18 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component.js +109 -0
- package/lib/src/core-components/src/molecules/auto-complete-group-by/auto-complete-group-by.component.d.ts +10 -0
- package/lib/src/core-components/src/molecules/auto-complete-group-by/auto-complete-group-by.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/auto-complete-group-by/auto-complete-group-by.component.js +128 -0
- package/lib/src/core-components/src/molecules/auto-complete-group-by/auto-complete-group-by.component.test.d.ts +2 -0
- package/lib/src/core-components/src/molecules/auto-complete-group-by/auto-complete-group-by.component.test.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/auto-complete-group-by/auto-complete-group-by.component.test.js +9 -0
- package/lib/src/core-components/src/molecules/autocomplete/autocomplete.css +37 -0
- package/lib/src/core-components/src/molecules/autocomplete/autocomplete.d.ts +8 -0
- package/lib/src/core-components/src/molecules/autocomplete/autocomplete.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/autocomplete/autocomplete.js +108 -0
- package/lib/src/core-components/src/molecules/autocomplete/autocomplete.spec.d.ts +2 -0
- package/lib/src/core-components/src/molecules/autocomplete/autocomplete.spec.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/autocomplete/autocomplete.spec.js +79 -0
- package/lib/src/core-components/src/molecules/color-picker/color-picker.component.d.ts +6 -0
- package/lib/src/core-components/src/molecules/color-picker/color-picker.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/color-picker/color-picker.component.js +12 -0
- package/lib/src/core-components/src/molecules/color-picker/color-picker.css +24 -0
- package/lib/src/core-components/src/molecules/color-picker/color-picker.spec.d.ts +2 -0
- package/lib/src/core-components/src/molecules/color-picker/color-picker.spec.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/color-picker/color-picker.spec.js +7 -0
- package/lib/src/core-components/src/molecules/color-picker-modal/color-picker-modal.component.d.ts +15 -0
- package/lib/src/core-components/src/molecules/color-picker-modal/color-picker-modal.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/color-picker-modal/color-picker-modal.component.js +41 -0
- package/lib/src/core-components/src/molecules/color-picker-modal/color-picker-modal.css +45 -0
- package/lib/src/core-components/src/molecules/color-picker-modal/color-picker-modal.spec.d.ts +2 -0
- package/lib/src/core-components/src/molecules/color-picker-modal/color-picker-modal.spec.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/color-picker-modal/color-picker-modal.spec.js +7 -0
- package/lib/src/core-components/src/molecules/css-multiline-input/css-multiline-input.component.d.ts +11 -0
- package/lib/src/core-components/src/molecules/css-multiline-input/css-multiline-input.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/css-multiline-input/css-multiline-input.component.js +91 -0
- package/lib/src/core-components/src/molecules/css-multiline-input/css-properties.d.ts +8932 -0
- package/lib/src/core-components/src/molecules/css-multiline-input/css-properties.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/css-multiline-input/css-properties.js +161 -0
- package/lib/src/core-components/src/molecules/modal/modal.component.d.ts +10 -0
- package/lib/src/core-components/src/molecules/modal/modal.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/modal/modal.component.js +19 -0
- package/lib/src/core-components/src/molecules/modal-confirm/modal-confirm.component.d.ts +14 -0
- package/lib/src/core-components/src/molecules/modal-confirm/modal-confirm.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/modal-confirm/modal-confirm.component.js +21 -0
- package/lib/src/core-components/src/molecules/multi-select/multi-select.component.d.ts +9 -0
- package/lib/src/core-components/src/molecules/multi-select/multi-select.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/multi-select/multi-select.component.js +49 -0
- package/lib/src/core-components/src/molecules/multi-select-with-field/multi-select-with-field.component.d.ts +10 -0
- package/lib/src/core-components/src/molecules/multi-select-with-field/multi-select-with-field.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/multi-select-with-field/multi-select-with-field.component.js +58 -0
- package/lib/src/core-components/src/molecules/multi-selection-dropdown/multi-selection-dropdown.component.d.ts +9 -0
- package/lib/src/core-components/src/molecules/multi-selection-dropdown/multi-selection-dropdown.component.d.ts.map +1 -0
- package/lib/src/core-components/src/molecules/multi-selection-dropdown/multi-selection-dropdown.component.js +43 -0
- package/lib/src/core-components/src/reportWebVitals.d.ts +4 -0
- package/lib/src/core-components/src/reportWebVitals.d.ts.map +1 -0
- package/lib/src/core-components/src/reportWebVitals.js +12 -0
- package/lib/src/core-components/src/setupTests.d.ts +2 -0
- package/lib/src/core-components/src/setupTests.d.ts.map +1 -0
- package/lib/src/core-components/src/setupTests.js +5 -0
- package/lib/src/core-components/src/tc.module.css +1 -0
- package/lib/src/core-components/src/utils/index.d.ts +2 -0
- package/lib/src/core-components/src/utils/index.d.ts.map +1 -0
- package/lib/src/core-components/src/utils/index.js +1 -0
- package/lib/src/core-components/src/utils/utility.util.d.ts +3 -0
- package/lib/src/core-components/src/utils/utility.util.d.ts.map +1 -0
- package/lib/src/core-components/src/utils/utility.util.js +5 -0
- package/lib/src/core-utils/jest.config.d.ts +11 -0
- package/lib/src/core-utils/jest.config.d.ts.map +1 -0
- package/lib/src/core-utils/jest.config.js +9 -0
- package/lib/src/core-utils/src/calculation/calculation.spec.d.ts +2 -0
- package/lib/src/core-utils/src/calculation/calculation.spec.d.ts.map +1 -0
- package/lib/src/core-utils/src/calculation/calculation.spec.js +52 -0
- package/lib/src/core-utils/src/index.d.ts +8 -0
- package/lib/src/core-utils/src/index.d.ts.map +1 -0
- package/lib/src/core-utils/src/index.js +7 -0
- package/package.json +2 -2
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
.flex {
|
|
2
|
+
display: flex;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.flex-col {
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
}
|
|
8
|
+
.w-full {
|
|
9
|
+
width: 100%;
|
|
10
|
+
}
|
|
11
|
+
.border {
|
|
12
|
+
border-width: 1px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.border-b {
|
|
16
|
+
border-bottom-width: 1px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.border-t {
|
|
20
|
+
border-top-width: 1px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.border-solid {
|
|
24
|
+
border-style: solid;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.border-none {
|
|
28
|
+
border-style: none;
|
|
29
|
+
}
|
|
30
|
+
.py-2 {
|
|
31
|
+
padding-top: 0.5rem;
|
|
32
|
+
padding-bottom: 0.5rem;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.pb-2 {
|
|
36
|
+
padding-bottom: 0.5rem;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.pt-1 {
|
|
40
|
+
padding-top: 0.25rem;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.pt-2 {
|
|
44
|
+
padding-top: 0.5rem;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.pt-3 {
|
|
48
|
+
padding-top: 0.75rem;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.text-center {
|
|
52
|
+
text-align: center;
|
|
53
|
+
}
|
|
54
|
+
.rounded {
|
|
55
|
+
border-radius: 0.25rem;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.rounded-100px {
|
|
59
|
+
border-radius: 100px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.rounded-full {
|
|
63
|
+
border-radius: 9999px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.rounded-lg {
|
|
67
|
+
border-radius: 0.5rem;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.rounded-md {
|
|
71
|
+
border-radius: 0.375rem;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.rounded-none {
|
|
75
|
+
border-radius: 0px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.rounded-sm {
|
|
79
|
+
border-radius: 0.125rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.rounded-b {
|
|
83
|
+
border-bottom-right-radius: 0.25rem;
|
|
84
|
+
border-bottom-left-radius: 0.25rem;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.rounded-b-md {
|
|
88
|
+
border-bottom-right-radius: 0.375rem;
|
|
89
|
+
border-bottom-left-radius: 0.375rem;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.rounded-t {
|
|
93
|
+
border-top-left-radius: 0.25rem;
|
|
94
|
+
border-top-right-radius: 0.25rem;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.rounded-t-md {
|
|
98
|
+
border-top-left-radius: 0.375rem;
|
|
99
|
+
border-top-right-radius: 0.375rem;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.border {
|
|
103
|
+
border-width: 1px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.border-b {
|
|
107
|
+
border-bottom-width: 1px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.border-t {
|
|
111
|
+
border-top-width: 1px;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.border-solid {
|
|
115
|
+
border-style: solid;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.border-none {
|
|
119
|
+
border-style: none;
|
|
120
|
+
}
|
|
121
|
+
.bg-blue-500 {
|
|
122
|
+
--tw-bg-opacity: 1;
|
|
123
|
+
background-color: rgb(59 130 246 / var(--tw-bg-opacity));
|
|
124
|
+
}
|
|
125
|
+
.cursor-pointer {
|
|
126
|
+
cursor: pointer;
|
|
127
|
+
}
|
|
128
|
+
.text-white {
|
|
129
|
+
--tw-text-opacity: 1;
|
|
130
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
131
|
+
}
|
|
132
|
+
.border-solid {
|
|
133
|
+
border-style: solid;
|
|
134
|
+
}
|
|
135
|
+
.border-slate-600 {
|
|
136
|
+
--tw-border-opacity: 1;
|
|
137
|
+
border-color: rgb(71 85 105 / var(--tw-border-opacity));
|
|
138
|
+
}
|
|
139
|
+
.rounded-b-md {
|
|
140
|
+
border-bottom-right-radius: 0.375rem;
|
|
141
|
+
border-bottom-left-radius: 0.375rem;
|
|
142
|
+
}
|
|
143
|
+
.p-1 {
|
|
144
|
+
padding: 0.25rem;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.p-2 {
|
|
148
|
+
padding: 0.5rem;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.p-4 {
|
|
152
|
+
padding: 1rem;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.px-0 {
|
|
156
|
+
padding-left: 0px;
|
|
157
|
+
padding-right: 0px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.px-2 {
|
|
161
|
+
padding-left: 0.5rem;
|
|
162
|
+
padding-right: 0.5rem;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.px-3 {
|
|
166
|
+
padding-left: 0.75rem;
|
|
167
|
+
padding-right: 0.75rem;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.px-4 {
|
|
171
|
+
padding-left: 1rem;
|
|
172
|
+
padding-right: 1rem;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.py-1 {
|
|
176
|
+
padding-top: 0.25rem;
|
|
177
|
+
padding-bottom: 0.25rem;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.py-2 {
|
|
181
|
+
padding-top: 0.5rem;
|
|
182
|
+
padding-bottom: 0.5rem;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.pb-2 {
|
|
186
|
+
padding-bottom: 0.5rem;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.pt-1 {
|
|
190
|
+
padding-top: 0.25rem;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.pt-2 {
|
|
194
|
+
padding-top: 0.5rem;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.pt-3 {
|
|
198
|
+
padding-top: 0.75rem;
|
|
199
|
+
}
|
|
200
|
+
.ml-1 {
|
|
201
|
+
margin-left: 0.25rem;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.ml-2 {
|
|
205
|
+
margin-left: 0.5rem;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.ml-4 {
|
|
209
|
+
margin-left: 1rem;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.ml-6 {
|
|
213
|
+
margin-left: 1.5rem;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.mr-1 {
|
|
217
|
+
margin-right: 0.25rem;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.mr-2 {
|
|
221
|
+
margin-right: 0.5rem;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.mr-3 {
|
|
225
|
+
margin-right: 0.75rem;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.mt-0 {
|
|
229
|
+
margin-top: 0px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.mt-1 {
|
|
233
|
+
margin-top: 0.25rem;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.mt-4 {
|
|
237
|
+
margin-top: 1rem;
|
|
238
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"timer.component.d.ts","sourceRoot":"","sources":["../../../../../../src/core-components/src/atoms/timer/timer.component.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAsD,MAAM,OAAO,CAAC;AAK3E,UAAU,UAAU;IAClB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAGD,eAAO,MAAM,KAAK,wEA8EjB,CAAC"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
/* eslint-disable react/prop-types */
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-unused-expressions */
|
|
4
|
+
import React, { useEffect, useState, useImperativeHandle } from 'react';
|
|
5
|
+
import { TimerSVG } from '../../library/assets/svg';
|
|
6
|
+
import s from '../../tc.module.css';
|
|
7
|
+
import { cn } from '../../utils';
|
|
8
|
+
// eslint-disable-next-line react/display-name
|
|
9
|
+
export const Timer = React.forwardRef(({ onClear }, ref) => {
|
|
10
|
+
const width = 15;
|
|
11
|
+
const [minute, setMinute] = useState('00');
|
|
12
|
+
const [second, setSecond] = useState('10');
|
|
13
|
+
useEffect(() => {
|
|
14
|
+
const sec = parseInt(second);
|
|
15
|
+
const min = parseInt(minute);
|
|
16
|
+
const countDown = setInterval(() => {
|
|
17
|
+
if (min === 0 && sec === 0) {
|
|
18
|
+
setMinute('00');
|
|
19
|
+
setSecond('00');
|
|
20
|
+
clearInterval(countDown);
|
|
21
|
+
onClear && onClear();
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
let secondstTmp = (sec - 1).toString();
|
|
25
|
+
if (secondstTmp.length === 1) {
|
|
26
|
+
secondstTmp = '0'.concat(secondstTmp);
|
|
27
|
+
}
|
|
28
|
+
setSecond(secondstTmp);
|
|
29
|
+
if (sec === 0) {
|
|
30
|
+
setSecond('59');
|
|
31
|
+
const m = (min - 1).toString();
|
|
32
|
+
setMinute('0' + m);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}, 1000);
|
|
36
|
+
return () => {
|
|
37
|
+
clearInterval(countDown);
|
|
38
|
+
};
|
|
39
|
+
});
|
|
40
|
+
useImperativeHandle(ref, () => ({
|
|
41
|
+
updateState() {
|
|
42
|
+
setMinute('02');
|
|
43
|
+
setSecond('00');
|
|
44
|
+
},
|
|
45
|
+
resetTimer() {
|
|
46
|
+
// eslint-disable-next-line no-console
|
|
47
|
+
const sec = parseInt(second);
|
|
48
|
+
const min = parseInt(minute === '00' ? '02' : minute);
|
|
49
|
+
const countDown = setInterval(() => {
|
|
50
|
+
// eslint-disable-next-line no-console
|
|
51
|
+
if (min === 0 && sec === 0) {
|
|
52
|
+
setMinute('00');
|
|
53
|
+
setSecond('00');
|
|
54
|
+
clearInterval(countDown);
|
|
55
|
+
onClear && onClear();
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
let secondstTmp = (sec - 1).toString();
|
|
59
|
+
if (secondstTmp.length === 1) {
|
|
60
|
+
secondstTmp = '0'.concat(secondstTmp);
|
|
61
|
+
}
|
|
62
|
+
setSecond(secondstTmp);
|
|
63
|
+
if (sec === 0) {
|
|
64
|
+
setSecond('59');
|
|
65
|
+
const m = (min - 1).toString();
|
|
66
|
+
setMinute('0' + m);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}, 1000);
|
|
70
|
+
return () => {
|
|
71
|
+
clearInterval(countDown);
|
|
72
|
+
};
|
|
73
|
+
},
|
|
74
|
+
}));
|
|
75
|
+
return (_jsxs("div", { className: cn(s['flex'], s['flex-row'], s['items-center']), children: [_jsx(TimerSVG, { width: width, height: width, fill: "#E7503D" }), _jsxs("div", { className: cn(s['ml-2'], s['flex'], s['flex-row']), children: [_jsxs("span", { children: [minute, ":"] }), _jsx("span", { children: second })] })] }));
|
|
76
|
+
});
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type TooltipProps = {
|
|
3
|
+
/** custom classname to pass to the tooltip element */
|
|
4
|
+
className?: string;
|
|
5
|
+
/** The delay (in ms) before showing the tooltip */
|
|
6
|
+
delay?: number;
|
|
7
|
+
/** Sets the preferred position relative to the trigger */
|
|
8
|
+
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
9
|
+
/** Space between the tooltip element and anchor element (arrow not included in calculation) */
|
|
10
|
+
sideOffset?: number;
|
|
11
|
+
/** Use this to set the content of the tooltip*/
|
|
12
|
+
content?: React.ReactNode;
|
|
13
|
+
/** Sets the preferred alignment relative to the trigger & position */
|
|
14
|
+
align?: 'start' | 'center' | 'end';
|
|
15
|
+
/**Space between alignment point and tooltip */
|
|
16
|
+
alignOffset?: number;
|
|
17
|
+
/** If set to true then in the case of collision finds the alternate ways by changing the position or aligment or both to properly display tooltip */
|
|
18
|
+
avoidCollisions?: boolean;
|
|
19
|
+
/** Set true to prevent tooltip from displaying */
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=Tooltip.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tooltip.types.d.ts","sourceRoot":"","sources":["../../../../../../src/core-components/src/atoms/tooltip/Tooltip.types.ts"],"names":[],"mappings":";AAAA,MAAM,MAAM,YAAY,GAAG;IACzB,sDAAsD;IACtD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,mDAAmD;IACnD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0DAA0D;IAC1D,IAAI,CAAC,EAAE,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC3C,+FAA+F;IAC/F,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,gDAAgD;IAChD,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,sEAAsE;IACtE,KAAK,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;IACnC,+CAA+C;IAC/C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,sJAAsJ;IACtJ,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,kDAAkD;IAClD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PropsWithChildren } from 'react';
|
|
3
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
4
|
+
import { TooltipProps } from './Tooltip.types';
|
|
5
|
+
/**
|
|
6
|
+
* The `Tooltip` must be nested somewhere inside the `TooltipProvider` in the component tree.
|
|
7
|
+
*/
|
|
8
|
+
export declare const Tooltip: ({ align, side, children, content, avoidCollisions, alignOffset, sideOffset, disabled, delay, className, }: PropsWithChildren<TooltipProps>) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
10
|
+
//# sourceMappingURL=tooltip.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tooltip.component.d.ts","sourceRoot":"","sources":["../../../../../../src/core-components/src/atoms/tooltip/tooltip.component.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAC,iBAAiB,EAAC,MAAM,OAAO,CAAC;AACxC,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAC,YAAY,EAAC,MAAM,iBAAiB,CAAC;AAE7C;;GAEG;AACH,eAAO,MAAM,OAAO,8GAWjB,kBAAkB,YAAY,CAAC,4CA4BjC,CAAC;AACF,eAAO,MAAM,eAAe,iDAA4B,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
3
|
+
/**
|
|
4
|
+
* The `Tooltip` must be nested somewhere inside the `TooltipProvider` in the component tree.
|
|
5
|
+
*/
|
|
6
|
+
export const Tooltip = ({ align = 'center', side = 'bottom', children, content, avoidCollisions = true, alignOffset = 0, sideOffset = 5, disabled = false, delay = 400, className, }) => {
|
|
7
|
+
const isChildrenString = typeof children === 'string';
|
|
8
|
+
return (_jsxs(TooltipPrimitive.Root, { delayDuration: delay, children: [_jsx(TooltipPrimitive.Trigger, { asChild: !isChildrenString, disabled: disabled, className: className, children: children }), _jsx(TooltipPrimitive.Portal, { children: !disabled && content && (_jsxs(TooltipPrimitive.Content, { className: className, avoidCollisions: avoidCollisions, side: side, align: align, alignOffset: alignOffset, sideOffset: sideOffset, children: [content, _jsx(TooltipPrimitive.Arrow, { className: className })] })) })] }));
|
|
9
|
+
};
|
|
10
|
+
export const TooltipProvider = TooltipPrimitive.Provider;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/src/helpers/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,UAQ3B,CAAC;AAEF,eAAO,MAAM,gBAAgB,KAAK,CAAC;AACnC,eAAO,MAAM,kBAAkB,KAAK,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './outside.hook';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"outside.hook.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/src/hooks/outside.hook.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe,kCA6B3B,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { useEffect } from 'react';
|
|
2
|
+
export const useClickOutside = (ref, handler) => {
|
|
3
|
+
useEffect(() => {
|
|
4
|
+
let startedInside = false;
|
|
5
|
+
let startedWhenMounted = false;
|
|
6
|
+
const listener = (event) => {
|
|
7
|
+
// Do nothing if `mousedown` or `touchstart` started inside ref element
|
|
8
|
+
if (startedInside || !startedWhenMounted)
|
|
9
|
+
return;
|
|
10
|
+
// Do nothing if clicking ref's element or descendent elements
|
|
11
|
+
if (!ref.current || ref.current.contains(event.target))
|
|
12
|
+
return;
|
|
13
|
+
handler(event);
|
|
14
|
+
};
|
|
15
|
+
const validateEventStart = (event) => {
|
|
16
|
+
startedWhenMounted = ref.current;
|
|
17
|
+
startedInside = ref.current && ref.current.contains(event.target);
|
|
18
|
+
};
|
|
19
|
+
document.addEventListener('mousedown', validateEventStart);
|
|
20
|
+
document.addEventListener('touchstart', validateEventStart);
|
|
21
|
+
document.addEventListener('click', listener);
|
|
22
|
+
return () => {
|
|
23
|
+
document.removeEventListener('mousedown', validateEventStart);
|
|
24
|
+
document.removeEventListener('touchstart', validateEventStart);
|
|
25
|
+
document.removeEventListener('click', listener);
|
|
26
|
+
};
|
|
27
|
+
}, [ref, handler]);
|
|
28
|
+
};
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
|
4
|
+
|
|
5
|
+
@layer base {
|
|
6
|
+
@font-face {
|
|
7
|
+
font-family: 'ArimaRegular';
|
|
8
|
+
src: url('./library/assets/fonts/arima/arima-regular.ttf');
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@layer components {
|
|
13
|
+
table {
|
|
14
|
+
@apply text-black dark:text-white;
|
|
15
|
+
}
|
|
16
|
+
table tr:hover {
|
|
17
|
+
@apply dark:bg-white;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
select {
|
|
21
|
+
@apply dark:text-black;
|
|
22
|
+
}
|
|
23
|
+
.main {
|
|
24
|
+
@apply bg-white;
|
|
25
|
+
}
|
|
26
|
+
.headerView {
|
|
27
|
+
@apply bg-white;
|
|
28
|
+
}
|
|
29
|
+
.headerView {
|
|
30
|
+
@apply dark:bg-boxdark;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
body {
|
|
35
|
+
font-size: 14px;
|
|
36
|
+
font-family: 'Arima Regular';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.ps__rail-y {
|
|
40
|
+
background: none !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.scrollbar-container {
|
|
44
|
+
width: 97% !important;
|
|
45
|
+
}
|
|
46
|
+
.dropdown-menu {
|
|
47
|
+
min-width: 3rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.w-md-editor-show-live {
|
|
51
|
+
height: 800 !important;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.bg-orange1 {
|
|
55
|
+
background-color: '#EF4444';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.react-pdf__Page__canvas {
|
|
59
|
+
min-height: 100vh !important;
|
|
60
|
+
max-width: 100vw !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* :root {
|
|
64
|
+
scrollbar-color: transparent transparent;
|
|
65
|
+
} */
|
|
66
|
+
|
|
67
|
+
/* Outer box for reference */
|
|
68
|
+
.outer-box {
|
|
69
|
+
position: relative;
|
|
70
|
+
width: 300px;
|
|
71
|
+
height: 400px;
|
|
72
|
+
border: 2px solid #333;
|
|
73
|
+
overflow: hidden; /* Ensure the menu does not spill out */
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Parent container */
|
|
77
|
+
.parent-container {
|
|
78
|
+
position: relative;
|
|
79
|
+
padding: 20px;
|
|
80
|
+
background: #f0f0f0;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/* Menu styling */
|
|
84
|
+
.menu {
|
|
85
|
+
position: absolute; /* Allows the menu to exist independently */
|
|
86
|
+
top: 100%; /* Position it just below the parent */
|
|
87
|
+
left: 0;
|
|
88
|
+
width: 100%;
|
|
89
|
+
max-height: 200px; /* Define a max height for scrolling */
|
|
90
|
+
overflow-y: auto; /* Enable vertical scrolling */
|
|
91
|
+
background: #fff;
|
|
92
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
93
|
+
border: 1px solid #ccc;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/* Styling for the menu items */
|
|
97
|
+
.menu ul {
|
|
98
|
+
list-style: none;
|
|
99
|
+
margin: 0;
|
|
100
|
+
padding: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.menu li {
|
|
104
|
+
padding: 10px;
|
|
105
|
+
border-bottom: 1px solid #ddd;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.menu li:last-child {
|
|
109
|
+
border-bottom: none;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.border-t-2 {
|
|
113
|
+
border-top-width: 2px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.border-b-2 {
|
|
117
|
+
border-bottom-width: 2px;
|
|
118
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/core-components/src/index.tsx"],"names":[],"mappings":"AAEA,OAAO,aAAa,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import ReactDOM from 'react-dom/client';
|
|
4
|
+
import './index.css';
|
|
5
|
+
import App from './App';
|
|
6
|
+
import reportWebVitals from './reportWebVitals';
|
|
7
|
+
const root = ReactDOM.createRoot(document.getElementById('root'));
|
|
8
|
+
root.render(_jsx(React.StrictMode, { children: _jsx(App, {}) }));
|
|
9
|
+
// If you want to start measuring performance in your app, pass a function
|
|
10
|
+
// to log results (for example: reportWebVitals(console.log))
|
|
11
|
+
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
12
|
+
reportWebVitals();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" >
|
|
2
|
+
<rect width="15" height="15" fill="#E5E5E5"/>
|
|
3
|
+
<g clip-path="url(#clip0_0_1)">
|
|
4
|
+
<rect width="360" height="640" transform="translate(-20 -399)" fill="white"/>
|
|
5
|
+
<rect x="0.5" y="0.5" width="14" height="14" rx="1.5" fill="white" />
|
|
6
|
+
<rect x="0.5" y="0.5" width="14" height="14" rx="1.5" />
|
|
7
|
+
<path d="M4 7.33333L6.33333 10L11.6667 5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<clipPath id="clip0_0_1">
|
|
11
|
+
<rect width="360" height="640" fill="white" transform="translate(-20 -399)"/>
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
className="ml-2 w-4 h-4 absolute right-0"
|
|
3
|
+
fill="none"
|
|
4
|
+
stroke="#E7503E"
|
|
5
|
+
viewBox="0 -6 20 20"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth="2"
|
|
12
|
+
d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
className="ml-2 w-4 h-4 absolute right-0"
|
|
3
|
+
fill="none"
|
|
4
|
+
stroke="#E7503E"
|
|
5
|
+
viewBox="0 -6 20 20"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
strokeWidth="2"
|
|
12
|
+
d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" >
|
|
2
|
+
<rect width="20" height="20" fill="#E5E5E5"/>
|
|
3
|
+
<g clip-path="url(#clip0_0_1)">
|
|
4
|
+
<rect width="360" height="2645" transform="translate(-253 -1410)" fill="white"/>
|
|
5
|
+
<circle cx="10" cy="10" r="9.5" stroke="#E7503D"/>
|
|
6
|
+
<circle cx="10" cy="10" r="6" fill="#E7503D"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_0_1">
|
|
10
|
+
<rect width="360" height="2645" fill="white" transform="translate(-253 -1410)"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.4 1.2H11.4V0.3C11.4 0.220435 11.3684 0.144129 11.3121 0.087868C11.2559 0.0316071 11.1796 0 11.1 0C11.0204 0 10.9441 0.0316071 10.8879 0.087868C10.8316 0.144129 10.8 0.220435 10.8 0.3V1.2H4.2V0.3C4.2 0.220435 4.16839 0.144129 4.11213 0.087868C4.05587 0.0316071 3.97957 0 3.9 0C3.82044 0 3.74413 0.0316071 3.68787 0.087868C3.63161 0.144129 3.6 0.220435 3.6 0.3V1.2H0.6C0.44087 1.2 0.288258 1.26321 0.175736 1.37574C0.0632141 1.48826 0 1.64087 0 1.8L0 13.8C0 13.9591 0.0632141 14.1117 0.175736 14.2243C0.288258 14.3368 0.44087 14.4 0.6 14.4H14.4C14.5591 14.4 14.7117 14.3368 14.8243 14.2243C14.9368 14.1117 15 13.9591 15 13.8V1.8C15 1.64087 14.9368 1.48826 14.8243 1.37574C14.7117 1.26321 14.5591 1.2 14.4 1.2ZM14.4 13.8H0.6V4.8H14.4V13.8ZM14.4 4.2H0.6V1.8H14.4V4.2Z" fill="#E7503D" stroke="#E7503D" stroke-width="0.5"/>
|
|
3
|
+
</svg>
|