@skbkontur/react-ui 4.15.1 → 4.15.2
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/CHANGELOG.md +13 -0
- package/cjs/components/Button/getInnerLinkTheme.js +2 -0
- package/cjs/components/Button/getInnerLinkTheme.js.map +1 -1
- package/cjs/components/CurrencyInput/CurrencyHelper.d.ts +2 -0
- package/cjs/components/CurrencyInput/CurrencyHelper.js +21 -6
- package/cjs/components/CurrencyInput/CurrencyHelper.js.map +1 -1
- package/cjs/components/Link/Link.js +1 -1
- package/cjs/components/Link/Link.js.map +1 -1
- package/cjs/components/Link/Link.mixins.d.ts +1 -1
- package/cjs/components/Link/Link.mixins.js +5 -4
- package/cjs/components/Link/Link.mixins.js.map +1 -1
- package/cjs/components/Link/Link.styles.d.ts +1 -1
- package/cjs/components/Link/Link.styles.js +14 -12
- package/cjs/components/Link/Link.styles.js.map +1 -1
- package/cjs/internal/CustomComboBox/CustomComboBox.js +4 -1
- package/cjs/internal/CustomComboBox/CustomComboBox.js.map +1 -1
- package/cjs/internal/ThemeShowcase/VariablesCollector.d.ts +1 -1
- package/cjs/internal/themes/DefaultTheme.d.ts +4 -0
- package/cjs/internal/themes/DefaultTheme.js +13 -3
- package/cjs/internal/themes/DefaultTheme.js.map +1 -1
- package/components/Button/getInnerLinkTheme/getInnerLinkTheme.js +2 -0
- package/components/Button/getInnerLinkTheme/getInnerLinkTheme.js.map +1 -1
- package/components/CurrencyInput/CurrencyHelper/CurrencyHelper.js +32 -4
- package/components/CurrencyInput/CurrencyHelper/CurrencyHelper.js.map +1 -1
- package/components/CurrencyInput/CurrencyHelper.d.ts +2 -0
- package/components/Link/Link/Link.js +1 -1
- package/components/Link/Link/Link.js.map +1 -1
- package/components/Link/Link.mixins/Link.mixins.js +2 -2
- package/components/Link/Link.mixins/Link.mixins.js.map +1 -1
- package/components/Link/Link.mixins.d.ts +1 -1
- package/components/Link/Link.styles/Link.styles.js +13 -12
- package/components/Link/Link.styles/Link.styles.js.map +1 -1
- package/components/Link/Link.styles.d.ts +1 -1
- package/internal/CustomComboBox/CustomComboBox/CustomComboBox.js +6 -2
- package/internal/CustomComboBox/CustomComboBox/CustomComboBox.js.map +1 -1
- package/internal/ThemeShowcase/VariablesCollector.d.ts +1 -1
- package/internal/themes/DefaultTheme/DefaultTheme.js +16 -0
- package/internal/themes/DefaultTheme/DefaultTheme.js.map +1 -1
- package/internal/themes/DefaultTheme.d.ts +4 -0
- package/package.json +2 -2
|
@@ -89,7 +89,9 @@ export declare class DefaultTheme {
|
|
|
89
89
|
static linkButtonLineHeight: string;
|
|
90
90
|
static linkButtonPaddingX: string;
|
|
91
91
|
static linkLineBorderBottomStyle: string;
|
|
92
|
+
static get linkLineHoverBorderBottomStyle(): string;
|
|
92
93
|
static linkLineBorderBottomWidth: string;
|
|
94
|
+
static linkLineBorderBottomOpacity: string;
|
|
93
95
|
static tokenDisabledBg: string;
|
|
94
96
|
static get tokenTextColorDisabled(): string;
|
|
95
97
|
static get tokenFontSize(): string;
|
|
@@ -292,7 +294,9 @@ export declare class DefaultTheme {
|
|
|
292
294
|
static get btnLinkActiveColor(): string;
|
|
293
295
|
static get btnLinkHoverTextDecoration(): string;
|
|
294
296
|
static btnLinkLineBorderBottomStyle: string;
|
|
297
|
+
static get btnLinkHoverLineBorderBottomStyle(): string;
|
|
295
298
|
static btnLinkLineBorderBottomWidth: string;
|
|
299
|
+
static get btnLinkLineBorderBottomOpacity(): string;
|
|
296
300
|
static get btnLinkIconMarginRight(): string;
|
|
297
301
|
static get btnErrorSecondary(): string;
|
|
298
302
|
static get btnWarningSecondary(): string;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skbkontur/react-ui",
|
|
3
|
-
"version": "4.15.
|
|
3
|
+
"version": "4.15.2",
|
|
4
4
|
"description": "UI Components",
|
|
5
5
|
"main": "cjs/index.js",
|
|
6
6
|
"module": "index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
|
-
"homepage": "https://tech.skbkontur.ru/react-ui/4.15.
|
|
8
|
+
"homepage": "https://tech.skbkontur.ru/react-ui/4.15.2/",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git@github.com:skbkontur/retail-ui.git"
|