@vkontakte/vkui-tokens 4.3.0 → 4.3.1-dev-d4a11c.0
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/interfaces/themes/calendar/index.d.ts +4 -7
- package/package.json +1 -1
- package/themes/calendar/cssVars/declarations/index.css +832 -451
- package/themes/calendar/cssVars/declarations/noColors.css +406 -238
- package/themes/calendar/cssVars/declarations/noSizes.css +10 -7
- package/themes/calendar/cssVars/declarations/onlyAdaptiveGroups.css +26 -51
- package/themes/calendar/cssVars/declarations/onlyColors.css +6 -3
- package/themes/calendar/cssVars/declarations/onlyColors.js +2 -2
- package/themes/calendar/cssVars/declarations/onlyMedia.css +387 -152
- package/themes/calendar/cssVars/declarations/onlyVariables.css +137 -88
- package/themes/calendar/cssVars/declarations/onlyVariables.js +2 -2
- package/themes/calendar/cssVars/declarations/onlyVariablesLocal.css +137 -88
- package/themes/calendar/cssVars/theme/fallbacks/index.css +434 -263
- package/themes/calendar/cssVars/theme/fallbacks/index.less +183 -108
- package/themes/calendar/cssVars/theme/fallbacks/index.pcss +183 -108
- package/themes/calendar/cssVars/theme/fallbacks/index.scss +478 -234
- package/themes/calendar/cssVars/theme/fallbacks/index.styl +183 -108
- package/themes/calendar/cssVars/theme/index.js +529 -393
- package/themes/calendar/cssVars/theme/index.json +529 -393
- package/themes/calendar/index.css +412 -241
- package/themes/calendar/index.js +178 -113
- package/themes/calendar/index.json +178 -113
- package/themes/calendar/index.less +153 -78
- package/themes/calendar/index.pcss +153 -78
- package/themes/calendar/index.scss +405 -161
- package/themes/calendar/index.styl +153 -78
- package/themes/calendarDark/cssVars/declarations/index.css +832 -451
- package/themes/calendarDark/cssVars/declarations/noColors.css +406 -238
- package/themes/calendarDark/cssVars/declarations/noSizes.css +10 -7
- package/themes/calendarDark/cssVars/declarations/onlyAdaptiveGroups.css +26 -51
- package/themes/calendarDark/cssVars/declarations/onlyColors.css +6 -3
- package/themes/calendarDark/cssVars/declarations/onlyColors.js +2 -2
- package/themes/calendarDark/cssVars/declarations/onlyMedia.css +387 -152
- package/themes/calendarDark/cssVars/declarations/onlyVariables.css +137 -88
- package/themes/calendarDark/cssVars/declarations/onlyVariables.js +2 -2
- package/themes/calendarDark/cssVars/declarations/onlyVariablesLocal.css +137 -88
- package/themes/calendarDark/cssVars/theme/fallbacks/index.css +434 -263
- package/themes/calendarDark/cssVars/theme/fallbacks/index.less +183 -108
- package/themes/calendarDark/cssVars/theme/fallbacks/index.pcss +183 -108
- package/themes/calendarDark/cssVars/theme/fallbacks/index.scss +478 -234
- package/themes/calendarDark/cssVars/theme/fallbacks/index.styl +183 -108
- package/themes/calendarDark/cssVars/theme/index.js +529 -393
- package/themes/calendarDark/cssVars/theme/index.json +529 -393
- package/themes/calendarDark/index.css +412 -241
- package/themes/calendarDark/index.js +178 -113
- package/themes/calendarDark/index.json +178 -113
- package/themes/calendarDark/index.less +153 -78
- package/themes/calendarDark/index.pcss +153 -78
- package/themes/calendarDark/index.scss +405 -161
- package/themes/calendarDark/index.styl +153 -78
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
import { ThemeCssVars } from '../../general';
|
|
2
|
-
import { ColorsDescriptionStruct, ColorWithStates } from '../../general/colors';
|
|
2
|
+
import { ColorDescription, ColorsDescriptionStruct, ColorWithStates } from '../../general/colors';
|
|
3
3
|
import { Adaptive } from '../../general/tools';
|
|
4
4
|
import { Font } from '../../general/typography';
|
|
5
5
|
import { LocalParadigmColorsDescriptionStruct } from '../../namespaces/paradigm';
|
|
6
6
|
import { ThemeParadigmBase, ThemeParadigmBaseDescription } from '../paradigmBase';
|
|
7
7
|
export interface ThemeCalendarOverValues {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
fontEventXS: Adaptive<Font>;
|
|
11
|
-
fontTime: Adaptive<Font>;
|
|
12
|
-
fontBodyIOS: Adaptive<Font>;
|
|
13
|
-
fontBodyAndroid: Adaptive<Font>;
|
|
8
|
+
calendarFontTextEvent: Adaptive<Font>;
|
|
9
|
+
calendarFontTextEventSmall: Adaptive<Font>;
|
|
14
10
|
}
|
|
15
11
|
export interface LocalCalendarColorDescriptionStruct {
|
|
12
|
+
calendarColorBackgroundAccentTintThemed: ColorDescription;
|
|
16
13
|
}
|
|
17
14
|
export declare type CalendarLocalColors = {
|
|
18
15
|
[key in keyof LocalCalendarColorDescriptionStruct]: ColorWithStates;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/vkui-tokens",
|
|
3
|
-
"version": "4.3.0",
|
|
3
|
+
"version": "4.3.1-dev-d4a11c.0",
|
|
4
4
|
"description": "Репозиторий, который содержит в себе дизайн-токены и другие инструменты объединенной дизайн-системы VKUI и Paradigm",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "utils/descriptions.js",
|