@skbkontur/react-ui 5.0.0-beta.2 → 5.0.0-beta.4
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/cjs/components/Paging/Paging.styles.js +1 -1
- package/cjs/components/Paging/Paging.styles.js.map +1 -1
- package/cjs/components/TokenInput/TokenInput.md +2 -2
- package/cjs/components/TokenInput/locale/locales/en.js +1 -1
- package/cjs/components/TokenInput/locale/locales/en.js.map +1 -1
- package/cjs/components/TokenInput/locale/locales/ru.js +1 -1
- package/cjs/components/TokenInput/locale/locales/ru.js.map +1 -1
- package/cjs/internal/ThemeShowcase/VariablesCollector.d.ts +1 -1
- package/cjs/internal/themes/BasicDarkTheme.d.ts +3 -1
- package/cjs/internal/themes/BasicDarkTheme.js +9 -5
- package/cjs/internal/themes/BasicDarkTheme.js.map +1 -1
- package/cjs/internal/themes/BasicLightTheme.d.ts +2 -0
- package/cjs/internal/themes/BasicLightTheme.js +8 -4
- package/cjs/internal/themes/BasicLightTheme.js.map +1 -1
- package/components/Paging/Paging.styles/Paging.styles.js +1 -1
- package/components/Paging/Paging.styles/Paging.styles.js.map +1 -1
- package/components/TokenInput/TokenInput.md +2 -2
- package/components/TokenInput/locale/locales/en/en.js +1 -1
- package/components/TokenInput/locale/locales/en/en.js.map +1 -1
- package/components/TokenInput/locale/locales/ru/ru.js +1 -1
- package/components/TokenInput/locale/locales/ru/ru.js.map +1 -1
- package/internal/ThemeShowcase/VariablesCollector.d.ts +1 -1
- package/internal/themes/BasicDarkTheme/BasicDarkTheme.js +7 -1
- package/internal/themes/BasicDarkTheme/BasicDarkTheme.js.map +1 -1
- package/internal/themes/BasicDarkTheme.d.ts +3 -1
- package/internal/themes/BasicLightTheme/BasicLightTheme.js +9 -3
- package/internal/themes/BasicLightTheme/BasicLightTheme.js.map +1 -1
- package/internal/themes/BasicLightTheme.d.ts +2 -0
- package/package.json +2 -2
|
@@ -956,6 +956,11 @@ export var BasicLightThemeInternal = /*#__PURE__*/function () {
|
|
|
956
956
|
get: function get() {
|
|
957
957
|
return this.pagingFontSize;
|
|
958
958
|
}
|
|
959
|
+
}, {
|
|
960
|
+
key: "pagingPageLinkColor",
|
|
961
|
+
get: function get() {
|
|
962
|
+
return this.textColorDefault;
|
|
963
|
+
}
|
|
959
964
|
}, {
|
|
960
965
|
key: "pagingPageForwardLinkPaddingRight",
|
|
961
966
|
get: function get() {
|
|
@@ -974,7 +979,7 @@ export var BasicLightThemeInternal = /*#__PURE__*/function () {
|
|
|
974
979
|
}, {
|
|
975
980
|
key: "pagingForwardLinkColor",
|
|
976
981
|
get: function get() {
|
|
977
|
-
return this.
|
|
982
|
+
return this.textColorDefault;
|
|
978
983
|
}
|
|
979
984
|
}, {
|
|
980
985
|
key: "pagingForwardLinkDisabledColor",
|
|
@@ -1838,7 +1843,7 @@ export var BasicLightThemeInternal = /*#__PURE__*/function () {
|
|
|
1838
1843
|
}, {
|
|
1839
1844
|
key: "checkboxCheckedBg",
|
|
1840
1845
|
get: function get() {
|
|
1841
|
-
return this.
|
|
1846
|
+
return this.bgChecked;
|
|
1842
1847
|
}
|
|
1843
1848
|
}, {
|
|
1844
1849
|
key: "checkboxBgDisabled",
|
|
@@ -2541,7 +2546,7 @@ export var BasicLightThemeInternal = /*#__PURE__*/function () {
|
|
|
2541
2546
|
}, {
|
|
2542
2547
|
key: "fileUploaderLinkColor",
|
|
2543
2548
|
get: function get() {
|
|
2544
|
-
return this.
|
|
2549
|
+
return this.textColorDefault;
|
|
2545
2550
|
}
|
|
2546
2551
|
}, {
|
|
2547
2552
|
key: "fileUploaderBorderColorError",
|
|
@@ -2668,6 +2673,7 @@ BasicLightThemeInternal.lineHeightMobile = '24px';
|
|
|
2668
2673
|
BasicLightThemeInternal.specificityLevel = '0';
|
|
2669
2674
|
BasicLightThemeInternal.fixedPanelShadow = 'none';
|
|
2670
2675
|
BasicLightThemeInternal.bgActive = '#141414';
|
|
2676
|
+
BasicLightThemeInternal.bgChecked = '#3D3D3D';
|
|
2671
2677
|
BasicLightThemeInternal.borderColorFocus = '#3D3D3D';
|
|
2672
2678
|
BasicLightThemeInternal.controlHeightSmall = '32px';
|
|
2673
2679
|
BasicLightThemeInternal.controlHeightMedium = '40px';
|