-
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 #1002 from VKCOM/4.50.0
4.50.0
- Loading branch information
Showing
14 changed files
with
15,903 additions
and
1,039 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
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
16,595 changes: 15,623 additions & 972 deletions
16,595
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
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,9 +1,40 @@ | ||
import { ThemeCssVars } from '@/interfaces/general'; | ||
import { ParadigmTheme, ParadigmThemeDescription } from '@/interfaces/namespaces/paradigm'; | ||
import { | ||
ColorDescription, | ||
ColorsDescriptionStruct, | ||
ColorWithStates, | ||
} from '@/interfaces/general/colors'; | ||
import { Font } from '@/interfaces/general/typography'; | ||
import { | ||
LocalParadigmColorsDescriptionStruct, | ||
ParadigmTheme, | ||
ParadigmThemeDescription, | ||
} from '@/interfaces/namespaces/paradigm'; | ||
|
||
export interface ThemeWorkspaceAdmin extends ParadigmTheme {} | ||
export interface ThemeWorkspaceOverValues { | ||
fontHeadline3: Font; | ||
} | ||
|
||
export interface ThemeWorkspaceAdminDescription extends ParadigmThemeDescription {} | ||
export interface LocalWorkspaceAdminColorsDescriptionStruct { | ||
colorIconNegativeSnackbar: ColorDescription; | ||
} | ||
|
||
export type WorkspaceAdminLocalColors = { | ||
[key in keyof LocalWorkspaceAdminColorsDescriptionStruct]: ColorWithStates; | ||
}; | ||
|
||
export interface ThemeWorkspaceAdmin | ||
extends ParadigmTheme, | ||
ThemeWorkspaceOverValues, | ||
WorkspaceAdminLocalColors {} | ||
|
||
export interface ThemeWorkspaceAdminDescription | ||
extends ParadigmThemeDescription, | ||
ThemeWorkspaceOverValues { | ||
colors: LocalWorkspaceAdminColorsDescriptionStruct & | ||
LocalParadigmColorsDescriptionStruct & | ||
ColorsDescriptionStruct; | ||
} | ||
|
||
export interface ThemeWorkspaceAdminCssVars | ||
extends ThemeCssVars<ThemeWorkspaceAdmin, 'breakpoints'> {} |
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 { | ||
ThemeWorkspaceAdmin, | ||
ThemeWorkspaceAdminCssVars, | ||
ThemeWorkspaceAdminDescription, | ||
} from '@/interfaces/themes/workspaceAdmin'; | ||
|
||
export type ThemeWorkspaceAdminDark = ThemeWorkspaceAdmin; | ||
export type ThemeWorkspaceAdminDarkDescription = ThemeWorkspaceAdminDescription; | ||
export type ThemeWorkspaceAdminDarkCssVars = ThemeWorkspaceAdminCssVars; |
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
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
Oops, something went wrong.