ros.grant.common 2.0.1109 → 2.0.1112
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/Shared/Fonts/FuturaBold.otf +0 -0
- package/Shared/Fonts/Inter-Black.ttf +0 -0
- package/Shared/Fonts/Inter-Bold.ttf +0 -0
- package/Shared/Fonts/Inter-ExtraBold.ttf +0 -0
- package/Shared/Fonts/Inter-ExtraLight.ttf +0 -0
- package/Shared/Fonts/Inter-Light.ttf +0 -0
- package/Shared/Fonts/Inter-Medium.ttf +0 -0
- package/Shared/Fonts/Inter-Regular.ttf +0 -0
- package/Shared/Fonts/Inter-SemiBold.ttf +0 -0
- package/Shared/Fonts/Inter-Thin.ttf +0 -0
- package/Shared/Styles/Base/Fonts.less +74 -0
- package/Shared/Styles/Modules/Modals/Modal.less +1 -1
- package/Shared/Styles/Modules/Widget/Widget.less +1 -1
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1036,6 +1036,80 @@
|
|
|
1036
1036
|
font-style: normal;
|
|
1037
1037
|
}
|
|
1038
1038
|
|
|
1039
|
+
/** Inter BEGIN**/
|
|
1040
|
+
@font-face {
|
|
1041
|
+
font-family: 'Inter';
|
|
1042
|
+
src: url('@{commonFontsRoot}/Inter-Black.ttf');
|
|
1043
|
+
src: url('@{commonFontsRoot}/Inter-Black.ttf') format('truetype');
|
|
1044
|
+
font-weight: normal;
|
|
1045
|
+
font-style: normal;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
@font-face {
|
|
1049
|
+
font-family: 'Inter';
|
|
1050
|
+
src: url('@{commonFontsRoot}/Inter-Bold.ttf');
|
|
1051
|
+
src: url('@{commonFontsRoot}/Inter-Bold.ttf') format('truetype');
|
|
1052
|
+
font-weight: normal;
|
|
1053
|
+
font-style: normal;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
@font-face {
|
|
1057
|
+
font-family: 'Inter';
|
|
1058
|
+
src: url('@{commonFontsRoot}/Inter-ExtraBold.ttf');
|
|
1059
|
+
src: url('@{commonFontsRoot}/Inter-ExtraBold.ttf') format('truetype');
|
|
1060
|
+
font-weight: normal;
|
|
1061
|
+
font-style: normal;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
@font-face {
|
|
1065
|
+
font-family: 'Inter';
|
|
1066
|
+
src: url('@{commonFontsRoot}/Inter-ExtraLight.ttf');
|
|
1067
|
+
src: url('@{commonFontsRoot}/Inter-ExtraLight.ttf') format('truetype');
|
|
1068
|
+
font-weight: normal;
|
|
1069
|
+
font-style: normal;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
@font-face {
|
|
1073
|
+
font-family: 'Inter';
|
|
1074
|
+
src: url('@{commonFontsRoot}/Inter-Light.ttf');
|
|
1075
|
+
src: url('@{commonFontsRoot}/Inter-Light.ttf') format('truetype');
|
|
1076
|
+
font-weight: normal;
|
|
1077
|
+
font-style: normal;
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
@font-face {
|
|
1081
|
+
font-family: 'Inter';
|
|
1082
|
+
src: url('@{commonFontsRoot}/Inter-Medium.ttf');
|
|
1083
|
+
src: url('@{commonFontsRoot}/Inter-Medium.ttf') format('truetype');
|
|
1084
|
+
font-weight: normal;
|
|
1085
|
+
font-style: normal;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
@font-face {
|
|
1089
|
+
font-family: 'Inter';
|
|
1090
|
+
src: url('@{commonFontsRoot}/Inter-Regular.ttf');
|
|
1091
|
+
src: url('@{commonFontsRoot}/Inter-Regular.ttf') format('truetype');
|
|
1092
|
+
font-weight: normal;
|
|
1093
|
+
font-style: normal;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
@font-face {
|
|
1097
|
+
font-family: 'Inter';
|
|
1098
|
+
src: url('@{commonFontsRoot}/Inter-SemiBold.ttf');
|
|
1099
|
+
src: url('@{commonFontsRoot}/Inter-SemiBold.ttf') format('truetype');
|
|
1100
|
+
font-weight: normal;
|
|
1101
|
+
font-style: normal;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
@font-face {
|
|
1105
|
+
font-family: 'Inter';
|
|
1106
|
+
src: url('@{commonFontsRoot}/Inter-Thin.ttf');
|
|
1107
|
+
src: url('@{commonFontsRoot}/Inter-Thin.ttf') format('truetype');
|
|
1108
|
+
font-weight: normal;
|
|
1109
|
+
font-style: normal;
|
|
1110
|
+
}
|
|
1111
|
+
/** Inter END**/
|
|
1112
|
+
|
|
1039
1113
|
// fonts
|
|
1040
1114
|
.k-icon {
|
|
1041
1115
|
font-family: WebComponentsIcons !important;
|
package/package.json
CHANGED