intelicoreact 0.3.9 → 0.3.12
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/Dropdown/Dropdown.js +2 -2
- package/dist/Atomic/FormElements/Input/Input.js +36 -7
- 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 +2 -3
- package/dist/Atomic/FormElements/InputMask/functions.js +1 -1
- package/dist/Atomic/FormElements/InputMask2/InputMask2.js +2 -2
- 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 +11 -7
- 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/WidgetPseudoTable/WidgetPseudoTable.js +87 -0
- package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.scss +89 -0
- package/dist/Atomic/FormElements/WidgetPseudoTable/partial/AnyOuterClass.scss +76 -0
- package/dist/Atomic/FormElements/WidgetPseudoTable/partial/constructor.js +40 -0
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.js +9 -5
- package/dist/Atomic/UI/AccordionTable/AccordionTable.js +4 -4
- 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 +2 -2
- package/dist/Classes/AbortableFetch.js +2 -2
- package/dist/Constants/index.constants.js +1 -1
- package/dist/Functions/fieldValueFormatters.js +34 -32
- 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
|
@@ -13,9 +13,9 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
13
13
|
|
|
14
14
|
var _react = require("react");
|
|
15
15
|
|
|
16
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly
|
|
16
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
17
17
|
|
|
18
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source =
|
|
18
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
19
19
|
|
|
20
20
|
function useLocationParams() {
|
|
21
21
|
var _useState = (0, _react.useState)({}),
|
|
@@ -21,9 +21,9 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
21
21
|
|
|
22
22
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
23
|
|
|
24
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly
|
|
24
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
25
25
|
|
|
26
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source =
|
|
26
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
27
27
|
|
|
28
28
|
function usePasswordChecker() {
|
|
29
29
|
var _useState = (0, _react.useState)([]),
|
package/dist/Functions/utils.js
CHANGED
|
@@ -7,7 +7,7 @@ var _typeof3 = require("@babel/runtime/helpers/typeof");
|
|
|
7
7
|
Object.defineProperty(exports, "__esModule", {
|
|
8
8
|
value: true
|
|
9
9
|
});
|
|
10
|
-
exports.
|
|
10
|
+
exports.checkedRef = exports.firstLetterCapital = exports.changeMeta = exports.addBitDepthPoints = exports.throttle = exports.debounce = exports.getColorById = exports.getStyles = exports.logout = exports.omitKeys = exports.clone = exports.useOutsideToggle = exports.handleObjectChange = void 0;
|
|
11
11
|
|
|
12
12
|
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
13
13
|
|
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
|
|