@vkontakte/vkui-tokens 4.32.1 → 4.32.2-dev-b7e753.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.
Files changed (34) hide show
  1. package/interfaces/themes/workspaceAdmin/index.d.ts +8 -0
  2. package/interfaces/themes/workspaceAdmin/index.js +2 -0
  3. package/package.json +1 -1
  4. package/themes/workspaceAdmin/cssVars/declarations/index.css +1414 -0
  5. package/themes/workspaceAdmin/cssVars/declarations/noColors.css +595 -0
  6. package/themes/workspaceAdmin/cssVars/declarations/noSizes.css +362 -0
  7. package/themes/workspaceAdmin/cssVars/declarations/onlyAdaptiveGroups.css +128 -0
  8. package/themes/workspaceAdmin/cssVars/declarations/onlyColors.css +329 -0
  9. package/themes/workspaceAdmin/cssVars/declarations/onlyColors.d.ts +3 -0
  10. package/themes/workspaceAdmin/cssVars/declarations/onlyColors.js +11 -0
  11. package/themes/workspaceAdmin/cssVars/declarations/onlyMedia.css +362 -0
  12. package/themes/workspaceAdmin/cssVars/declarations/onlyVariables.css +626 -0
  13. package/themes/workspaceAdmin/cssVars/declarations/onlyVariables.d.ts +3 -0
  14. package/themes/workspaceAdmin/cssVars/declarations/onlyVariables.js +11 -0
  15. package/themes/workspaceAdmin/cssVars/declarations/onlyVariablesLocal.css +626 -0
  16. package/themes/workspaceAdmin/cssVars/declarations/onlyVariablesLocalIncremental.css +626 -0
  17. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.css +923 -0
  18. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.less +710 -0
  19. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.pcss +703 -0
  20. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.scss +934 -0
  21. package/themes/workspaceAdmin/cssVars/theme/fallbacks/index.styl +710 -0
  22. package/themes/workspaceAdmin/cssVars/theme/index.d.ts +4 -0
  23. package/themes/workspaceAdmin/cssVars/theme/index.js +3930 -0
  24. package/themes/workspaceAdmin/cssVars/theme/index.json +3927 -0
  25. package/themes/workspaceAdmin/docs.json +3682 -0
  26. package/themes/workspaceAdmin/index.css +923 -0
  27. package/themes/workspaceAdmin/index.d.ts +4 -0
  28. package/themes/workspaceAdmin/index.js +1190 -0
  29. package/themes/workspaceAdmin/index.json +1187 -0
  30. package/themes/workspaceAdmin/index.less +710 -0
  31. package/themes/workspaceAdmin/index.pcss +703 -0
  32. package/themes/workspaceAdmin/index.scss +934 -0
  33. package/themes/workspaceAdmin/index.styl +710 -0
  34. package/themes/workspaceAdmin/struct.json +1213 -0
@@ -0,0 +1,8 @@
1
+ import { ThemeCssVars } from '../../general';
2
+ import { ParadigmTheme, ParadigmThemeDescription } from '../../namespaces/paradigm';
3
+ export interface ThemeWorkspaceAdmin extends ParadigmTheme {
4
+ }
5
+ export interface ThemeWorkspaceAdminDescription extends ParadigmThemeDescription {
6
+ }
7
+ export interface ThemeWorkspaceAdminCssVars extends ThemeCssVars<ThemeWorkspaceAdmin, 'breakpoints'> {
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/vkui-tokens",
3
- "version": "4.32.1",
3
+ "version": "4.32.2-dev-b7e753.0",
4
4
  "description": "Репозиторий, который содержит в себе дизайн-токены и другие инструменты объединенной дизайн-системы VKUI и Paradigm",
5
5
  "license": "MIT",
6
6
  "main": "utils/descriptions.js",