-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1025 from VKCOM/4.52.0
4.52.0
- Loading branch information
Showing
18 changed files
with
121,226 additions
and
83,577 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
203,343 changes: 120,053 additions & 83,290 deletions
203,343
src/build/__snapshots__/snapthots.test.ts.snap
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { | ||
ThemeOctavius, | ||
ThemeOctaviusCssVars, | ||
ThemeOctaviusDescription, | ||
} from '@/interfaces/themes/octavius'; | ||
|
||
export type ThemeOctaviusWhiteDark = ThemeOctavius; | ||
export type ThemeOctaviusWhiteDarkDescription = ThemeOctaviusDescription; | ||
export type ThemeOctaviusWhiteDarkCssVars = ThemeOctaviusCssVars; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { | ||
ParadigmTheme, | ||
ParadigmThemeCssVars, | ||
ParadigmThemeDescription, | ||
} from '@/interfaces/namespaces/paradigm'; | ||
|
||
export interface ThemeWidgetsDescription extends ParadigmThemeDescription {} | ||
export interface ThemeWidgets extends ParadigmTheme {} | ||
export interface ThemeWidgetsCssVars extends ParadigmThemeCssVars {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { | ||
ParadigmTheme, | ||
ParadigmThemeCssVars, | ||
ParadigmThemeDescription, | ||
} from '@/interfaces/namespaces/paradigm'; | ||
|
||
export interface ThemeWidgetsDarkDescription extends ParadigmThemeDescription {} | ||
export interface ThemeWidgetsDark extends ParadigmTheme {} | ||
export interface ThemeWidgetsDarkCssVars extends ParadigmThemeCssVars {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`lint snapshot 1`] = `[]`; | ||
exports[`lint snapshot 1`] = ` | ||
[ | ||
"cloud: colors.cloudColorIconTransportThemed error: Color token type mismatch: opaque token name but alpha value", | ||
"cloud: colors.cloudColorIconFinanceThemed error: Color token type mismatch: opaque token name but alpha value", | ||
"cloudDark: colors.cloudColorIconTransportThemed error: Color token type mismatch: opaque token name but alpha value", | ||
"cloudDark: colors.cloudColorIconFinanceThemed error: Color token type mismatch: opaque token name but alpha value", | ||
] | ||
`; |
Oops, something went wrong.