├── .editorconfig ├── .eslintrc.js ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── node-setup │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── common_checks.yml │ ├── node_update.yml │ ├── publish.yml │ ├── publish_docs.yml │ └── reusable_workflow_test.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .npmrc ├── .nvmrc ├── .prettierrc.js ├── .yarnrc ├── .yarnrc.yml ├── CHANGELOG.OLD.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── assets ├── logo.svg └── vkui_logo.png ├── docs ├── docs.d.ts ├── public │ ├── index.html │ └── static │ │ ├── meta │ │ ├── apple-touch-icon.png │ │ └── favicon.ico │ │ └── svg │ │ └── logo.svg ├── src │ ├── App.tsx │ ├── articles │ │ ├── NewTheme.md │ │ └── TokenHelpers.md │ ├── components │ │ ├── layouts │ │ │ ├── Main.tsx │ │ │ └── shared │ │ │ │ ├── AsideMenu │ │ │ │ └── AsideMenu.tsx │ │ │ │ ├── Header │ │ │ │ └── Header.tsx │ │ │ │ └── Navigation │ │ │ │ ├── Navigation.content.ts │ │ │ │ └── Navigation.tsx │ │ └── pages │ │ │ └── Tokens │ │ │ ├── TokensActions │ │ │ ├── TokensActions.content.tsx │ │ │ ├── TokensActions.css │ │ │ └── TokensActions.tsx │ │ │ ├── TokensContent │ │ │ ├── TokensContent.css │ │ │ ├── TokensContent.helpers.ts │ │ │ ├── TokensContent.tsx │ │ │ └── components │ │ │ │ ├── ColorCircle │ │ │ │ ├── ColorCircle.css │ │ │ │ └── ColorCircle.tsx │ │ │ │ ├── TokensContentValue.helpers.ts │ │ │ │ └── TokensContentValue.tsx │ │ │ ├── TokensHeader.tsx │ │ │ └── index.ts │ ├── highlight │ │ ├── codeWidget.ts │ │ ├── config.ts │ │ └── highlight.ts │ ├── index.tsx │ ├── pages │ │ ├── Articles.tsx │ │ └── Tokens.tsx │ ├── shared │ │ ├── content │ │ │ └── icons.ts │ │ ├── hooks │ │ │ └── useDebounce.ts │ │ ├── types │ │ │ ├── index.ts │ │ │ └── tokens.ts │ │ └── utils │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── typeGuards.ts │ └── styles │ │ ├── articles.css │ │ ├── flex.css │ │ ├── index.css │ │ └── space.css ├── tsconfig.json └── webpack │ ├── webpack.client.mjs │ └── webpack.config.mjs ├── jest.config.js ├── lint ├── silence-core.js └── silence-typescript.js ├── package.json ├── src ├── build │ ├── __snapshots__ │ │ └── snapthots.test.ts.snap │ ├── compilers │ │ ├── cssVars │ │ │ ├── declarations │ │ │ │ ├── compileBreakpointsCssVarsDeclaration.test.ts │ │ │ │ └── compileBreakpointsCssVarsDeclaration.ts │ │ │ ├── helpers │ │ │ │ ├── accumulateValues.ts │ │ │ │ ├── findViewportByAdaptivityState.ts │ │ │ │ └── getVarString.ts │ │ │ └── jsUtils │ │ │ │ ├── compileGetDeclarationString.test.ts │ │ │ │ └── compileGetDeclarationString.ts │ │ ├── docs │ │ │ ├── __test__ │ │ │ │ ├── emptyTheme.ts │ │ │ │ ├── testBaseForBase.ts │ │ │ │ ├── testBaseTheme.ts │ │ │ │ ├── testLinks.ts │ │ │ │ ├── testRecursiveReexport.ts │ │ │ │ └── testTheme.ts │ │ │ ├── compileDocsJSON.test.ts │ │ │ └── compileDocsJSON.ts │ │ ├── index.ts │ │ ├── json │ │ │ ├── compileJSON.test.ts │ │ │ └── compileJSON.ts │ │ ├── structJSON │ │ │ ├── compileStructJSON.test.ts │ │ │ └── compileStructJSON.ts │ │ ├── styles │ │ │ ├── compileStyles.test.ts │ │ │ ├── compileStyles.ts │ │ │ └── helpers │ │ │ │ ├── tokenProcessors.ts │ │ │ │ └── tokenRecognition.ts │ │ └── ts │ │ │ ├── compileTypeScript.test.ts │ │ │ └── compileTypeScript.ts │ ├── expandTheme.test.ts │ ├── expandTheme.ts │ ├── helpers │ │ ├── capitalize.test.ts │ │ ├── capitalize.ts │ │ ├── convertCamelToSnake.test.ts │ │ ├── convertCamelToSnake.ts │ │ ├── convertSnakeToCamel.test.ts │ │ ├── convertSnakeToCamel.ts │ │ ├── cssHelpers.test.ts │ │ ├── cssHelpers.ts │ │ ├── flatifyTheme.test.ts │ │ ├── flatifyTheme.ts │ │ ├── getAllButColors.test.ts │ │ ├── getAllButColors.ts │ │ ├── getAllButSizes.test.ts │ │ ├── getAllButSizes.ts │ │ ├── getGradientPointsFromColor.test.ts │ │ ├── getGradientPointsFromColor.ts │ │ ├── getOnlyColors.test.ts │ │ ├── getOnlyColors.ts │ │ ├── getStateFunctions.test.ts │ │ ├── getStateFunctions.ts │ │ ├── opacityMap.json │ │ ├── overrideOnlyNeeded.test.ts │ │ ├── overrideOnlyNeeded.ts │ │ ├── replacePropDeep.test.ts │ │ ├── replacePropDeep.ts │ │ ├── tokenHelpers.test.ts │ │ ├── tokenHelpers.ts │ │ ├── unCamelcasify.test.ts │ │ └── unCamelcasify.ts │ ├── index.ts │ ├── snapthots.test.ts │ └── themeProcessors │ │ ├── createPseudoRootFromCssVars │ │ ├── createPseudoRootFromCssVars.test.ts │ │ └── createPseudoRootFromCssVars.ts │ │ ├── customMedia │ │ ├── customMedia.test.ts │ │ └── customMedia.ts │ │ ├── expandColors │ │ ├── expandColors.test.ts │ │ ├── expandColors.ts │ │ ├── mixColors.test.ts │ │ ├── mixColors.ts │ │ ├── overlayColors.test.ts │ │ └── overlayColors.ts │ │ ├── extractCssVarsStrict │ │ ├── extractCssVarsStrict.test.ts │ │ └── extractCssVarsStrict.ts │ │ ├── extractGeneralTokens │ │ ├── extractGeneralTokens.test.ts │ │ └── extractGeneralTokens.ts │ │ ├── extractVarsNames │ │ ├── extractVarsNames.test.ts │ │ └── extractVarsNames.ts │ │ ├── extractViewports │ │ ├── extractViewports.test.ts │ │ └── extractViewports.ts │ │ └── pixelifyValues │ │ ├── pixelifyValues.test.ts │ │ └── pixelifyValues.ts ├── interfaces │ ├── general │ │ ├── animations │ │ │ └── index.ts │ │ ├── colors │ │ │ └── index.ts │ │ ├── effects │ │ │ └── index.ts │ │ ├── elevation │ │ │ └── index.ts │ │ ├── geometry │ │ │ └── index.ts │ │ ├── gradients │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── toneValues │ │ │ └── index.ts │ │ ├── tools │ │ │ ├── cssVars.ts │ │ │ ├── customMedia.ts │ │ │ ├── index.ts │ │ │ ├── tokenValue.ts │ │ │ ├── utils.ts │ │ │ └── viewports.ts │ │ ├── typography │ │ │ └── index.ts │ │ └── zIndex │ │ │ └── index.ts │ ├── namespaces │ │ ├── paradigm │ │ │ └── index.ts │ │ └── vk │ │ │ └── index.ts │ └── themes │ │ ├── calendar │ │ └── index.ts │ │ ├── calendarDark │ │ └── index.ts │ │ ├── calls │ │ └── index.ts │ │ ├── cloud │ │ └── index.ts │ │ ├── cloudDark │ │ └── index.ts │ │ ├── dobro │ │ └── index.ts │ │ ├── dobroDark │ │ └── index.ts │ │ ├── home │ │ └── index.ts │ │ ├── homeDark │ │ └── index.ts │ │ ├── legoAndroid │ │ └── index.ts │ │ ├── legoAndroidDark │ │ └── index.ts │ │ ├── legoIOS │ │ └── index.ts │ │ ├── legoIOSDark │ │ └── index.ts │ │ ├── media │ │ └── index.ts │ │ ├── mediaDark │ │ └── index.ts │ │ ├── mycom │ │ └── index.ts │ │ ├── octavius │ │ └── index.ts │ │ ├── octaviusCompact │ │ └── index.ts │ │ ├── octaviusCompactDark │ │ └── index.ts │ │ ├── octaviusDark │ │ └── index.ts │ │ ├── octaviusVK │ │ └── index.ts │ │ ├── octaviusVKDark │ │ └── index.ts │ │ ├── octaviusWhite │ │ └── index.ts │ │ ├── octaviusWhiteDark │ │ └── index.ts │ │ ├── otvet │ │ └── index.ts │ │ ├── otvetDark │ │ └── index.ts │ │ ├── paradigmBase │ │ └── index.ts │ │ ├── paradigmBaseDark │ │ └── index.ts │ │ ├── paradigmTech │ │ └── index.ts │ │ ├── paradigmTechDark │ │ └── index.ts │ │ ├── pharma │ │ └── index.ts │ │ ├── portalUI │ │ └── index.ts │ │ ├── portalUIDark │ │ └── index.ts │ │ ├── promo │ │ └── index.ts │ │ ├── pulse │ │ └── index.ts │ │ ├── pulseDark │ │ └── index.ts │ │ ├── search │ │ └── index.ts │ │ ├── todo │ │ └── index.ts │ │ ├── tutoria │ │ └── index.ts │ │ ├── tutoriaDark │ │ └── index.ts │ │ ├── vkAccessibility │ │ └── index.ts │ │ ├── vkAccessibilityDark │ │ └── index.ts │ │ ├── vkAccessibilityIOS │ │ └── index.ts │ │ ├── vkAccessibilityIOSDark │ │ └── index.ts │ │ ├── vkBase │ │ └── index.ts │ │ ├── vkBaseDark │ │ └── index.ts │ │ ├── vkCom │ │ └── index.ts │ │ ├── vkComDark │ │ └── index.ts │ │ ├── vkIOS │ │ └── index.ts │ │ ├── vkIOSDark │ │ └── index.ts │ │ ├── vkIdOk │ │ └── index.ts │ │ ├── vkIdOkDark │ │ └── index.ts │ │ ├── vkIdOkIOS │ │ └── index.ts │ │ ├── vkIdOkIOSDark │ │ └── index.ts │ │ ├── vkontakteAndroid │ │ └── index.ts │ │ ├── vkontakteAndroidDark │ │ └── index.ts │ │ ├── vkontakteCom │ │ └── index.ts │ │ ├── vkontakteComDark │ │ └── index.ts │ │ ├── vkontakteIOS │ │ └── index.ts │ │ ├── vkontakteIOSDark │ │ └── index.ts │ │ ├── widgets │ │ └── index.ts │ │ ├── widgetsDark │ │ └── index.ts │ │ ├── workspaceAdmin │ │ └── index.ts │ │ ├── workspaceAdminDark │ │ └── index.ts │ │ └── workspaceLandings │ │ └── index.ts ├── lint │ ├── __snapshots__ │ │ └── lint.test.ts.snap │ ├── index.test.ts │ ├── index.ts │ ├── lint.test.ts │ └── rules │ │ ├── alphaMismatch.test.ts │ │ ├── alphaMismatch.ts │ │ └── index.ts └── themeDescriptions │ ├── base │ ├── figma │ │ └── vk.json │ ├── paradigm.ts │ └── vk.ts │ ├── common │ ├── colors │ │ ├── projectColors.ts │ │ └── socialColors.ts │ ├── fontSizes │ │ └── index.ts │ ├── helpers │ │ └── index.ts │ ├── index.ts │ └── themeHelpers.ts │ ├── descriptions.ts │ ├── index.ts │ └── themes │ ├── calendar │ └── index.ts │ ├── calls │ └── index.ts │ ├── cloud │ └── index.ts │ ├── dobro │ └── index.ts │ ├── home │ └── index.ts │ ├── lego │ ├── android.ts │ ├── figma.json │ ├── helpers │ │ ├── overwriteFromFigmaJSON.test.ts │ │ └── overwriteFromFigmaJSON.ts │ └── ios.ts │ ├── media │ └── index.ts │ ├── mycom │ └── index.ts │ ├── octavius │ └── index.ts │ ├── octaviusCompact │ └── index.ts │ ├── octaviusVK │ └── index.ts │ ├── otvet │ └── index.ts │ ├── paradigmTech │ └── index.ts │ ├── pharma │ └── index.ts │ ├── portalUI │ └── index.ts │ ├── promo │ └── index.ts │ ├── pulse │ └── index.ts │ ├── search │ └── index.ts │ ├── todo │ └── index.ts │ ├── tutoria │ └── index.ts │ ├── vkAccessibility │ └── index.ts │ ├── vkAccessibilityIOS │ └── index.ts │ ├── vkCom │ ├── appearance.test.ts │ ├── appearance.ts │ └── index.ts │ ├── vkIOS │ └── index.ts │ ├── vkIdOk │ └── index.ts │ ├── vkIdOkIOS │ └── index.ts │ ├── vkontakteAndroid │ └── index.ts │ ├── vkontakteCom │ └── index.ts │ ├── vkontakteIOS │ └── index.ts │ ├── widgets │ └── index.ts │ ├── workspaceAdmin │ └── index.ts │ └── workspaceLandings │ └── index.ts ├── tasks └── docs │ ├── mergeTokensData.test.ts │ ├── mergeTokensData.ts │ └── prepareTokensData.ts ├── tsconfig.json ├── tsconfig.publish.json ├── tsconfig.tscpaths.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/node-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/actions/node-setup/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/common_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/workflows/common_checks.yml -------------------------------------------------------------------------------- /.github/workflows/node_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/workflows/node_update.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/workflows/publish_docs.yml -------------------------------------------------------------------------------- /.github/workflows/reusable_workflow_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.github/workflows/reusable_workflow_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | lint-staged -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v24.11.1 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/.yarnrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/CHANGELOG.OLD.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/vkui_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/assets/vkui_logo.png -------------------------------------------------------------------------------- /docs/docs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/docs.d.ts -------------------------------------------------------------------------------- /docs/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/public/index.html -------------------------------------------------------------------------------- /docs/public/static/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/public/static/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/static/meta/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/public/static/meta/favicon.ico -------------------------------------------------------------------------------- /docs/public/static/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/public/static/svg/logo.svg -------------------------------------------------------------------------------- /docs/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/App.tsx -------------------------------------------------------------------------------- /docs/src/articles/NewTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/articles/NewTheme.md -------------------------------------------------------------------------------- /docs/src/articles/TokenHelpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/articles/TokenHelpers.md -------------------------------------------------------------------------------- /docs/src/components/layouts/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/layouts/Main.tsx -------------------------------------------------------------------------------- /docs/src/components/layouts/shared/AsideMenu/AsideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/layouts/shared/AsideMenu/AsideMenu.tsx -------------------------------------------------------------------------------- /docs/src/components/layouts/shared/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/layouts/shared/Header/Header.tsx -------------------------------------------------------------------------------- /docs/src/components/layouts/shared/Navigation/Navigation.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/layouts/shared/Navigation/Navigation.content.ts -------------------------------------------------------------------------------- /docs/src/components/layouts/shared/Navigation/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/layouts/shared/Navigation/Navigation.tsx -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensActions/TokensActions.content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensActions/TokensActions.content.tsx -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensActions/TokensActions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensActions/TokensActions.css -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensActions/TokensActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensActions/TokensActions.tsx -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensContent/TokensContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensContent/TokensContent.css -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensContent/TokensContent.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensContent/TokensContent.helpers.ts -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensContent/TokensContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensContent/TokensContent.tsx -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensContent/components/ColorCircle/ColorCircle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensContent/components/ColorCircle/ColorCircle.css -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensContent/components/ColorCircle/ColorCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensContent/components/ColorCircle/ColorCircle.tsx -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensContent/components/TokensContentValue.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensContent/components/TokensContentValue.helpers.ts -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensContent/components/TokensContentValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensContent/components/TokensContentValue.tsx -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/TokensHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/TokensHeader.tsx -------------------------------------------------------------------------------- /docs/src/components/pages/Tokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/components/pages/Tokens/index.ts -------------------------------------------------------------------------------- /docs/src/highlight/codeWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/highlight/codeWidget.ts -------------------------------------------------------------------------------- /docs/src/highlight/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/highlight/config.ts -------------------------------------------------------------------------------- /docs/src/highlight/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/highlight/highlight.ts -------------------------------------------------------------------------------- /docs/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/Articles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/pages/Articles.tsx -------------------------------------------------------------------------------- /docs/src/pages/Tokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/pages/Tokens.tsx -------------------------------------------------------------------------------- /docs/src/shared/content/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/shared/content/icons.ts -------------------------------------------------------------------------------- /docs/src/shared/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/shared/hooks/useDebounce.ts -------------------------------------------------------------------------------- /docs/src/shared/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tokens'; 2 | -------------------------------------------------------------------------------- /docs/src/shared/types/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/shared/types/tokens.ts -------------------------------------------------------------------------------- /docs/src/shared/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/shared/utils/helpers.ts -------------------------------------------------------------------------------- /docs/src/shared/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/shared/utils/index.ts -------------------------------------------------------------------------------- /docs/src/shared/utils/typeGuards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/shared/utils/typeGuards.ts -------------------------------------------------------------------------------- /docs/src/styles/articles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/styles/articles.css -------------------------------------------------------------------------------- /docs/src/styles/flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/styles/flex.css -------------------------------------------------------------------------------- /docs/src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/styles/index.css -------------------------------------------------------------------------------- /docs/src/styles/space.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/src/styles/space.css -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/webpack/webpack.client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/webpack/webpack.client.mjs -------------------------------------------------------------------------------- /docs/webpack/webpack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/docs/webpack/webpack.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/jest.config.js -------------------------------------------------------------------------------- /lint/silence-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/lint/silence-core.js -------------------------------------------------------------------------------- /lint/silence-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/lint/silence-typescript.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/package.json -------------------------------------------------------------------------------- /src/build/__snapshots__/snapthots.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/__snapshots__/snapthots.test.ts.snap -------------------------------------------------------------------------------- /src/build/compilers/cssVars/declarations/compileBreakpointsCssVarsDeclaration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/cssVars/declarations/compileBreakpointsCssVarsDeclaration.test.ts -------------------------------------------------------------------------------- /src/build/compilers/cssVars/declarations/compileBreakpointsCssVarsDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/cssVars/declarations/compileBreakpointsCssVarsDeclaration.ts -------------------------------------------------------------------------------- /src/build/compilers/cssVars/helpers/accumulateValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/cssVars/helpers/accumulateValues.ts -------------------------------------------------------------------------------- /src/build/compilers/cssVars/helpers/findViewportByAdaptivityState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/cssVars/helpers/findViewportByAdaptivityState.ts -------------------------------------------------------------------------------- /src/build/compilers/cssVars/helpers/getVarString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/cssVars/helpers/getVarString.ts -------------------------------------------------------------------------------- /src/build/compilers/cssVars/jsUtils/compileGetDeclarationString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/cssVars/jsUtils/compileGetDeclarationString.test.ts -------------------------------------------------------------------------------- /src/build/compilers/cssVars/jsUtils/compileGetDeclarationString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/cssVars/jsUtils/compileGetDeclarationString.ts -------------------------------------------------------------------------------- /src/build/compilers/docs/__test__/emptyTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/docs/__test__/emptyTheme.ts -------------------------------------------------------------------------------- /src/build/compilers/docs/__test__/testBaseForBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/docs/__test__/testBaseForBase.ts -------------------------------------------------------------------------------- /src/build/compilers/docs/__test__/testBaseTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/docs/__test__/testBaseTheme.ts -------------------------------------------------------------------------------- /src/build/compilers/docs/__test__/testLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/docs/__test__/testLinks.ts -------------------------------------------------------------------------------- /src/build/compilers/docs/__test__/testRecursiveReexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/docs/__test__/testRecursiveReexport.ts -------------------------------------------------------------------------------- /src/build/compilers/docs/__test__/testTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/docs/__test__/testTheme.ts -------------------------------------------------------------------------------- /src/build/compilers/docs/compileDocsJSON.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/docs/compileDocsJSON.test.ts -------------------------------------------------------------------------------- /src/build/compilers/docs/compileDocsJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/docs/compileDocsJSON.ts -------------------------------------------------------------------------------- /src/build/compilers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/index.ts -------------------------------------------------------------------------------- /src/build/compilers/json/compileJSON.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/json/compileJSON.test.ts -------------------------------------------------------------------------------- /src/build/compilers/json/compileJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/json/compileJSON.ts -------------------------------------------------------------------------------- /src/build/compilers/structJSON/compileStructJSON.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/structJSON/compileStructJSON.test.ts -------------------------------------------------------------------------------- /src/build/compilers/structJSON/compileStructJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/structJSON/compileStructJSON.ts -------------------------------------------------------------------------------- /src/build/compilers/styles/compileStyles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/styles/compileStyles.test.ts -------------------------------------------------------------------------------- /src/build/compilers/styles/compileStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/styles/compileStyles.ts -------------------------------------------------------------------------------- /src/build/compilers/styles/helpers/tokenProcessors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/styles/helpers/tokenProcessors.ts -------------------------------------------------------------------------------- /src/build/compilers/styles/helpers/tokenRecognition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/styles/helpers/tokenRecognition.ts -------------------------------------------------------------------------------- /src/build/compilers/ts/compileTypeScript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/ts/compileTypeScript.test.ts -------------------------------------------------------------------------------- /src/build/compilers/ts/compileTypeScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/compilers/ts/compileTypeScript.ts -------------------------------------------------------------------------------- /src/build/expandTheme.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/expandTheme.test.ts -------------------------------------------------------------------------------- /src/build/expandTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/expandTheme.ts -------------------------------------------------------------------------------- /src/build/helpers/capitalize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/capitalize.test.ts -------------------------------------------------------------------------------- /src/build/helpers/capitalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/capitalize.ts -------------------------------------------------------------------------------- /src/build/helpers/convertCamelToSnake.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/convertCamelToSnake.test.ts -------------------------------------------------------------------------------- /src/build/helpers/convertCamelToSnake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/convertCamelToSnake.ts -------------------------------------------------------------------------------- /src/build/helpers/convertSnakeToCamel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/convertSnakeToCamel.test.ts -------------------------------------------------------------------------------- /src/build/helpers/convertSnakeToCamel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/convertSnakeToCamel.ts -------------------------------------------------------------------------------- /src/build/helpers/cssHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/cssHelpers.test.ts -------------------------------------------------------------------------------- /src/build/helpers/cssHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/cssHelpers.ts -------------------------------------------------------------------------------- /src/build/helpers/flatifyTheme.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/flatifyTheme.test.ts -------------------------------------------------------------------------------- /src/build/helpers/flatifyTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/flatifyTheme.ts -------------------------------------------------------------------------------- /src/build/helpers/getAllButColors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getAllButColors.test.ts -------------------------------------------------------------------------------- /src/build/helpers/getAllButColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getAllButColors.ts -------------------------------------------------------------------------------- /src/build/helpers/getAllButSizes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getAllButSizes.test.ts -------------------------------------------------------------------------------- /src/build/helpers/getAllButSizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getAllButSizes.ts -------------------------------------------------------------------------------- /src/build/helpers/getGradientPointsFromColor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getGradientPointsFromColor.test.ts -------------------------------------------------------------------------------- /src/build/helpers/getGradientPointsFromColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getGradientPointsFromColor.ts -------------------------------------------------------------------------------- /src/build/helpers/getOnlyColors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getOnlyColors.test.ts -------------------------------------------------------------------------------- /src/build/helpers/getOnlyColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getOnlyColors.ts -------------------------------------------------------------------------------- /src/build/helpers/getStateFunctions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getStateFunctions.test.ts -------------------------------------------------------------------------------- /src/build/helpers/getStateFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/getStateFunctions.ts -------------------------------------------------------------------------------- /src/build/helpers/opacityMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/opacityMap.json -------------------------------------------------------------------------------- /src/build/helpers/overrideOnlyNeeded.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/overrideOnlyNeeded.test.ts -------------------------------------------------------------------------------- /src/build/helpers/overrideOnlyNeeded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/overrideOnlyNeeded.ts -------------------------------------------------------------------------------- /src/build/helpers/replacePropDeep.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/replacePropDeep.test.ts -------------------------------------------------------------------------------- /src/build/helpers/replacePropDeep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/replacePropDeep.ts -------------------------------------------------------------------------------- /src/build/helpers/tokenHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/tokenHelpers.test.ts -------------------------------------------------------------------------------- /src/build/helpers/tokenHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/tokenHelpers.ts -------------------------------------------------------------------------------- /src/build/helpers/unCamelcasify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/unCamelcasify.test.ts -------------------------------------------------------------------------------- /src/build/helpers/unCamelcasify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/helpers/unCamelcasify.ts -------------------------------------------------------------------------------- /src/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/index.ts -------------------------------------------------------------------------------- /src/build/snapthots.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/snapthots.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/createPseudoRootFromCssVars/createPseudoRootFromCssVars.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/createPseudoRootFromCssVars/createPseudoRootFromCssVars.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/createPseudoRootFromCssVars/createPseudoRootFromCssVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/createPseudoRootFromCssVars/createPseudoRootFromCssVars.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/customMedia/customMedia.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/customMedia/customMedia.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/customMedia/customMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/customMedia/customMedia.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/expandColors/expandColors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/expandColors/expandColors.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/expandColors/expandColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/expandColors/expandColors.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/expandColors/mixColors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/expandColors/mixColors.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/expandColors/mixColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/expandColors/mixColors.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/expandColors/overlayColors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/expandColors/overlayColors.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/expandColors/overlayColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/expandColors/overlayColors.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/extractCssVarsStrict/extractCssVarsStrict.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/extractCssVarsStrict/extractCssVarsStrict.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/extractCssVarsStrict/extractCssVarsStrict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/extractCssVarsStrict/extractCssVarsStrict.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/extractGeneralTokens/extractGeneralTokens.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/extractGeneralTokens/extractGeneralTokens.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/extractGeneralTokens/extractGeneralTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/extractGeneralTokens/extractGeneralTokens.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/extractVarsNames/extractVarsNames.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/extractVarsNames/extractVarsNames.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/extractVarsNames/extractVarsNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/extractVarsNames/extractVarsNames.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/extractViewports/extractViewports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/extractViewports/extractViewports.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/extractViewports/extractViewports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/extractViewports/extractViewports.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/pixelifyValues/pixelifyValues.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/pixelifyValues/pixelifyValues.test.ts -------------------------------------------------------------------------------- /src/build/themeProcessors/pixelifyValues/pixelifyValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/build/themeProcessors/pixelifyValues/pixelifyValues.ts -------------------------------------------------------------------------------- /src/interfaces/general/animations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/animations/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/colors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/colors/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/effects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/effects/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/elevation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/elevation/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/geometry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/geometry/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/gradients/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/gradients/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/toneValues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/toneValues/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/tools/cssVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/tools/cssVars.ts -------------------------------------------------------------------------------- /src/interfaces/general/tools/customMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/tools/customMedia.ts -------------------------------------------------------------------------------- /src/interfaces/general/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/tools/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/tools/tokenValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/tools/tokenValue.ts -------------------------------------------------------------------------------- /src/interfaces/general/tools/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/tools/utils.ts -------------------------------------------------------------------------------- /src/interfaces/general/tools/viewports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/tools/viewports.ts -------------------------------------------------------------------------------- /src/interfaces/general/typography/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/typography/index.ts -------------------------------------------------------------------------------- /src/interfaces/general/zIndex/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/general/zIndex/index.ts -------------------------------------------------------------------------------- /src/interfaces/namespaces/paradigm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/namespaces/paradigm/index.ts -------------------------------------------------------------------------------- /src/interfaces/namespaces/vk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/namespaces/vk/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/calendar/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/calendarDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/calendarDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/calls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/calls/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/cloud/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/cloud/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/cloudDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/cloudDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/dobro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/dobro/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/dobroDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/dobroDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/home/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/homeDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/homeDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/legoAndroid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/legoAndroid/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/legoAndroidDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/legoAndroidDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/legoIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/legoIOS/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/legoIOSDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/legoIOSDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/media/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/media/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/mediaDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/mediaDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/mycom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/mycom/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/octavius/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/octavius/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/octaviusCompact/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/octaviusCompact/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/octaviusCompactDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/octaviusCompactDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/octaviusDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/octaviusDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/octaviusVK/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/octaviusVK/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/octaviusVKDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/octaviusVKDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/octaviusWhite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/octaviusWhite/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/octaviusWhiteDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/octaviusWhiteDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/otvet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/otvet/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/otvetDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/otvetDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/paradigmBase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/paradigmBase/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/paradigmBaseDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/paradigmBaseDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/paradigmTech/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/paradigmTech/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/paradigmTechDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/paradigmTechDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/pharma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/pharma/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/portalUI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/portalUI/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/portalUIDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/portalUIDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/promo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/promo/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/pulse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/pulse/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/pulseDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/pulseDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/search/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/todo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/todo/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/tutoria/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/tutoria/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/tutoriaDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/tutoriaDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkAccessibility/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkAccessibility/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkAccessibilityDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkAccessibilityDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkAccessibilityIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkAccessibilityIOS/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkAccessibilityIOSDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkAccessibilityIOSDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkBase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkBase/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkBaseDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkBaseDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkCom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkCom/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkComDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkComDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkIOS/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkIOSDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkIOSDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkIdOk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkIdOk/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkIdOkDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkIdOkDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkIdOkIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkIdOkIOS/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkIdOkIOSDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkIdOkIOSDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkontakteAndroid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkontakteAndroid/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkontakteAndroidDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkontakteAndroidDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkontakteCom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkontakteCom/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkontakteComDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkontakteComDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkontakteIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkontakteIOS/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/vkontakteIOSDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/vkontakteIOSDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/widgets/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/widgetsDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/widgetsDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/workspaceAdmin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/workspaceAdmin/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/workspaceAdminDark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/workspaceAdminDark/index.ts -------------------------------------------------------------------------------- /src/interfaces/themes/workspaceLandings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/interfaces/themes/workspaceLandings/index.ts -------------------------------------------------------------------------------- /src/lint/__snapshots__/lint.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/lint/__snapshots__/lint.test.ts.snap -------------------------------------------------------------------------------- /src/lint/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/lint/index.test.ts -------------------------------------------------------------------------------- /src/lint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/lint/index.ts -------------------------------------------------------------------------------- /src/lint/lint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/lint/lint.test.ts -------------------------------------------------------------------------------- /src/lint/rules/alphaMismatch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/lint/rules/alphaMismatch.test.ts -------------------------------------------------------------------------------- /src/lint/rules/alphaMismatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/lint/rules/alphaMismatch.ts -------------------------------------------------------------------------------- /src/lint/rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/lint/rules/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/base/figma/vk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/base/figma/vk.json -------------------------------------------------------------------------------- /src/themeDescriptions/base/paradigm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/base/paradigm.ts -------------------------------------------------------------------------------- /src/themeDescriptions/base/vk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/base/vk.ts -------------------------------------------------------------------------------- /src/themeDescriptions/common/colors/projectColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/common/colors/projectColors.ts -------------------------------------------------------------------------------- /src/themeDescriptions/common/colors/socialColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/common/colors/socialColors.ts -------------------------------------------------------------------------------- /src/themeDescriptions/common/fontSizes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/common/fontSizes/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/common/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/common/helpers/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/common/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/common/themeHelpers.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themeDescriptions/descriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/descriptions.ts -------------------------------------------------------------------------------- /src/themeDescriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/calendar/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/calls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/calls/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/cloud/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/cloud/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/dobro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/dobro/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/home/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/lego/android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/lego/android.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/lego/figma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/lego/figma.json -------------------------------------------------------------------------------- /src/themeDescriptions/themes/lego/helpers/overwriteFromFigmaJSON.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/lego/helpers/overwriteFromFigmaJSON.test.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/lego/helpers/overwriteFromFigmaJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/lego/helpers/overwriteFromFigmaJSON.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/lego/ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/lego/ios.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/media/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/media/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/mycom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/mycom/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/octavius/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/octavius/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/octaviusCompact/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/octaviusCompact/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/octaviusVK/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/octaviusVK/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/otvet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/otvet/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/paradigmTech/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/paradigmTech/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/pharma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/pharma/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/portalUI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/portalUI/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/promo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/promo/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/pulse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/pulse/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/search/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/todo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/todo/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/tutoria/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/tutoria/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkAccessibility/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkAccessibility/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkAccessibilityIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkAccessibilityIOS/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkCom/appearance.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkCom/appearance.test.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkCom/appearance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkCom/appearance.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkCom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkCom/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkIOS/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkIdOk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkIdOk/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkIdOkIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkIdOkIOS/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkontakteAndroid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkontakteAndroid/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkontakteCom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkontakteCom/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/vkontakteIOS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/vkontakteIOS/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/widgets/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/workspaceAdmin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/workspaceAdmin/index.ts -------------------------------------------------------------------------------- /src/themeDescriptions/themes/workspaceLandings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/src/themeDescriptions/themes/workspaceLandings/index.ts -------------------------------------------------------------------------------- /tasks/docs/mergeTokensData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/tasks/docs/mergeTokensData.test.ts -------------------------------------------------------------------------------- /tasks/docs/mergeTokensData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/tasks/docs/mergeTokensData.ts -------------------------------------------------------------------------------- /tasks/docs/prepareTokensData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/tasks/docs/prepareTokensData.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/tsconfig.publish.json -------------------------------------------------------------------------------- /tsconfig.tscpaths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/tsconfig.tscpaths.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VKCOM/vkui-tokens/HEAD/yarn.lock --------------------------------------------------------------------------------