tp-react-elements-dev 1.12.24 → 1.12.26
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/README.md +196 -167
- package/dist/assets/icons/flaticon_hvc.css +71 -70
- package/dist/assets/icons/flaticon_hvc.scss +126 -124
- package/dist/auth/authContext.d.ts +19 -0
- package/dist/auth/authContext.esm.js +26 -0
- package/dist/components/Button/Button.d.ts +7 -0
- package/dist/components/Button/Button.esm.js +15 -0
- package/dist/components/Button/index.d.ts +1 -0
- package/dist/components/Button/index.esm.js +1 -0
- package/dist/components/CheckBox/index.d.ts +1 -0
- package/dist/components/CheckBox/index.esm.js +1 -0
- package/dist/components/CheckBoxGroup/index.d.ts +1 -0
- package/dist/components/CheckBoxGroup/index.esm.js +1 -0
- package/dist/components/DatePicker/index.d.ts +4 -0
- package/dist/components/DatePicker/index.esm.js +4 -0
- package/dist/components/Delete/index.d.ts +1 -0
- package/dist/components/Delete/index.esm.js +1 -0
- package/dist/components/DeleteComponent/DeleteField.d.ts +0 -1
- package/dist/components/DeleteComponent/{DeleteField.js → DeleteField.esm.js} +6 -6
- package/dist/components/DeleteComponent/index.d.ts +1 -0
- package/dist/components/DeleteComponent/index.esm.js +1 -0
- package/dist/components/Feedback/index.d.ts +5 -0
- package/dist/components/Feedback/index.esm.js +7 -0
- package/dist/components/FileUpload/index.d.ts +2 -0
- package/dist/components/FileUpload/index.esm.js +2 -0
- package/dist/components/Form/Form.styles.d.ts +8 -26
- package/dist/components/Form/Form.styles.esm.js +111 -0
- package/dist/components/Form/FormActiveSwitch.d.ts +1 -2
- package/dist/components/Form/FormActiveSwitch.esm.js +11 -0
- package/dist/components/Form/FormConstants.d.ts +2 -3
- package/dist/components/Form/{FormConstants.js → FormConstants.esm.js} +89 -103
- package/dist/components/Form/FormContainer.d.ts +2 -3
- package/dist/components/Form/FormContainer.esm.js +3 -0
- package/dist/components/Form/FormRender.d.ts +11 -4
- package/dist/components/Form/FormRender.esm.js +135 -0
- package/dist/components/Form/FormRenderConstants.d.ts +0 -1
- package/dist/components/Form/FormRenderWrapper.d.ts +37 -5
- package/dist/components/Form/FormRenderWrapper.esm.js +33 -0
- package/dist/components/Form/index.d.ts +6 -0
- package/dist/components/Form/index.esm.js +5 -0
- package/dist/components/FormComponents/DatePicker/DatepickerWrapperV2.d.ts +1 -2
- package/dist/components/FormComponents/DatePicker/DatepickerWrapperV2.esm.js +72 -0
- package/dist/components/FormComponents/DatePicker/MonthPicker.d.ts +0 -1
- package/dist/components/FormComponents/DatePicker/{MonthPicker.js → MonthPicker.esm.js} +3 -3
- package/dist/components/FormComponents/DatePicker/Monthpickerrender.d.ts +1 -2
- package/dist/components/FormComponents/DatePicker/Monthpickerrender.esm.js +70 -0
- package/dist/components/FormComponents/FileUpload/FormRenderFileUpload.d.ts +1 -2
- package/dist/components/FormComponents/FileUpload/FormRenderFileUpload.esm.js +71 -0
- package/dist/components/FormComponents/FileUpload/FormRenderMultiFileUpload.d.ts +1 -2
- package/dist/components/FormComponents/FileUpload/FormRenderMultiFileUpload.esm.js +85 -0
- package/dist/components/FormComponents/FormBottomField/FormBottomField.d.ts +15 -2
- package/dist/components/FormComponents/FormBottomField/FormBottomField.esm.js +22 -0
- package/dist/components/FormComponents/FormCheckBox/FormCheckBox.d.ts +20 -2
- package/dist/components/FormComponents/FormCheckBox/FormCheckBox.esm.js +32 -0
- package/dist/components/FormComponents/FormCheckBoxGroup/FormCheckBoxGroup.d.ts +20 -2
- package/dist/components/FormComponents/FormCheckBoxGroup/FormCheckBoxGroup.esm.js +42 -0
- package/dist/components/FormComponents/FormErrorField/FormErrorField.d.ts +14 -2
- package/dist/components/FormComponents/FormErrorField/FormErrorField.esm.js +21 -0
- package/dist/components/FormComponents/FormNumberField/FormNumberField.d.ts +40 -3
- package/dist/components/FormComponents/FormNumberField/FormNumberField.esm.js +102 -0
- package/dist/components/FormComponents/FormNumberField/FormNumberFieldDecimal.d.ts +1 -2
- package/dist/components/FormComponents/FormNumberField/FormNumberFieldDecimal.esm.js +50 -0
- package/dist/components/FormComponents/FormRadioGroup/FormRadioGroup.d.ts +21 -3
- package/dist/components/FormComponents/FormRadioGroup/FormRadioGroup.esm.js +44 -0
- package/dist/components/FormComponents/FormTextAreaField/FormTextAreaField.d.ts +20 -2
- package/dist/components/FormComponents/FormTextAreaField/FormTextAreaField.esm.js +65 -0
- package/dist/components/FormComponents/FormTextAreaField/FormTextAreaField.styles.d.ts +1 -4
- package/dist/components/FormComponents/FormTextAreaField/FormTextAreaField.styles.esm.js +35 -0
- package/dist/components/FormComponents/FormTextField/FormTextField.d.ts +39 -3
- package/dist/components/FormComponents/FormTextField/FormTextField.esm.js +111 -0
- package/dist/components/FormComponents/FormTextField/FormTextField.styles.d.ts +10 -4
- package/dist/components/FormComponents/FormTextField/FormTextField.styles.esm.js +27 -0
- package/dist/components/FormComponents/HelperText/HelperText.d.ts +14 -2
- package/dist/components/FormComponents/HelperText/HelperText.esm.js +23 -0
- package/dist/components/FormComponents/PasswordField/PasswordField.d.ts +21 -3
- package/dist/components/FormComponents/PasswordField/PasswordField.esm.js +91 -0
- package/dist/components/FormComponents/RichTextEditor/RichTextEditor.d.ts +1 -2
- package/dist/components/FormComponents/RichTextEditor/{RichTextEditor.js → RichTextEditor.esm.js} +50 -31
- package/dist/components/FormComponents/RichTextEditor/RichTextEditorWrapper.d.ts +1 -2
- package/dist/components/FormComponents/RichTextEditor/{RichTextEditorWrapper.js → RichTextEditorWrapper.esm.js} +4 -3
- package/dist/components/FormComponents/RichTextEditor/jodit.index.d.ts +5 -10
- package/dist/components/FormComponents/RichTextEditor/jodit.index.esm.js +23 -0
- package/dist/components/FormComponents/Select/MultiSelect.d.ts +0 -1
- package/dist/components/FormComponents/Select/MultiSelectAutocomplete.d.ts +6 -0
- package/dist/components/FormComponents/Select/MultiSelectAutocomplete.esm.js +66 -0
- package/dist/components/FormComponents/Select/MultiSelectv1.d.ts +1 -2
- package/dist/components/FormComponents/Select/{MultiSelectv1.js → MultiSelectv1.esm.js} +54 -61
- package/dist/components/FormComponents/Select/SingleSelect.d.ts +2 -3
- package/dist/components/FormComponents/Select/SingleSelect.esm.js +61 -0
- package/dist/components/FormComponents/Select/SingleSelectNonAutoComplete.d.ts +1 -2
- package/dist/components/FormComponents/Select/SingleSelectNonAutoComplete.esm.js +32 -0
- package/dist/components/FormComponents/Select/SingleSelectSearchApi.d.ts +2 -3
- package/dist/components/FormComponents/Select/{SingleSelectSearchApi.js → SingleSelectSearchApi.esm.js} +2 -6
- package/dist/components/FormComponents/TimePicker/TimePicker.d.ts +1 -2
- package/dist/components/FormComponents/TimePicker/TimePicker.esm.js +70 -0
- package/dist/components/FormComponents/YearPickerField/YearPickerField.d.ts +2 -3
- package/dist/components/FormComponents/YearPickerField/{YearPickerField.js → YearPickerField.esm.js} +2 -6
- package/dist/components/FormComponents/index.d.ts +16 -25
- package/dist/components/FormComponents/{index.js → index.esm.js} +24 -26
- package/dist/components/Global.styles.d.ts +7 -22
- package/dist/components/{Global.styles.js → Global.styles.esm.js} +2 -2
- package/dist/components/ModalField/ConfirmationDialog.d.ts +2 -11
- package/dist/components/ModalField/ConfirmationDialog.esm.js +46 -0
- package/dist/components/ModalField/ModalField.d.ts +2 -3
- package/dist/components/ModalField/{ModalField.js → ModalField.esm.js} +10 -10
- package/dist/components/ModalField/index.d.ts +2 -0
- package/dist/components/ModalField/index.esm.js +2 -0
- package/dist/components/NumberField/index.d.ts +2 -0
- package/dist/components/NumberField/index.esm.js +2 -0
- package/dist/components/PasswordField/index.d.ts +1 -0
- package/dist/components/PasswordField/index.esm.js +1 -0
- package/dist/components/RadioGroup/index.d.ts +1 -0
- package/dist/components/RadioGroup/index.esm.js +1 -0
- package/dist/components/RichTextEditor/index.d.ts +2 -0
- package/dist/components/RichTextEditor/index.esm.js +2 -0
- package/dist/components/Select/index.d.ts +6 -0
- package/dist/components/Select/index.esm.js +8 -0
- package/dist/components/SelectField/MultiSelectField.d.ts +1 -0
- package/dist/components/SelectField/MultiSelectFieldComponent.d.ts +0 -1
- package/dist/components/SelectField/{MultiSelectFieldComponent.js → MultiSelectFieldComponent.esm.js} +36 -45
- package/dist/components/SelectField/index.d.ts +2 -0
- package/dist/components/SelectField/index.esm.js +1 -0
- package/dist/components/SessionTimeOut/SessionTimeOut.d.ts +1 -3
- package/dist/components/SessionTimeOut/{SessionTimeOut.js → SessionTimeOut.esm.js} +6 -7
- package/dist/components/SessionTimeOut/index.d.ts +1 -0
- package/dist/components/SessionTimeOut/index.esm.js +1 -0
- package/dist/components/TextAreaField/index.d.ts +1 -0
- package/dist/components/TextAreaField/index.esm.js +1 -0
- package/dist/components/TextField/index.d.ts +1 -0
- package/dist/components/TextField/index.esm.js +1 -0
- package/dist/components/TimePicker/index.d.ts +1 -0
- package/dist/components/TimePicker/index.esm.js +1 -0
- package/dist/components/TimePickerField/TimePickerField.d.ts +0 -1
- package/dist/components/TimePickerField/TimePickerField.esm.js +11 -0
- package/dist/components/TimePickerField/index.d.ts +1 -0
- package/dist/components/TimePickerField/index.esm.js +1 -0
- package/dist/index.d.ts +14 -9
- package/dist/index.esm.css +1 -0
- package/dist/index.esm.js +14 -0
- package/dist/theme/index.d.ts +0 -2
- package/dist/theme/{index.js → index.esm.js} +4 -7
- package/dist/types/index.d.ts +3 -4
- package/dist/utils/Constants/FormConstants.d.ts +40 -0
- package/dist/utils/Constants/FormConstants.esm.js +78 -0
- package/dist/{lib → utils}/Constants/FunctionConstants.d.ts +6 -7
- package/dist/{lib/Constants/FunctionConstants.js → utils/Constants/FunctionConstants.esm.js} +46 -54
- package/dist/utils/Constants/FunctionConstants.test.d.ts +1 -0
- package/dist/utils/Constants/crypto-js.d.ts +29 -0
- package/dist/utils/Constants/date-pickers.d.ts +29 -0
- package/dist/utils/Constants/date-pickers.esm.js +33 -0
- package/dist/utils/Constants/file-saver.d.ts +14 -0
- package/dist/utils/Constants/file-saver.esm.js +22 -0
- package/dist/utils/Constants/index.d.ts +5 -0
- package/dist/utils/Constants/xlsx-js-style.d.ts +22 -0
- package/dist/utils/Constants/xlsx-js-style.esm.js +46 -0
- package/dist/{lib → utils}/Interface/FormInterface.d.ts +11 -8
- package/dist/utils/Interface/MainInterface.d.ts +17 -0
- package/dist/utils/Interface/ModalInterface.d.ts +12 -0
- package/dist/utils/Interface/index.d.ts +3 -0
- package/dist/{lib → utils}/index.d.ts +3 -4
- package/dist/{lib/index.js → utils/index.esm.js} +2 -2
- package/dist/validation/index.d.ts +1 -0
- package/dist/validation/index.esm.js +1 -0
- package/dist/validation/schemas.d.ts +65 -6
- package/dist/validation/schemas.esm.js +111 -0
- package/package.json +62 -27
- package/scripts/install-deps.js +103 -46
- package/dist/assets/types.d.ts +0 -62
- package/dist/components/DeleteComponent/DeleteField.d.ts.map +0 -1
- package/dist/components/Form/Form.styles.d.ts.map +0 -1
- package/dist/components/Form/Form.styles.js +0 -111
- package/dist/components/Form/FormActiveSwitch.d.ts.map +0 -1
- package/dist/components/Form/FormActiveSwitch.js +0 -27
- package/dist/components/Form/FormConstants.d.ts.map +0 -1
- package/dist/components/Form/FormContainer.d.ts.map +0 -1
- package/dist/components/Form/FormRender.d.ts.map +0 -1
- package/dist/components/Form/FormRender.js +0 -96
- package/dist/components/Form/FormRenderConstants.d.ts.map +0 -1
- package/dist/components/Form/FormRenderWrapper.d.ts.map +0 -1
- package/dist/components/Form/FormRenderWrapper.js +0 -13
- package/dist/components/FormComponents/DatePicker/DateRangePicker.d.ts +0 -7
- package/dist/components/FormComponents/DatePicker/DateRangePicker.d.ts.map +0 -1
- package/dist/components/FormComponents/DatePicker/DatepickerWrapperV2.d.ts.map +0 -1
- package/dist/components/FormComponents/DatePicker/DatepickerWrapperV2.js +0 -58
- package/dist/components/FormComponents/DatePicker/MonthPicker.d.ts.map +0 -1
- package/dist/components/FormComponents/DatePicker/Monthpickerrender.d.ts.map +0 -1
- package/dist/components/FormComponents/DatePicker/Monthpickerrender.js +0 -61
- package/dist/components/FormComponents/FileUpload/FormRenderFileUpload.d.ts.map +0 -1
- package/dist/components/FormComponents/FileUpload/FormRenderFileUpload.js +0 -86
- package/dist/components/FormComponents/FileUpload/FormRenderMultiFileUpload.d.ts.map +0 -1
- package/dist/components/FormComponents/FileUpload/FormRenderMultiFileUpload.js +0 -96
- package/dist/components/FormComponents/FormBottomField/FormBottomField.d.ts.map +0 -1
- package/dist/components/FormComponents/FormBottomField/FormBottomField.js +0 -9
- package/dist/components/FormComponents/FormCheckBox/FormCheckBox.d.ts.map +0 -1
- package/dist/components/FormComponents/FormCheckBox/FormCheckBox.js +0 -10
- package/dist/components/FormComponents/FormCheckBoxGroup/FormCheckBoxGroup.d.ts.map +0 -1
- package/dist/components/FormComponents/FormCheckBoxGroup/FormCheckBoxGroup.js +0 -23
- package/dist/components/FormComponents/FormErrorField/FormErrorField.d.ts.map +0 -1
- package/dist/components/FormComponents/FormErrorField/FormErrorField.js +0 -9
- package/dist/components/FormComponents/FormNumberField/FormNumberField.d.ts.map +0 -1
- package/dist/components/FormComponents/FormNumberField/FormNumberField.js +0 -49
- package/dist/components/FormComponents/FormNumberField/FormNumberFieldDecimal.d.ts.map +0 -1
- package/dist/components/FormComponents/FormNumberField/FormNumberFieldDecimal.js +0 -45
- package/dist/components/FormComponents/FormRadioGroup/FormRadioGroup.d.ts.map +0 -1
- package/dist/components/FormComponents/FormRadioGroup/FormRadioGroup.js +0 -26
- package/dist/components/FormComponents/FormTextAreaField/FormTextAreaField.d.ts.map +0 -1
- package/dist/components/FormComponents/FormTextAreaField/FormTextAreaField.js +0 -31
- package/dist/components/FormComponents/FormTextAreaField/FormTextAreaField.styles.d.ts.map +0 -1
- package/dist/components/FormComponents/FormTextAreaField/FormTextAreaField.styles.js +0 -35
- package/dist/components/FormComponents/FormTextField/FormTextField.d.ts.map +0 -1
- package/dist/components/FormComponents/FormTextField/FormTextField.js +0 -46
- package/dist/components/FormComponents/FormTextField/FormTextField.styles.d.ts.map +0 -1
- package/dist/components/FormComponents/FormTextField/FormTextField.styles.js +0 -22
- package/dist/components/FormComponents/HelperText/HelperText.d.ts.map +0 -1
- package/dist/components/FormComponents/HelperText/HelperText.js +0 -10
- package/dist/components/FormComponents/PasswordField/PasswordField.d.ts.map +0 -1
- package/dist/components/FormComponents/PasswordField/PasswordField.js +0 -49
- package/dist/components/FormComponents/RichTextEditor/RichTextEditor.d.ts.map +0 -1
- package/dist/components/FormComponents/RichTextEditor/RichTextEditorWrapper.d.ts.map +0 -1
- package/dist/components/FormComponents/RichTextEditor/jodit.index.d.ts.map +0 -1
- package/dist/components/FormComponents/RichTextEditor/jodit.index.js +0 -27
- package/dist/components/FormComponents/Select/MultiSelect.d.ts.map +0 -1
- package/dist/components/FormComponents/Select/MultiSelectv1.d.ts.map +0 -1
- package/dist/components/FormComponents/Select/SingleSelect.d.ts.map +0 -1
- package/dist/components/FormComponents/Select/SingleSelect.js +0 -51
- package/dist/components/FormComponents/Select/SingleSelectNonAutoComplete.d.ts.map +0 -1
- package/dist/components/FormComponents/Select/SingleSelectNonAutoComplete.js +0 -27
- package/dist/components/FormComponents/Select/SingleSelectSearchApi.d.ts.map +0 -1
- package/dist/components/FormComponents/TimePicker/TimePicker.d.ts.map +0 -1
- package/dist/components/FormComponents/TimePicker/TimePicker.js +0 -55
- package/dist/components/FormComponents/YearPickerField/YearPickerField.d.ts.map +0 -1
- package/dist/components/FormComponents/index.d.ts.map +0 -1
- package/dist/components/Global.styles.d.ts.map +0 -1
- package/dist/components/ModalField/ConfirmationDialog.d.ts.map +0 -1
- package/dist/components/ModalField/ConfirmationDialog.js +0 -48
- package/dist/components/ModalField/ModalField.d.ts.map +0 -1
- package/dist/components/SelectField/MultiSelectFieldComponent.d.ts.map +0 -1
- package/dist/components/SessionTimeOut/SessionTimeOut.d.ts.map +0 -1
- package/dist/components/TimePickerField/TimePickerField.d.ts.map +0 -1
- package/dist/components/index.d.ts +0 -8
- package/dist/components/index.d.ts.map +0 -1
- package/dist/index.css +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -16
- package/dist/lib/Constants/FormConstants.d.ts +0 -11
- package/dist/lib/Constants/FormConstants.d.ts.map +0 -1
- package/dist/lib/Constants/FormConstants.js +0 -54
- package/dist/lib/Constants/FunctionConstants.d.ts.map +0 -1
- package/dist/lib/Interface/FormInterface.d.ts.map +0 -1
- package/dist/lib/index.d.ts.map +0 -1
- package/dist/theme/index.d.ts.map +0 -1
- package/dist/types/index.d.ts.map +0 -1
- package/dist/validation/schemas.d.ts.map +0 -1
- package/dist/validation/schemas.js +0 -60
|
@@ -10,185 +10,186 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
@font-face {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
url(
|
|
16
|
-
url(
|
|
17
|
-
url(
|
|
18
|
-
url(
|
|
13
|
+
font-family: 'flaticon_hvc';
|
|
14
|
+
src:
|
|
15
|
+
url('./flaticon_hvc.woff2?09127989b5c99a4f290cd7bb7c4bad12') format('woff2'),
|
|
16
|
+
url('./flaticon_hvc.woff?09127989b5c99a4f290cd7bb7c4bad12') format('woff'),
|
|
17
|
+
url('./flaticon_hvc.eot?09127989b5c99a4f290cd7bb7c4bad12#iefix') format('embedded-opentype'),
|
|
18
|
+
url('./flaticon_hvc.ttf?09127989b5c99a4f290cd7bb7c4bad12') format('truetype'),
|
|
19
|
+
url('./flaticon_hvc.svg?09127989b5c99a4f290cd7bb7c4bad12#flaticon_hvc') format('svg');
|
|
19
20
|
}
|
|
20
21
|
|
|
21
|
-
i[class^=
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
i[class^='flaticon-']:before,
|
|
23
|
+
i[class*=' flaticon-']:before {
|
|
24
|
+
font-family: flaticon_hvc !important;
|
|
25
|
+
font-style: normal;
|
|
26
|
+
font-weight: normal !important;
|
|
27
|
+
font-variant: normal;
|
|
28
|
+
text-transform: none;
|
|
29
|
+
line-height: 1;
|
|
30
|
+
-webkit-font-smoothing: antialiased;
|
|
31
|
+
-moz-osx-font-smoothing: grayscale;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
.flaticon-setting:before {
|
|
33
|
-
|
|
35
|
+
content: '\f101';
|
|
34
36
|
}
|
|
35
37
|
.flaticon-refresh:before {
|
|
36
|
-
|
|
38
|
+
content: '\f102';
|
|
37
39
|
}
|
|
38
40
|
.flaticon-setting-1:before {
|
|
39
|
-
|
|
41
|
+
content: '\f103';
|
|
40
42
|
}
|
|
41
43
|
.flaticon-check:before {
|
|
42
|
-
|
|
44
|
+
content: '\f104';
|
|
43
45
|
}
|
|
44
46
|
.flaticon-bank:before {
|
|
45
|
-
|
|
47
|
+
content: '\f105';
|
|
46
48
|
}
|
|
47
49
|
.flaticon-user:before {
|
|
48
|
-
|
|
50
|
+
content: '\f106';
|
|
49
51
|
}
|
|
50
52
|
.flaticon-user-1:before {
|
|
51
|
-
|
|
53
|
+
content: '\f107';
|
|
52
54
|
}
|
|
53
55
|
.flaticon-info-sign:before {
|
|
54
|
-
|
|
56
|
+
content: '\f108';
|
|
55
57
|
}
|
|
56
58
|
.flaticon-clipboard:before {
|
|
57
|
-
|
|
59
|
+
content: '\f109';
|
|
58
60
|
}
|
|
59
61
|
.flaticon-right-arrow:before {
|
|
60
|
-
|
|
62
|
+
content: '\f10a';
|
|
61
63
|
}
|
|
62
64
|
.flaticon-home:before {
|
|
63
|
-
|
|
65
|
+
content: '\f10b';
|
|
64
66
|
}
|
|
65
67
|
.flaticon-search:before {
|
|
66
|
-
|
|
68
|
+
content: '\f10c';
|
|
67
69
|
}
|
|
68
70
|
.flaticon-eye:before {
|
|
69
|
-
|
|
71
|
+
content: '\f10d';
|
|
70
72
|
}
|
|
71
73
|
.flaticon-edit:before {
|
|
72
|
-
|
|
74
|
+
content: '\f10e';
|
|
73
75
|
}
|
|
74
76
|
.flaticon-delete:before {
|
|
75
|
-
|
|
77
|
+
content: '\f10f';
|
|
76
78
|
}
|
|
77
79
|
.flaticon-add-1:before {
|
|
78
|
-
|
|
80
|
+
content: '\f110';
|
|
79
81
|
}
|
|
80
82
|
.flaticon-plus-1:before {
|
|
81
|
-
|
|
83
|
+
content: '\f111';
|
|
82
84
|
}
|
|
83
85
|
.flaticon-compose:before {
|
|
84
|
-
|
|
86
|
+
content: '\f112';
|
|
85
87
|
}
|
|
86
88
|
.flaticon-trash:before {
|
|
87
|
-
|
|
89
|
+
content: '\f113';
|
|
88
90
|
}
|
|
89
91
|
.flaticon-download:before {
|
|
90
|
-
|
|
92
|
+
content: '\f114';
|
|
91
93
|
}
|
|
92
94
|
.flaticon-downloading:before {
|
|
93
|
-
|
|
95
|
+
content: '\f115';
|
|
94
96
|
}
|
|
95
97
|
.flaticon-upload:before {
|
|
96
|
-
|
|
98
|
+
content: '\f116';
|
|
97
99
|
}
|
|
98
100
|
.flaticon-right-arrow-1:before {
|
|
99
|
-
|
|
101
|
+
content: '\f117';
|
|
100
102
|
}
|
|
101
103
|
.flaticon-user-2:before {
|
|
102
|
-
|
|
104
|
+
content: '\f118';
|
|
103
105
|
}
|
|
104
106
|
.flaticon-man-in-suit-and-tie:before {
|
|
105
|
-
|
|
107
|
+
content: '\f119';
|
|
106
108
|
}
|
|
107
109
|
.flaticon-cancel:before {
|
|
108
|
-
|
|
110
|
+
content: '\f11a';
|
|
109
111
|
}
|
|
110
112
|
.flaticon-check-mark:before {
|
|
111
|
-
|
|
113
|
+
content: '\f11b';
|
|
112
114
|
}
|
|
113
115
|
.flaticon-bars:before {
|
|
114
|
-
|
|
116
|
+
content: '\f11c';
|
|
115
117
|
}
|
|
116
118
|
.flaticon-copy:before {
|
|
117
|
-
|
|
119
|
+
content: '\f11d';
|
|
118
120
|
}
|
|
119
121
|
.flaticon-printer:before {
|
|
120
|
-
|
|
122
|
+
content: '\f11e';
|
|
121
123
|
}
|
|
122
124
|
.flaticon-file:before {
|
|
123
|
-
|
|
125
|
+
content: '\f11f';
|
|
124
126
|
}
|
|
125
127
|
.flaticon-file-1:before {
|
|
126
|
-
|
|
128
|
+
content: '\f120';
|
|
127
129
|
}
|
|
128
130
|
.flaticon-file-2:before {
|
|
129
|
-
|
|
131
|
+
content: '\f121';
|
|
130
132
|
}
|
|
131
133
|
.flaticon-eye-1:before {
|
|
132
|
-
|
|
134
|
+
content: '\f122';
|
|
133
135
|
}
|
|
134
136
|
.flaticon-upload-1:before {
|
|
135
|
-
|
|
137
|
+
content: '\f123';
|
|
136
138
|
}
|
|
137
139
|
.flaticon-production:before {
|
|
138
|
-
|
|
140
|
+
content: '\f124';
|
|
139
141
|
}
|
|
140
142
|
.flaticon-cube:before {
|
|
141
|
-
|
|
143
|
+
content: '\f125';
|
|
142
144
|
}
|
|
143
145
|
.flaticon-rotation:before {
|
|
144
|
-
|
|
146
|
+
content: '\f126';
|
|
145
147
|
}
|
|
146
148
|
.flaticon-rotation-1:before {
|
|
147
|
-
|
|
149
|
+
content: '\f127';
|
|
148
150
|
}
|
|
149
151
|
.flaticon-spinning:before {
|
|
150
|
-
|
|
152
|
+
content: '\f128';
|
|
151
153
|
}
|
|
152
154
|
.flaticon-spinning-1:before {
|
|
153
|
-
|
|
155
|
+
content: '\f129';
|
|
154
156
|
}
|
|
155
157
|
.flaticon-ready-stock:before {
|
|
156
|
-
|
|
158
|
+
content: '\f12a';
|
|
157
159
|
}
|
|
158
160
|
.flaticon-ready-stock-1:before {
|
|
159
|
-
|
|
161
|
+
content: '\f12b';
|
|
160
162
|
}
|
|
161
163
|
.flaticon-visible:before {
|
|
162
|
-
|
|
164
|
+
content: '\f12c';
|
|
163
165
|
}
|
|
164
166
|
.flaticon-printing:before {
|
|
165
|
-
|
|
167
|
+
content: '\f12d';
|
|
166
168
|
}
|
|
167
169
|
.flaticon-like:before {
|
|
168
|
-
|
|
170
|
+
content: '\f12e';
|
|
169
171
|
}
|
|
170
172
|
.flaticon-thumb-up:before {
|
|
171
|
-
|
|
173
|
+
content: '\f12f';
|
|
172
174
|
}
|
|
173
175
|
.flaticon-thumbs-up:before {
|
|
174
|
-
|
|
176
|
+
content: '\f130';
|
|
175
177
|
}
|
|
176
178
|
.flaticon-thumb-down:before {
|
|
177
|
-
|
|
179
|
+
content: '\f131';
|
|
178
180
|
}
|
|
179
181
|
.flaticon-dislike:before {
|
|
180
|
-
|
|
182
|
+
content: '\f132';
|
|
181
183
|
}
|
|
182
184
|
.flaticon-thumb-down-1:before {
|
|
183
|
-
|
|
185
|
+
content: '\f133';
|
|
184
186
|
}
|
|
185
187
|
.flaticon-pointing-right:before {
|
|
186
|
-
|
|
188
|
+
content: '\f134';
|
|
187
189
|
}
|
|
188
190
|
.flaticon-point:before {
|
|
189
|
-
|
|
191
|
+
content: '\f135';
|
|
190
192
|
}
|
|
191
193
|
.flaticon-history:before {
|
|
192
|
-
|
|
194
|
+
content: '\f136';
|
|
193
195
|
}
|
|
194
|
-
|
|
@@ -1,241 +1,243 @@
|
|
|
1
|
-
$flaticon_hvc-font:
|
|
1
|
+
$flaticon_hvc-font: 'flaticon_hvc';
|
|
2
2
|
|
|
3
3
|
@font-face {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
url(
|
|
7
|
-
url(
|
|
8
|
-
url(
|
|
9
|
-
url(
|
|
4
|
+
font-family: $flaticon_hvc-font;
|
|
5
|
+
src:
|
|
6
|
+
url('./flaticon_hvc.woff2?09127989b5c99a4f290cd7bb7c4bad12') format('woff2'),
|
|
7
|
+
url('./flaticon_hvc.woff?09127989b5c99a4f290cd7bb7c4bad12') format('woff'),
|
|
8
|
+
url('./flaticon_hvc.eot?09127989b5c99a4f290cd7bb7c4bad12#iefix') format('embedded-opentype'),
|
|
9
|
+
url('./flaticon_hvc.ttf?09127989b5c99a4f290cd7bb7c4bad12') format('truetype'),
|
|
10
|
+
url('./flaticon_hvc.svg?09127989b5c99a4f290cd7bb7c4bad12#flaticon_hvc') format('svg');
|
|
10
11
|
}
|
|
11
12
|
|
|
12
|
-
i[class^=
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
13
|
+
i[class^='flaticon-']:before,
|
|
14
|
+
i[class*=' flaticon-']:before {
|
|
15
|
+
font-family: flaticon_hvc !important;
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: normal !important;
|
|
18
|
+
font-variant: normal;
|
|
19
|
+
text-transform: none;
|
|
20
|
+
line-height: 1;
|
|
21
|
+
-webkit-font-smoothing: antialiased;
|
|
22
|
+
-moz-osx-font-smoothing: grayscale;
|
|
21
23
|
}
|
|
22
24
|
|
|
23
25
|
$flaticon_hvc-map: (
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
26
|
+
'setting': '\f101',
|
|
27
|
+
'refresh': '\f102',
|
|
28
|
+
'setting-1': '\f103',
|
|
29
|
+
'check': '\f104',
|
|
30
|
+
'bank': '\f105',
|
|
31
|
+
'user': '\f106',
|
|
32
|
+
'user-1': '\f107',
|
|
33
|
+
'info-sign': '\f108',
|
|
34
|
+
'clipboard': '\f109',
|
|
35
|
+
'right-arrow': '\f10a',
|
|
36
|
+
'home': '\f10b',
|
|
37
|
+
'search': '\f10c',
|
|
38
|
+
'eye': '\f10d',
|
|
39
|
+
'edit': '\f10e',
|
|
40
|
+
'delete': '\f10f',
|
|
41
|
+
'add-1': '\f110',
|
|
42
|
+
'plus-1': '\f111',
|
|
43
|
+
'compose': '\f112',
|
|
44
|
+
'trash': '\f113',
|
|
45
|
+
'download': '\f114',
|
|
46
|
+
'downloading': '\f115',
|
|
47
|
+
'upload': '\f116',
|
|
48
|
+
'right-arrow-1': '\f117',
|
|
49
|
+
'user-2': '\f118',
|
|
50
|
+
'man-in-suit-and-tie': '\f119',
|
|
51
|
+
'cancel': '\f11a',
|
|
52
|
+
'check-mark': '\f11b',
|
|
53
|
+
'bars': '\f11c',
|
|
54
|
+
'copy': '\f11d',
|
|
55
|
+
'printer': '\f11e',
|
|
56
|
+
'file': '\f11f',
|
|
57
|
+
'file-1': '\f120',
|
|
58
|
+
'file-2': '\f121',
|
|
59
|
+
'eye-1': '\f122',
|
|
60
|
+
'upload-1': '\f123',
|
|
61
|
+
'production': '\f124',
|
|
62
|
+
'cube': '\f125',
|
|
63
|
+
'rotation': '\f126',
|
|
64
|
+
'rotation-1': '\f127',
|
|
65
|
+
'spinning': '\f128',
|
|
66
|
+
'spinning-1': '\f129',
|
|
67
|
+
'ready-stock': '\f12a',
|
|
68
|
+
'ready-stock-1': '\f12b',
|
|
69
|
+
'visible': '\f12c',
|
|
70
|
+
'printing': '\f12d',
|
|
71
|
+
'like': '\f12e',
|
|
72
|
+
'thumb-up': '\f12f',
|
|
73
|
+
'thumbs-up': '\f130',
|
|
74
|
+
'thumb-down': '\f131',
|
|
75
|
+
'dislike': '\f132',
|
|
76
|
+
'thumb-down-1': '\f133',
|
|
77
|
+
'pointing-right': '\f134',
|
|
78
|
+
'point': '\f135',
|
|
79
|
+
'history': '\f136',
|
|
78
80
|
);
|
|
79
81
|
|
|
80
82
|
.flaticon-setting:before {
|
|
81
|
-
|
|
83
|
+
content: map-get($flaticon_hvc-map, 'setting');
|
|
82
84
|
}
|
|
83
85
|
.flaticon-refresh:before {
|
|
84
|
-
|
|
86
|
+
content: map-get($flaticon_hvc-map, 'refresh');
|
|
85
87
|
}
|
|
86
88
|
.flaticon-setting-1:before {
|
|
87
|
-
|
|
89
|
+
content: map-get($flaticon_hvc-map, 'setting-1');
|
|
88
90
|
}
|
|
89
91
|
.flaticon-check:before {
|
|
90
|
-
|
|
92
|
+
content: map-get($flaticon_hvc-map, 'check');
|
|
91
93
|
}
|
|
92
94
|
.flaticon-bank:before {
|
|
93
|
-
|
|
95
|
+
content: map-get($flaticon_hvc-map, 'bank');
|
|
94
96
|
}
|
|
95
97
|
.flaticon-user:before {
|
|
96
|
-
|
|
98
|
+
content: map-get($flaticon_hvc-map, 'user');
|
|
97
99
|
}
|
|
98
100
|
.flaticon-user-1:before {
|
|
99
|
-
|
|
101
|
+
content: map-get($flaticon_hvc-map, 'user-1');
|
|
100
102
|
}
|
|
101
103
|
.flaticon-info-sign:before {
|
|
102
|
-
|
|
104
|
+
content: map-get($flaticon_hvc-map, 'info-sign');
|
|
103
105
|
}
|
|
104
106
|
.flaticon-clipboard:before {
|
|
105
|
-
|
|
107
|
+
content: map-get($flaticon_hvc-map, 'clipboard');
|
|
106
108
|
}
|
|
107
109
|
.flaticon-right-arrow:before {
|
|
108
|
-
|
|
110
|
+
content: map-get($flaticon_hvc-map, 'right-arrow');
|
|
109
111
|
}
|
|
110
112
|
.flaticon-home:before {
|
|
111
|
-
|
|
113
|
+
content: map-get($flaticon_hvc-map, 'home');
|
|
112
114
|
}
|
|
113
115
|
.flaticon-search:before {
|
|
114
|
-
|
|
116
|
+
content: map-get($flaticon_hvc-map, 'search');
|
|
115
117
|
}
|
|
116
118
|
.flaticon-eye:before {
|
|
117
|
-
|
|
119
|
+
content: map-get($flaticon_hvc-map, 'eye');
|
|
118
120
|
}
|
|
119
121
|
.flaticon-edit:before {
|
|
120
|
-
|
|
122
|
+
content: map-get($flaticon_hvc-map, 'edit');
|
|
121
123
|
}
|
|
122
124
|
.flaticon-delete:before {
|
|
123
|
-
|
|
125
|
+
content: map-get($flaticon_hvc-map, 'delete');
|
|
124
126
|
}
|
|
125
127
|
.flaticon-add-1:before {
|
|
126
|
-
|
|
128
|
+
content: map-get($flaticon_hvc-map, 'add-1');
|
|
127
129
|
}
|
|
128
130
|
.flaticon-plus-1:before {
|
|
129
|
-
|
|
131
|
+
content: map-get($flaticon_hvc-map, 'plus-1');
|
|
130
132
|
}
|
|
131
133
|
.flaticon-compose:before {
|
|
132
|
-
|
|
134
|
+
content: map-get($flaticon_hvc-map, 'compose');
|
|
133
135
|
}
|
|
134
136
|
.flaticon-trash:before {
|
|
135
|
-
|
|
137
|
+
content: map-get($flaticon_hvc-map, 'trash');
|
|
136
138
|
}
|
|
137
139
|
.flaticon-download:before {
|
|
138
|
-
|
|
140
|
+
content: map-get($flaticon_hvc-map, 'download');
|
|
139
141
|
}
|
|
140
142
|
.flaticon-downloading:before {
|
|
141
|
-
|
|
143
|
+
content: map-get($flaticon_hvc-map, 'downloading');
|
|
142
144
|
}
|
|
143
145
|
.flaticon-upload:before {
|
|
144
|
-
|
|
146
|
+
content: map-get($flaticon_hvc-map, 'upload');
|
|
145
147
|
}
|
|
146
148
|
.flaticon-right-arrow-1:before {
|
|
147
|
-
|
|
149
|
+
content: map-get($flaticon_hvc-map, 'right-arrow-1');
|
|
148
150
|
}
|
|
149
151
|
.flaticon-user-2:before {
|
|
150
|
-
|
|
152
|
+
content: map-get($flaticon_hvc-map, 'user-2');
|
|
151
153
|
}
|
|
152
154
|
.flaticon-man-in-suit-and-tie:before {
|
|
153
|
-
|
|
155
|
+
content: map-get($flaticon_hvc-map, 'man-in-suit-and-tie');
|
|
154
156
|
}
|
|
155
157
|
.flaticon-cancel:before {
|
|
156
|
-
|
|
158
|
+
content: map-get($flaticon_hvc-map, 'cancel');
|
|
157
159
|
}
|
|
158
160
|
.flaticon-check-mark:before {
|
|
159
|
-
|
|
161
|
+
content: map-get($flaticon_hvc-map, 'check-mark');
|
|
160
162
|
}
|
|
161
163
|
.flaticon-bars:before {
|
|
162
|
-
|
|
164
|
+
content: map-get($flaticon_hvc-map, 'bars');
|
|
163
165
|
}
|
|
164
166
|
.flaticon-copy:before {
|
|
165
|
-
|
|
167
|
+
content: map-get($flaticon_hvc-map, 'copy');
|
|
166
168
|
}
|
|
167
169
|
.flaticon-printer:before {
|
|
168
|
-
|
|
170
|
+
content: map-get($flaticon_hvc-map, 'printer');
|
|
169
171
|
}
|
|
170
172
|
.flaticon-file:before {
|
|
171
|
-
|
|
173
|
+
content: map-get($flaticon_hvc-map, 'file');
|
|
172
174
|
}
|
|
173
175
|
.flaticon-file-1:before {
|
|
174
|
-
|
|
176
|
+
content: map-get($flaticon_hvc-map, 'file-1');
|
|
175
177
|
}
|
|
176
178
|
.flaticon-file-2:before {
|
|
177
|
-
|
|
179
|
+
content: map-get($flaticon_hvc-map, 'file-2');
|
|
178
180
|
}
|
|
179
181
|
.flaticon-eye-1:before {
|
|
180
|
-
|
|
182
|
+
content: map-get($flaticon_hvc-map, 'eye-1');
|
|
181
183
|
}
|
|
182
184
|
.flaticon-upload-1:before {
|
|
183
|
-
|
|
185
|
+
content: map-get($flaticon_hvc-map, 'upload-1');
|
|
184
186
|
}
|
|
185
187
|
.flaticon-production:before {
|
|
186
|
-
|
|
188
|
+
content: map-get($flaticon_hvc-map, 'production');
|
|
187
189
|
}
|
|
188
190
|
.flaticon-cube:before {
|
|
189
|
-
|
|
191
|
+
content: map-get($flaticon_hvc-map, 'cube');
|
|
190
192
|
}
|
|
191
193
|
.flaticon-rotation:before {
|
|
192
|
-
|
|
194
|
+
content: map-get($flaticon_hvc-map, 'rotation');
|
|
193
195
|
}
|
|
194
196
|
.flaticon-rotation-1:before {
|
|
195
|
-
|
|
197
|
+
content: map-get($flaticon_hvc-map, 'rotation-1');
|
|
196
198
|
}
|
|
197
199
|
.flaticon-spinning:before {
|
|
198
|
-
|
|
200
|
+
content: map-get($flaticon_hvc-map, 'spinning');
|
|
199
201
|
}
|
|
200
202
|
.flaticon-spinning-1:before {
|
|
201
|
-
|
|
203
|
+
content: map-get($flaticon_hvc-map, 'spinning-1');
|
|
202
204
|
}
|
|
203
205
|
.flaticon-ready-stock:before {
|
|
204
|
-
|
|
206
|
+
content: map-get($flaticon_hvc-map, 'ready-stock');
|
|
205
207
|
}
|
|
206
208
|
.flaticon-ready-stock-1:before {
|
|
207
|
-
|
|
209
|
+
content: map-get($flaticon_hvc-map, 'ready-stock-1');
|
|
208
210
|
}
|
|
209
211
|
.flaticon-visible:before {
|
|
210
|
-
|
|
212
|
+
content: map-get($flaticon_hvc-map, 'visible');
|
|
211
213
|
}
|
|
212
214
|
.flaticon-printing:before {
|
|
213
|
-
|
|
215
|
+
content: map-get($flaticon_hvc-map, 'printing');
|
|
214
216
|
}
|
|
215
217
|
.flaticon-like:before {
|
|
216
|
-
|
|
218
|
+
content: map-get($flaticon_hvc-map, 'like');
|
|
217
219
|
}
|
|
218
220
|
.flaticon-thumb-up:before {
|
|
219
|
-
|
|
221
|
+
content: map-get($flaticon_hvc-map, 'thumb-up');
|
|
220
222
|
}
|
|
221
223
|
.flaticon-thumbs-up:before {
|
|
222
|
-
|
|
224
|
+
content: map-get($flaticon_hvc-map, 'thumbs-up');
|
|
223
225
|
}
|
|
224
226
|
.flaticon-thumb-down:before {
|
|
225
|
-
|
|
227
|
+
content: map-get($flaticon_hvc-map, 'thumb-down');
|
|
226
228
|
}
|
|
227
229
|
.flaticon-dislike:before {
|
|
228
|
-
|
|
230
|
+
content: map-get($flaticon_hvc-map, 'dislike');
|
|
229
231
|
}
|
|
230
232
|
.flaticon-thumb-down-1:before {
|
|
231
|
-
|
|
233
|
+
content: map-get($flaticon_hvc-map, 'thumb-down-1');
|
|
232
234
|
}
|
|
233
235
|
.flaticon-pointing-right:before {
|
|
234
|
-
|
|
236
|
+
content: map-get($flaticon_hvc-map, 'pointing-right');
|
|
235
237
|
}
|
|
236
238
|
.flaticon-point:before {
|
|
237
|
-
|
|
239
|
+
content: map-get($flaticon_hvc-map, 'point');
|
|
238
240
|
}
|
|
239
241
|
.flaticon-history:before {
|
|
240
|
-
|
|
242
|
+
content: map-get($flaticon_hvc-map, 'history');
|
|
241
243
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ProjectThemePropsTp } from '../utils/Interface/MainInterface';
|
|
2
|
+
import React, { ReactNode } from 'react';
|
|
3
|
+
interface AuthContextType {
|
|
4
|
+
isAuthenticated: boolean;
|
|
5
|
+
user: User | null;
|
|
6
|
+
isLoading: boolean;
|
|
7
|
+
error: string | null;
|
|
8
|
+
projectTheme?: ProjectThemePropsTp;
|
|
9
|
+
}
|
|
10
|
+
interface User {
|
|
11
|
+
username: string;
|
|
12
|
+
}
|
|
13
|
+
interface AuthProviderProps {
|
|
14
|
+
children: ReactNode;
|
|
15
|
+
projectTheme?: ProjectThemePropsTp;
|
|
16
|
+
}
|
|
17
|
+
export declare const TPElementsProvider: React.FC<AuthProviderProps>;
|
|
18
|
+
export declare const useAuth: () => AuthContextType;
|
|
19
|
+
export {};
|