intelicoreact 1.0.7 → 1.0.9
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/Atomic/FormElements/CheckboxInput/CheckboxInput.js +3 -3
- package/dist/Atomic/FormElements/Dropdown/Dropdown.js +6 -6
- package/dist/Atomic/FormElements/Input/Input.js +3 -3
- package/dist/Atomic/FormElements/InputDateRange/InputDateRange.js +2 -2
- package/dist/Atomic/FormElements/InputDateRange/components/OpenedPart.js +2 -2
- package/dist/Atomic/FormElements/InputDateRange/dependencies.js +3 -3
- package/dist/Atomic/FormElements/InputMask/InputMask.js +3 -2
- package/dist/Atomic/FormElements/InputMask/functions.js +1 -1
- package/dist/Atomic/FormElements/InputMask2/InputMask2.js +54 -52
- package/dist/Atomic/FormElements/InputMask2/functions.js +1 -1
- package/dist/Atomic/FormElements/InputsRow/InputsRow.js +2 -2
- package/dist/Atomic/FormElements/NumericInput/NumericInput.js +2 -2
- package/dist/Atomic/FormElements/RadioGroup/RadioGroup.js +2 -2
- package/dist/Atomic/FormElements/RangeInputs/RangeInputs.js +2 -2
- package/dist/Atomic/FormElements/RangeList/RangeList.js +2 -2
- package/dist/Atomic/FormElements/RangeSlider/RangeSlider.js +2 -2
- package/dist/Atomic/FormElements/UserContacts/UserContacts.js +2 -2
- package/dist/Atomic/FormElements/UserContacts/partial/defaultIcons.js +3 -3
- package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.js +2 -2
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.js +2 -2
- package/dist/Atomic/UI/AccordionTable/AccordionTable.js +2 -2
- package/dist/Atomic/UI/Chart/partial/Chart.constants.js +1 -1
- package/dist/Atomic/UI/Chart/partial/datasetSetters.js +3 -3
- package/dist/Atomic/UI/Chart/partial/optionsConstructor.js +3 -3
- package/dist/Atomic/UI/Chart/partial/optionsSetters.js +2 -2
- package/dist/Atomic/UI/Chart/partial/utils.js +3 -3
- package/dist/Atomic/UI/ExampleChartIntegration/ExampleChartIntegration.js +2 -2
- package/dist/Atomic/UI/ExampleChartIntegration/partial/utils.js +1 -1
- package/dist/Atomic/UI/NavLine/NavLine.js +2 -2
- package/dist/Atomic/UI/Table/Partials/TdCell.js +2 -2
- package/dist/Atomic/UI/Table/Partials/TdRow.js +2 -2
- package/dist/Atomic/UI/TagList/TagList.js +3 -3
- package/dist/Classes/AbortableFetch.js +2 -2
- package/dist/Classes/AnimatedHandler.js +4 -4
- package/dist/Constants/index.constants.js +1 -1
- package/dist/Functions/fieldValueFormatters.js +1 -1
- package/dist/Functions/useFormTools/form-drivers/ObjectWithIterableObjects.js +2 -2
- package/dist/Functions/useFormTools/form-drivers/ObjectWithNamedKeyObjects.js +2 -2
- package/dist/Functions/useFormTools/functions/General.js +2 -2
- package/dist/Functions/useFormTools/functions/RenderFields.js +2 -2
- package/dist/Functions/useFormTools/index.js +2 -2
- package/dist/Functions/useLocationParams.js +2 -2
- package/dist/Functions/usePasswordChecker.js +2 -2
- package/dist/Functions/utils.js +1 -1
- package/dist/scss/_fonts.scss +108 -108
- package/package.json +1 -1
package/dist/scss/_fonts.scss
CHANGED
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
/* roboto-100 - latin_cyrillic */
|
|
2
|
-
@font-face {
|
|
3
|
-
font-family: 'Roboto';
|
|
4
|
-
font-style: normal;
|
|
5
|
-
font-weight: 100;
|
|
6
|
-
src: local('Roboto Thin'), local('Roboto-Thin'),
|
|
7
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
8
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
9
|
-
}
|
|
10
|
-
/* roboto-100italic - latin_cyrillic */
|
|
11
|
-
@font-face {
|
|
12
|
-
font-family: 'Roboto';
|
|
13
|
-
font-style: italic;
|
|
14
|
-
font-weight: 100;
|
|
15
|
-
src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'),
|
|
16
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
17
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
18
|
-
}
|
|
19
|
-
/* roboto-300 - latin_cyrillic */
|
|
20
|
-
@font-face {
|
|
21
|
-
font-family: 'Roboto';
|
|
22
|
-
font-style: normal;
|
|
23
|
-
font-weight: 300;
|
|
24
|
-
src: local('Roboto Light'), local('Roboto-Light'),
|
|
25
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
26
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
27
|
-
}
|
|
28
|
-
/* roboto-300italic - latin_cyrillic */
|
|
29
|
-
@font-face {
|
|
30
|
-
font-family: 'Roboto';
|
|
31
|
-
font-style: italic;
|
|
32
|
-
font-weight: 300;
|
|
33
|
-
src: local('Roboto Light Italic'), local('Roboto-LightItalic'),
|
|
34
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
35
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
36
|
-
}
|
|
37
|
-
/* roboto-regular - latin_cyrillic */
|
|
38
|
-
@font-face {
|
|
39
|
-
font-family: 'Roboto';
|
|
40
|
-
font-style: normal;
|
|
41
|
-
font-weight: 400;
|
|
42
|
-
src: local('Roboto'), local('Roboto-Regular'),
|
|
43
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
44
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
45
|
-
}
|
|
46
|
-
/* roboto-italic - latin_cyrillic */
|
|
47
|
-
@font-face {
|
|
48
|
-
font-family: 'Roboto';
|
|
49
|
-
font-style: italic;
|
|
50
|
-
font-weight: 400;
|
|
51
|
-
src: local('Roboto Italic'), local('Roboto-Italic'),
|
|
52
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
53
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
54
|
-
}
|
|
55
|
-
/* roboto-500 - latin_cyrillic */
|
|
56
|
-
@font-face {
|
|
57
|
-
font-family: 'Roboto';
|
|
58
|
-
font-style: normal;
|
|
59
|
-
font-weight: 500;
|
|
60
|
-
src: local('Roboto Medium'), local('Roboto-Medium'),
|
|
61
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
62
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
63
|
-
}
|
|
64
|
-
/* roboto-500italic - latin_cyrillic */
|
|
65
|
-
@font-face {
|
|
66
|
-
font-family: 'Roboto';
|
|
67
|
-
font-style: italic;
|
|
68
|
-
font-weight: 500;
|
|
69
|
-
src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'),
|
|
70
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-500italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
71
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-500italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
72
|
-
}
|
|
73
|
-
/* roboto-700 - latin_cyrillic */
|
|
74
|
-
@font-face {
|
|
75
|
-
font-family: 'Roboto';
|
|
76
|
-
font-style: normal;
|
|
77
|
-
font-weight: 700;
|
|
78
|
-
src: local('Roboto Bold'), local('Roboto-Bold'),
|
|
79
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
80
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
81
|
-
}
|
|
82
|
-
/* roboto-700italic - latin_cyrillic */
|
|
83
|
-
@font-face {
|
|
84
|
-
font-family: 'Roboto';
|
|
85
|
-
font-style: italic;
|
|
86
|
-
font-weight: 700;
|
|
87
|
-
src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'),
|
|
88
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
89
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
90
|
-
}
|
|
91
|
-
/* roboto-900 - latin_cyrillic */
|
|
92
|
-
@font-face {
|
|
93
|
-
font-family: 'Roboto';
|
|
94
|
-
font-style: normal;
|
|
95
|
-
font-weight: 900;
|
|
96
|
-
src: local('Roboto Black'), local('Roboto-Black'),
|
|
97
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
98
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
99
|
-
}
|
|
100
|
-
/* roboto-900italic - latin_cyrillic */
|
|
101
|
-
@font-face {
|
|
102
|
-
font-family: 'Roboto';
|
|
103
|
-
font-style: italic;
|
|
104
|
-
font-weight: 900;
|
|
105
|
-
src: local('Roboto Black Italic'), local('Roboto-BlackItalic'),
|
|
106
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-900italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
107
|
-
url('../assets/fonts/roboto-v20-latin_cyrillic-900italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
108
|
-
}
|
|
1
|
+
/* roboto-100 - latin_cyrillic */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Roboto';
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 100;
|
|
6
|
+
src: local('Roboto Thin'), local('Roboto-Thin'),
|
|
7
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
8
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
9
|
+
}
|
|
10
|
+
/* roboto-100italic - latin_cyrillic */
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: 'Roboto';
|
|
13
|
+
font-style: italic;
|
|
14
|
+
font-weight: 100;
|
|
15
|
+
src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'),
|
|
16
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
17
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
18
|
+
}
|
|
19
|
+
/* roboto-300 - latin_cyrillic */
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: 'Roboto';
|
|
22
|
+
font-style: normal;
|
|
23
|
+
font-weight: 300;
|
|
24
|
+
src: local('Roboto Light'), local('Roboto-Light'),
|
|
25
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
26
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
27
|
+
}
|
|
28
|
+
/* roboto-300italic - latin_cyrillic */
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: 'Roboto';
|
|
31
|
+
font-style: italic;
|
|
32
|
+
font-weight: 300;
|
|
33
|
+
src: local('Roboto Light Italic'), local('Roboto-LightItalic'),
|
|
34
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
35
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
36
|
+
}
|
|
37
|
+
/* roboto-regular - latin_cyrillic */
|
|
38
|
+
@font-face {
|
|
39
|
+
font-family: 'Roboto';
|
|
40
|
+
font-style: normal;
|
|
41
|
+
font-weight: 400;
|
|
42
|
+
src: local('Roboto'), local('Roboto-Regular'),
|
|
43
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
44
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
45
|
+
}
|
|
46
|
+
/* roboto-italic - latin_cyrillic */
|
|
47
|
+
@font-face {
|
|
48
|
+
font-family: 'Roboto';
|
|
49
|
+
font-style: italic;
|
|
50
|
+
font-weight: 400;
|
|
51
|
+
src: local('Roboto Italic'), local('Roboto-Italic'),
|
|
52
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
53
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
54
|
+
}
|
|
55
|
+
/* roboto-500 - latin_cyrillic */
|
|
56
|
+
@font-face {
|
|
57
|
+
font-family: 'Roboto';
|
|
58
|
+
font-style: normal;
|
|
59
|
+
font-weight: 500;
|
|
60
|
+
src: local('Roboto Medium'), local('Roboto-Medium'),
|
|
61
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
62
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
63
|
+
}
|
|
64
|
+
/* roboto-500italic - latin_cyrillic */
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: 'Roboto';
|
|
67
|
+
font-style: italic;
|
|
68
|
+
font-weight: 500;
|
|
69
|
+
src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'),
|
|
70
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-500italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
71
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-500italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
72
|
+
}
|
|
73
|
+
/* roboto-700 - latin_cyrillic */
|
|
74
|
+
@font-face {
|
|
75
|
+
font-family: 'Roboto';
|
|
76
|
+
font-style: normal;
|
|
77
|
+
font-weight: 700;
|
|
78
|
+
src: local('Roboto Bold'), local('Roboto-Bold'),
|
|
79
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
80
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
81
|
+
}
|
|
82
|
+
/* roboto-700italic - latin_cyrillic */
|
|
83
|
+
@font-face {
|
|
84
|
+
font-family: 'Roboto';
|
|
85
|
+
font-style: italic;
|
|
86
|
+
font-weight: 700;
|
|
87
|
+
src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'),
|
|
88
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
89
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
90
|
+
}
|
|
91
|
+
/* roboto-900 - latin_cyrillic */
|
|
92
|
+
@font-face {
|
|
93
|
+
font-family: 'Roboto';
|
|
94
|
+
font-style: normal;
|
|
95
|
+
font-weight: 900;
|
|
96
|
+
src: local('Roboto Black'), local('Roboto-Black'),
|
|
97
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
98
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
99
|
+
}
|
|
100
|
+
/* roboto-900italic - latin_cyrillic */
|
|
101
|
+
@font-face {
|
|
102
|
+
font-family: 'Roboto';
|
|
103
|
+
font-style: italic;
|
|
104
|
+
font-weight: 900;
|
|
105
|
+
src: local('Roboto Black Italic'), local('Roboto-BlackItalic'),
|
|
106
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-900italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
107
|
+
url('../assets/fonts/roboto-v20-latin_cyrillic-900italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
108
|
+
}
|
|
109
109
|
|