├── .babelrc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug-report.yml │ ├── 2-feature-request.yml │ ├── 3-task.yml │ └── config.yml └── workflows │ ├── ci.yml │ ├── main-preview.yml │ ├── pr-preview-build.yml │ ├── pr-preview-deploy.yml │ ├── pr-title.yml │ ├── pr-visual-tests-report.yml │ ├── pr-visual-tests.yml │ ├── release.yml │ └── test-storybook.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .storybook ├── decorators │ ├── withLang.tsx │ ├── withMobile.tsx │ ├── withStrictMode.tsx │ └── withTheme.tsx ├── main.ts ├── manager.ts ├── preview-head.html ├── preview.tsx ├── test-runner.ts ├── theme-addon │ └── register.tsx └── theme.ts ├── .stylelintrc ├── AGENTS.md ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README-ru.md ├── README.md ├── commitlint.config.js ├── contribute ├── README.md └── pull-request.md ├── docs └── assets │ ├── book-open_dark.svg │ ├── book-open_light.svg │ ├── bucket-paint_dark.svg │ ├── bucket-paint_light.svg │ ├── figma_dark.svg │ ├── figma_light.svg │ ├── globe_dark.svg │ ├── globe_light.svg │ ├── storybook_dark.svg │ ├── storybook_light.svg │ ├── telegram_dark.svg │ ├── telegram_light.svg │ └── uikit_cover.png ├── eslint.config.mjs ├── gulpfile.js ├── jest.config.js ├── package.json ├── playwright ├── README.md ├── core │ ├── expectScreenshotFixture.ts │ ├── index.ts │ ├── mountFixture.tsx │ └── types.ts ├── playwright.config.ts ├── playwright │ ├── index.html │ ├── index.scss │ └── index.tsx └── run-docker-command.sh ├── src ├── components │ ├── Accordion │ │ ├── Accordion.scss │ │ ├── Accordion.tsx │ │ ├── AccordionContext.tsx │ │ ├── AccordionItem │ │ │ ├── AccordionItem.scss │ │ │ └── AccordionItem.tsx │ │ ├── AccordionSummary │ │ │ ├── AccordionSummary.scss │ │ │ └── AccordionSummary.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Accordion.visual.test.tsx-snapshots │ │ │ │ ├── Accordion-accordion-expanded-state-expanded-light-chromium-linux.png │ │ │ │ ├── Accordion-render-showcase-dark-chromium-linux.png │ │ │ │ ├── Accordion-render-showcase-light-chromium-linux.png │ │ │ │ ├── Accordion-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── Accordion-render-story-Default-light-chromium-linux.png │ │ │ │ ├── Accordion-render-story-Size-dark-chromium-linux.png │ │ │ │ ├── Accordion-render-story-Size-light-chromium-linux.png │ │ │ │ ├── Accordion-render-story-View-dark-chromium-linux.png │ │ │ │ ├── Accordion-render-story-View-light-chromium-linux.png │ │ │ │ ├── Accordion-render-story-WithCustomSummary-dark-chromium-linux.png │ │ │ │ ├── Accordion-render-story-WithCustomSummary-light-chromium-linux.png │ │ │ │ ├── Accordion-smoke-dark-chromium-linux.png │ │ │ │ └── Accordion-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Accordion.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Accordion.test.tsx │ │ │ ├── Accordion.visual.test.tsx │ │ │ ├── cases.ts │ │ │ └── helpersPlaywright.tsx │ │ ├── constants.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ └── types.ts │ ├── ActionTooltip │ │ ├── ActionTooltip.scss │ │ ├── ActionTooltip.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── ActionTooltip.visual.test.tsx-snapshots │ │ │ │ ├── ActionTooltip-smoke-default-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-auto-end-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-auto-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-auto-start-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-bottom-end-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-bottom-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-bottom-start-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-left-end-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-left-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-left-start-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-right-end-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-right-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-right-start-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-top-end-light-chromium-linux.png │ │ │ │ ├── ActionTooltip-smoke-placement-top-light-chromium-linux.png │ │ │ │ └── ActionTooltip-smoke-placement-top-start-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── ActionTooltip.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── ActionTooltip.test.tsx │ │ │ ├── ActionTooltip.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── ActionsPanel │ │ ├── ActionsPanel.scss │ │ ├── ActionsPanel.tsx │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── ActionsPanel.visual.test.tsx-snapshots │ │ │ │ ├── ActionsPanel-smoke-group-light-chromium-linux.png │ │ │ │ ├── ActionsPanel-smoke-group-opened-light-chromium-linux.png │ │ │ │ ├── ActionsPanel-smoke-light-chromium-linux.png │ │ │ │ ├── ActionsPanel-smoke-with-note-light-chromium-linux.png │ │ │ │ ├── ActionsPanel-smoke-with-submenu-light-chromium-linux.png │ │ │ │ └── ActionsPanel-smoke-with-submenu-opened-submenu-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── ActionsPanel.stories.tsx │ │ │ ├── Docs.mdx │ │ │ └── actions.tsx │ │ ├── __tests__ │ │ │ ├── ActionsPanel.visual.test.tsx │ │ │ └── helpersPlaywright.tsx │ │ ├── components │ │ │ ├── CollapseActions.scss │ │ │ ├── CollapseActions.tsx │ │ │ └── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ ├── useCollapseActions.ts │ │ │ │ ├── useDropdownActions.ts │ │ │ │ └── useObserveIntersection.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ └── types.ts │ ├── Alert │ │ ├── Alert.scss │ │ ├── Alert.test.tsx │ │ ├── Alert.tsx │ │ ├── AlertAction.tsx │ │ ├── AlertActions.tsx │ │ ├── AlertContext.tsx │ │ ├── AlertContextProvider.tsx │ │ ├── AlertIcon.tsx │ │ ├── AlertTitle.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Alert.visual.test.tsx-snapshots │ │ │ │ ├── Alert-render-story-Actions-dark-chromium-linux.png │ │ │ │ ├── Alert-render-story-Actions-light-chromium-linux.png │ │ │ │ ├── Alert-render-story-Align-dark-chromium-linux.png │ │ │ │ ├── Alert-render-story-Align-light-chromium-linux.png │ │ │ │ ├── Alert-render-story-Corners-dark-chromium-linux.png │ │ │ │ ├── Alert-render-story-Corners-light-chromium-linux.png │ │ │ │ ├── Alert-render-story-CustomIcon-dark-chromium-linux.png │ │ │ │ ├── Alert-render-story-CustomIcon-light-chromium-linux.png │ │ │ │ ├── Alert-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── Alert-render-story-Default-light-chromium-linux.png │ │ │ │ ├── Alert-render-story-Layout-dark-chromium-linux.png │ │ │ │ ├── Alert-render-story-Layout-light-chromium-linux.png │ │ │ │ ├── Alert-render-story-Theme-dark-chromium-linux.png │ │ │ │ ├── Alert-render-story-Theme-light-chromium-linux.png │ │ │ │ ├── Alert-render-story-View-dark-chromium-linux.png │ │ │ │ ├── Alert-render-story-View-light-chromium-linux.png │ │ │ │ └── Alert-smoke-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Alert.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Alert.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ └── helpersPlaywright.tsx │ │ ├── constants.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ ├── types.ts │ │ └── useAlertContext.tsx │ ├── ArrowToggle │ │ ├── ArrowToggle.scss │ │ ├── ArrowToggle.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── ArrowToggle.visual.test.tsx-snapshots │ │ │ │ └── ArrowToggle-smoke-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── ArrowToggle.new.stories.tsx │ │ │ ├── ArrowToggle.stories.tsx │ │ │ ├── Docs.mdx │ │ │ └── examples │ │ │ │ └── ArrowToggleView.tsx │ │ ├── __tests__ │ │ │ ├── ArrowToggle.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── Avatar │ │ ├── Avatar.scss │ │ ├── Avatar.tsx │ │ ├── AvatarIcon │ │ │ ├── AvatarIcon.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── AvatarImage │ │ │ ├── AvatarImage.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── AvatarText │ │ │ ├── AvatarText.tsx │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Avatar.visual.test.tsx-snapshots │ │ │ │ ├── Avatar-render-story-Icon-dark-chromium-linux.png │ │ │ │ ├── Avatar-render-story-Icon-light-chromium-linux.png │ │ │ │ ├── Avatar-render-story-Image-dark-chromium-linux.png │ │ │ │ ├── Avatar-render-story-Image-light-chromium-linux.png │ │ │ │ ├── Avatar-render-story-ImageFallback-dark-chromium-linux.png │ │ │ │ ├── Avatar-render-story-ImageFallback-light-chromium-linux.png │ │ │ │ ├── Avatar-render-story-Showcase-dark-chromium-linux.png │ │ │ │ ├── Avatar-render-story-Showcase-light-chromium-linux.png │ │ │ │ ├── Avatar-render-story-Text-dark-chromium-linux.png │ │ │ │ ├── Avatar-render-story-Text-light-chromium-linux.png │ │ │ │ ├── Avatar-render-story-TextInitials-dark-chromium-linux.png │ │ │ │ ├── Avatar-render-story-TextInitials-light-chromium-linux.png │ │ │ │ ├── Avatar-render-story-WithBorder-dark-chromium-linux.png │ │ │ │ ├── Avatar-render-story-WithBorder-light-chromium-linux.png │ │ │ │ ├── Avatar-should-render-default-border-for-the-image-if-withImageBorder-true-dark-chromium-linux.png │ │ │ │ ├── Avatar-should-render-default-border-for-the-image-if-withImageBorder-true-light-chromium-linux.png │ │ │ │ ├── Avatar-smoke-with-icon-light-chromium-linux.png │ │ │ │ ├── Avatar-smoke-with-image-light-chromium-linux.png │ │ │ │ └── Avatar-smoke-with-text-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Avatar.stories.tsx │ │ │ ├── Docs.mdx │ │ │ └── utils │ │ │ │ ├── getAvatarSrcSet.ts │ │ │ │ ├── getClosestNumber.ts │ │ │ │ ├── getSrcSet.ts │ │ │ │ └── types.ts │ │ ├── __tests__ │ │ │ ├── Avatar.test.tsx │ │ │ ├── Avatar.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── helpersPlaywright.tsx │ │ │ └── stories.ts │ │ ├── _variables.scss │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── common.ts │ │ │ └── main.ts │ ├── AvatarStack │ │ ├── AvatarStack.scss │ │ ├── AvatarStack.tsx │ │ ├── AvatarStackItem.tsx │ │ ├── AvatarStackMore.tsx │ │ ├── AvatarStackMoreButton.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── AvatarStack.visual.test.tsx-snapshots │ │ │ │ ├── AvatarStack-render-story-MoreButton-dark-chromium-linux.png │ │ │ │ ├── AvatarStack-render-story-MoreButton-dark-webkit-linux.png │ │ │ │ ├── AvatarStack-render-story-MoreButton-light-chromium-linux.png │ │ │ │ ├── AvatarStack-render-story-MoreButton-light-webkit-linux.png │ │ │ │ ├── AvatarStack-render-story-MoreButtonOmit-dark-chromium-linux.png │ │ │ │ ├── AvatarStack-render-story-MoreButtonOmit-dark-webkit-linux.png │ │ │ │ ├── AvatarStack-render-story-MoreButtonOmit-light-chromium-linux.png │ │ │ │ ├── AvatarStack-render-story-MoreButtonOmit-light-webkit-linux.png │ │ │ │ ├── AvatarStack-render-story-SingleItem-dark-chromium-linux.png │ │ │ │ ├── AvatarStack-render-story-SingleItem-dark-webkit-linux.png │ │ │ │ ├── AvatarStack-render-story-SingleItem-light-chromium-linux.png │ │ │ │ ├── AvatarStack-render-story-SingleItem-light-webkit-linux.png │ │ │ │ ├── AvatarStack-render-story-Total-dark-chromium-linux.png │ │ │ │ ├── AvatarStack-render-story-Total-dark-webkit-linux.png │ │ │ │ ├── AvatarStack-render-story-Total-light-chromium-linux.png │ │ │ │ ├── AvatarStack-render-story-Total-light-webkit-linux.png │ │ │ │ ├── AvatarStack-smoke-light-chromium-linux.png │ │ │ │ └── AvatarStack-smoke-with-custom-more-light-chromium-linux.png │ │ ├── __stories__ │ │ │ └── AvatarStack.stories.tsx │ │ ├── __tests__ │ │ │ ├── AvatarStack.visual.test.tsx │ │ │ ├── cases.ts │ │ │ ├── helpersPlaywright.tsx │ │ │ └── stories.ts │ │ ├── constants.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ └── types.ts │ ├── Breadcrumbs │ │ ├── Breadcrumbs.scss │ │ ├── Breadcrumbs.tsx │ │ ├── BreadcrumbsDropdownMenu.tsx │ │ ├── BreadcrumbsItem.tsx │ │ ├── BreadcrumbsSeparator.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Breadcrumbs.visual.test.tsx-snapshots │ │ │ │ ├── Breadcrumbs-smoke-with-custom-icons-default-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-custom-icons-disabled-true-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-custom-separator-default-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-custom-separator-disabled-true-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-link-items-default-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-link-items-disabled-true-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-default-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-auto-end-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-auto-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-auto-start-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-bottom-end-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-bottom-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-bottom-start-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-left-end-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-left-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-left-start-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-right-end-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-right-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-right-start-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-top-end-light-chromium-linux.png │ │ │ │ ├── Breadcrumbs-smoke-with-text-items-popupPlacement-top-light-chromium-linux.png │ │ │ │ └── Breadcrumbs-smoke-with-text-items-popupPlacement-top-start-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Breadcrumbs.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Breadcrumbs.test.tsx │ │ │ ├── Breadcrumbs.visual.test.tsx │ │ │ ├── cases.ts │ │ │ └── helpersPlaywright.tsx │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ └── utils.ts │ ├── Button │ │ ├── Button.scss │ │ ├── Button.tsx │ │ ├── ButtonIcon.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Button.visual.test.tsx-snapshots │ │ │ │ ├── Button-render-custom-Icon-size-dark-chromium-linux.png │ │ │ │ ├── Button-render-custom-Icon-size-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Default-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Disabled-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Disabled-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Icon-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Icon-light-chromium-linux.png │ │ │ │ ├── Button-render-story-InsideText-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-InsideText-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Link-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Link-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Loading-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Loading-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Pin-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Pin-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Selected-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Selected-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Size-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Size-light-chromium-linux.png │ │ │ │ ├── Button-render-story-View-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-View-light-chromium-linux.png │ │ │ │ ├── Button-render-story-Width-dark-chromium-linux.png │ │ │ │ ├── Button-render-story-Width-light-chromium-linux.png │ │ │ │ ├── Button-smoke-dark-chromium-linux.png │ │ │ │ ├── Button-smoke-default-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-brick-brick-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-brick-circle-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-brick-clear-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-brick-round-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-circle-brick-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-circle-circle-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-circle-clear-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-clear-brick-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-clear-circle-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-clear-clear-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-clear-round-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-round-brick-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-round-clear-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-pin-round-round-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-action-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-action-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-contrast-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-danger-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-info-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-secondary-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-success-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-utility-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-flat-warning-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-normal-contrast-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-normal-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-outlined-action-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-outlined-contrast-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-outlined-danger-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-outlined-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-outlined-info-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-outlined-success-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-outlined-utility-hovered-light-chromium-linux.png │ │ │ │ ├── Button-smoke-view-outlined-warning-hovered-light-chromium-linux.png │ │ │ │ └── Button-smoke-view-raised-hovered-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Button.stories.tsx │ │ │ ├── ButtonViewShowcase.scss │ │ │ ├── ButtonViewShowcase.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Button.test.tsx │ │ │ ├── Button.visual.test.tsx │ │ │ ├── cases.ts │ │ │ └── helpersPlaywright.tsx │ │ ├── constants.ts │ │ └── index.ts │ ├── Card │ │ ├── Card.scss │ │ ├── Card.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Card.visual.test.tsx-snapshots │ │ │ │ ├── Card-render-story-ActionType-dark-chromium-linux.png │ │ │ │ ├── Card-render-story-ActionType-light-chromium-linux.png │ │ │ │ ├── Card-render-story-Custom-dark-chromium-linux.png │ │ │ │ ├── Card-render-story-Custom-light-chromium-linux.png │ │ │ │ ├── Card-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── Card-render-story-Default-light-chromium-linux.png │ │ │ │ ├── Card-render-story-SelectionType-dark-chromium-linux.png │ │ │ │ ├── Card-render-story-SelectionType-light-chromium-linux.png │ │ │ │ ├── Card-render-story-Size-dark-chromium-linux.png │ │ │ │ ├── Card-render-story-Size-light-chromium-linux.png │ │ │ │ ├── Card-render-story-Theme-dark-chromium-linux.png │ │ │ │ ├── Card-render-story-Theme-light-chromium-linux.png │ │ │ │ ├── Card-render-story-View-dark-chromium-linux.png │ │ │ │ ├── Card-render-story-View-light-chromium-linux.png │ │ │ │ ├── Card-smoke-smoke-action-type-light-chromium-linux.png │ │ │ │ ├── Card-smoke-smoke-container-type-light-chromium-linux.png │ │ │ │ └── Card-smoke-smoke-selection-type-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Card.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Card.test.tsx │ │ │ ├── Card.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ └── helpersPlaywright.tsx │ │ └── index.ts │ ├── Checkbox │ │ ├── Checkbox.scss │ │ ├── Checkbox.tsx │ │ ├── CheckboxDashIcon.tsx │ │ ├── CheckboxTickIcon.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Checkbox.visual.test.tsx-snapshots │ │ │ │ ├── Checkbox-smoke-dark-chromium-linux.png │ │ │ │ └── Checkbox-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Checkbox.stories.tsx │ │ │ ├── CheckboxShowcase.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Checkbox.test.tsx │ │ │ ├── Checkbox.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── ClipboardButton │ │ ├── ClipboardButton.scss │ │ ├── ClipboardButton.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── ClipboardButton.visual.test.tsx-snapshots │ │ │ │ ├── ClipboardButton-smoke-with-function-text-after-copy-light-chromium-linux.png │ │ │ │ ├── ClipboardButton-smoke-with-function-text-after-hover-light-chromium-linux.png │ │ │ │ ├── ClipboardButton-smoke-with-function-text-light-chromium-linux.png │ │ │ │ ├── ClipboardButton-smoke-with-string-text-after-copy-light-chromium-linux.png │ │ │ │ ├── ClipboardButton-smoke-with-string-text-after-hover-light-chromium-linux.png │ │ │ │ └── ClipboardButton-smoke-with-string-text-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── ClipboardButton.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── ClipboardButton.test.tsx │ │ │ └── ClipboardButton.visual.test.tsx │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ └── index.ts │ ├── ClipboardIcon │ │ ├── ClipboardIcon.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── ClipboardIcon.visual.test.tsx-snapshots │ │ │ │ └── ClipboardIcon-smoke-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── ClipboardIcon.stories.scss │ │ │ ├── ClipboardIcon.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── ClipboardIcon.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── ControlLabel │ │ ├── ControlLabel.scss │ │ ├── ControlLabel.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── CopyToClipboard │ │ ├── CopyToClipboard.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── CopyToClipboard.test.tsx │ │ ├── copyText.ts │ │ ├── index.ts │ │ └── types.ts │ ├── DefinitionList │ │ ├── DefinitionList.scss │ │ ├── DefinitionList.tsx │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── DefinitionList.visual.test.tsx-snapshots │ │ │ │ ├── DefinitionList-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── DefinitionList-render-story-Default-light-chromium-linux.png │ │ │ │ ├── DefinitionList-smoke-default-light-chromium-linux.png │ │ │ │ ├── DefinitionList-smoke-direction-horizontal-light-chromium-linux.png │ │ │ │ ├── DefinitionList-smoke-direction-vertical-light-chromium-linux.png │ │ │ │ ├── DefinitionList-smoke-responsive-contentMaxWidth-100-light-chromium-linux.png │ │ │ │ ├── DefinitionList-smoke-responsive-default-light-chromium-linux.png │ │ │ │ └── DefinitionList-smoke-responsive-nameMaxWidth-100-light-chromium-linux.png │ │ ├── __stories__ │ │ │ └── DefinitionList.stories.tsx │ │ ├── __tests__ │ │ │ ├── DefinitionList.test.tsx │ │ │ ├── DefinitionList.visual.test.tsx │ │ │ └── stories.ts │ │ ├── components │ │ │ ├── DefinitionContent.tsx │ │ │ ├── DefinitionListContext.tsx │ │ │ ├── DefinitionListItem.tsx │ │ │ └── TermContent.tsx │ │ ├── constants.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── Dialog │ │ ├── ButtonClose │ │ │ ├── ButtonClose.scss │ │ │ └── ButtonClose.tsx │ │ ├── Dialog.scss │ │ ├── Dialog.tsx │ │ ├── DialogBody │ │ │ ├── DialogBody.scss │ │ │ └── DialogBody.tsx │ │ ├── DialogDivider │ │ │ ├── DialogDivider.scss │ │ │ └── DialogDivider.tsx │ │ ├── DialogFooter │ │ │ ├── DialogFooter.scss │ │ │ └── DialogFooter.tsx │ │ ├── DialogHeader │ │ │ ├── DialogHeader.scss │ │ │ └── DialogHeader.tsx │ │ ├── DialogPrivateContext.ts │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Dialog.visual.test.tsx-snapshots │ │ │ │ ├── Dialog-smoke-bodyContent-long-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-bodyHasBorder-true-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-default-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-footerLoading-true-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-footerPreset-danger-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-footerPreset-default-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-footerPreset-success-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-footerShowError-true-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-footerTextButtonApply-Custom-button-apply-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-footerTextButtonCancel-Custom-button-cancel-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-headerCaption-long-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-headerInsertAfter-true-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-headerInsertBefore-true-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-size-l-light-chromium-linux.png │ │ │ │ ├── Dialog-smoke-size-m-light-chromium-linux.png │ │ │ │ └── Dialog-smoke-size-s-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Dialog.stories.tsx │ │ │ ├── DialogShowcase.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Dialog.test.tsx │ │ │ ├── Dialog.visual.test.tsx │ │ │ └── cases.tsx │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ └── index.ts │ ├── Disclosure │ │ ├── Disclosure.scss │ │ ├── Disclosure.tsx │ │ ├── DisclosureContext.tsx │ │ ├── DisclosureDetails │ │ │ └── DisclosureDetails.tsx │ │ ├── DisclosureSummary │ │ │ └── DisclosureSummary.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Disclosure.visual.test.tsx-snapshots │ │ │ │ ├── Disclosure-smoke-smoke-collapsed-light-chromium-linux.png │ │ │ │ └── Disclosure-smoke-smoke-expanded-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Disclosure.stories.scss │ │ │ ├── Disclosure.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Disclosure.test.tsx │ │ │ ├── Disclosure.visual.test.tsx │ │ │ └── cases.tsx │ │ ├── constants.ts │ │ └── index.ts │ ├── Divider │ │ ├── Divider.scss │ │ ├── Divider.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Divider.visual.test.tsx-snapshots │ │ │ │ └── Divider-smoke-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Divider.stories.tsx │ │ │ └── Docs.mdx │ │ ├── __tests__ │ │ │ ├── Divider.test.tsx │ │ │ ├── Divider.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ └── helpers.tsx │ │ └── index.ts │ ├── DropdownMenu │ │ ├── DropdownMenu.classname.ts │ │ ├── DropdownMenu.scss │ │ ├── DropdownMenu.test.tsx │ │ ├── DropdownMenu.tsx │ │ ├── DropdownMenuContext.ts │ │ ├── DropdownMenuItem.tsx │ │ ├── DropdownMenuNavigationContext.tsx │ │ ├── DropdownMenuPopup.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── DropdownMenu.visual.test.tsx-snapshots │ │ │ │ ├── DropdownMenu-smoke-menu-with-empty-groups-light-chromium-linux.png │ │ │ │ ├── DropdownMenu-subitems-inherit-parents-size-smoke-default-light-chromium-linux.png │ │ │ │ ├── DropdownMenu-subitems-inherit-parents-size-smoke-size-l-light-chromium-linux.png │ │ │ │ ├── DropdownMenu-subitems-inherit-parents-size-smoke-size-m-light-chromium-linux.png │ │ │ │ ├── DropdownMenu-subitems-inherit-parents-size-smoke-size-s-light-chromium-linux.png │ │ │ │ └── DropdownMenu-subitems-inherit-parents-size-smoke-size-xl-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── DropdownMenu.stories.scss │ │ │ ├── DropdownMenu.stories.tsx │ │ │ └── options.tsx │ │ ├── __tests__ │ │ │ ├── DropdownMenu.test.tsx │ │ │ ├── DropdownMenu.visual.test.tsx │ │ │ └── cases.ts │ │ ├── constants.ts │ │ ├── hooks │ │ │ ├── usePopupVisibility.ts │ │ │ ├── useScrollHandler.ts │ │ │ └── useSubmenu.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── isMenuActive.ts │ │ │ ├── isSeparator.ts │ │ │ ├── isSubmenuOpen.ts │ │ │ ├── shouldSkipItemNavigation.ts │ │ │ ├── stringifyNavigationPath.ts │ │ │ └── toItemList.ts │ ├── FilePreview │ │ ├── FilePreview.scss │ │ ├── FilePreview.tsx │ │ ├── FilePreviewActions │ │ │ ├── DesktopActionsMenu │ │ │ │ ├── DesktopActionsMenu.scss │ │ │ │ └── DesktopActionsMenu.tsx │ │ │ ├── FilePreviewActions.tsx │ │ │ └── MobileActionsMenu │ │ │ │ ├── MobileActionsMenu.scss │ │ │ │ └── MobileActionsMenu.tsx │ │ ├── README.md │ │ ├── __stories__ │ │ │ ├── CompactFilePreviewWithActionsShowcase │ │ │ │ ├── CompactActionsMenu │ │ │ │ │ ├── CompactActionsMenu.scss │ │ │ │ │ └── CompactActionsMenu.tsx │ │ │ │ ├── CompactFilePreviewWithActionsShowcase.scss │ │ │ │ └── CompactFilePreviewWithActionsShowcase.tsx │ │ │ ├── Docs.mdx │ │ │ └── FilePreview.stories.tsx │ │ ├── __tests__ │ │ │ └── FilePreview.test.tsx │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── variables.scss │ ├── HelpMark │ │ ├── HelpMark.scss │ │ ├── HelpMark.tsx │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── HelpMark.visual.test.tsx-snapshots │ │ │ │ ├── HelpMark-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── HelpMark-render-story-Default-light-chromium-linux.png │ │ │ │ ├── HelpMark-render-story-InsideText-dark-chromium-linux.png │ │ │ │ ├── HelpMark-render-story-InsideText-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-default-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-auto-end-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-auto-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-auto-start-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-bottom-end-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-bottom-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-bottom-start-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-left-end-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-left-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-left-start-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-right-end-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-right-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-right-start-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-top-end-light-chromium-linux.png │ │ │ │ ├── HelpMark-smoke-placement-top-light-chromium-linux.png │ │ │ │ └── HelpMark-smoke-placement-top-start-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── HelpMark.stories.tsx │ │ │ └── Showcase.mdx │ │ ├── __tests__ │ │ │ ├── HelpMark.test.tsx │ │ │ ├── HelpMark.visual.test.tsx │ │ │ ├── cases.ts │ │ │ └── stories.ts │ │ ├── constants.ts │ │ └── index.ts │ ├── Hotkey │ │ ├── Hotkey.scss │ │ ├── Hotkey.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Hotkey.visual.test.tsx-snapshots │ │ │ │ ├── Hotkey-smoke-smoke-dark-view-dark-chromium-linux.png │ │ │ │ └── Hotkey-smoke-smoke-light-view-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Hotkey.stories.tsx │ │ │ └── README.md │ │ ├── __tests__ │ │ │ ├── Hotkey.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ └── parse.test.ts │ │ ├── definitions.ts │ │ ├── index.ts │ │ ├── parse.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── Icon │ │ ├── Icon.scss │ │ ├── Icon.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Icon.visual.test.tsx-snapshots │ │ │ │ └── Icon-smoke-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Icon.stories.tsx │ │ ├── __tests__ │ │ │ ├── Icon.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── helpersPlaywright.tsx │ │ │ └── utils.test.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── Label │ │ ├── Label.scss │ │ ├── Label.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Label.visual.test.tsx-snapshots │ │ │ │ ├── Label-render-story-Close-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Close-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-Close-light-chromium-linux.png │ │ │ │ ├── Label-render-story-Close-light-webkit-linux.png │ │ │ │ ├── Label-render-story-Copy-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Copy-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-Copy-light-chromium-linux.png │ │ │ │ ├── Label-render-story-Copy-light-webkit-linux.png │ │ │ │ ├── Label-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Default-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-Default-light-chromium-linux.png │ │ │ │ ├── Label-render-story-Default-light-webkit-linux.png │ │ │ │ ├── Label-render-story-Icon-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Icon-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-Icon-light-chromium-linux.png │ │ │ │ ├── Label-render-story-Icon-light-webkit-linux.png │ │ │ │ ├── Label-render-story-Interactive-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Interactive-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-Interactive-light-chromium-linux.png │ │ │ │ ├── Label-render-story-Interactive-light-webkit-linux.png │ │ │ │ ├── Label-render-story-LinkWrapper-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-LinkWrapper-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-LinkWrapper-light-chromium-linux.png │ │ │ │ ├── Label-render-story-LinkWrapper-light-webkit-linux.png │ │ │ │ ├── Label-render-story-Size-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Size-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-Size-light-chromium-linux.png │ │ │ │ ├── Label-render-story-Size-light-webkit-linux.png │ │ │ │ ├── Label-render-story-Theme-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Theme-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-Theme-light-chromium-linux.png │ │ │ │ ├── Label-render-story-Theme-light-webkit-linux.png │ │ │ │ ├── Label-render-story-Value-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Value-dark-webkit-linux.png │ │ │ │ ├── Label-render-story-Value-light-chromium-linux.png │ │ │ │ ├── Label-render-story-Value-light-webkit-linux.png │ │ │ │ ├── Label-render-story-Width-dark-chromium-linux.png │ │ │ │ ├── Label-render-story-Width-light-chromium-linux.png │ │ │ │ ├── Label-smoke-dark-chromium-linux.png │ │ │ │ ├── Label-smoke-light-chromium-linux.png │ │ │ │ ├── Label-smoke-with-close-dark-chromium-linux.png │ │ │ │ ├── Label-smoke-with-close-light-chromium-linux.png │ │ │ │ ├── Label-smoke-with-copy-dark-chromium-linux.png │ │ │ │ ├── Label-smoke-with-copy-light-chromium-linux.png │ │ │ │ ├── Label-smoke-with-custom-icon-dark-chromium-linux.png │ │ │ │ ├── Label-smoke-with-custom-icon-light-chromium-linux.png │ │ │ │ ├── Label-smoke-with-gradient-loading-dark-chromium-linux.png │ │ │ │ ├── Label-smoke-with-gradient-loading-light-chromium-linux.png │ │ │ │ ├── Label-smoke-with-info-dark-chromium-linux.png │ │ │ │ └── Label-smoke-with-info-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Label.stories.tsx │ │ │ ├── LabelShowcase.scss │ │ │ └── LabelShowcase.tsx │ │ ├── __tests__ │ │ │ ├── Label.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ └── helpersPlaywright.tsx │ │ ├── constants.ts │ │ └── index.ts │ ├── Link │ │ ├── Link.scss │ │ ├── Link.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Link.visual.test.tsx-snapshots │ │ │ │ ├── Link-smoke-dark-chromium-linux.png │ │ │ │ └── Link-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Link.new.stories.tsx │ │ │ ├── Link.stories.tsx │ │ │ └── LinkShowcase.tsx │ │ ├── __tests__ │ │ │ ├── Link.test.tsx │ │ │ ├── Link.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── List │ │ ├── List.scss │ │ ├── List.tsx │ │ ├── ListLoadingIndicator.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── List.visual.test.tsx-snapshots │ │ │ │ ├── List-smoke-custom-render-item-light-chromium-linux.png │ │ │ │ ├── List-smoke-empty-light-chromium-linux.png │ │ │ │ ├── List-smoke-light-chromium-linux.png │ │ │ │ └── List-smoke-virtualized-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── List.stories.tsx │ │ │ ├── ListItem.stories.tsx │ │ │ ├── ListShowcase.scss │ │ │ ├── ListShowcase.tsx │ │ │ ├── ListWithLoader.scss │ │ │ └── ListWithLoader.tsx │ │ ├── __tests__ │ │ │ ├── List.test.tsx │ │ │ ├── List.visual.test.tsx │ │ │ ├── ListItem.test.tsx │ │ │ ├── cases.tsx │ │ │ └── helpersPlaywright.tsx │ │ ├── components │ │ │ ├── ListItem.tsx │ │ │ ├── SimpleContainer.tsx │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── index.tsx │ │ └── types.ts │ ├── Loader │ │ ├── Loader.scss │ │ ├── Loader.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Loader.visual.test.tsx-snapshots │ │ │ │ ├── Loader-smoke-dark-chromium-linux.png │ │ │ │ └── Loader-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Loader.stories.tsx │ │ ├── __tests__ │ │ │ ├── Loader.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── Menu │ │ ├── Menu.scss │ │ ├── Menu.tsx │ │ ├── MenuGroup.tsx │ │ ├── MenuItem.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Menu.visual.test.tsx-snapshots │ │ │ │ ├── Menu-smoke-dark-chromium-linux.png │ │ │ │ ├── Menu-smoke-light-chromium-linux.png │ │ │ │ ├── Menu-smoke-menu-group-dark-chromium-linux.png │ │ │ │ ├── Menu-smoke-menu-group-light-chromium-linux.png │ │ │ │ ├── Menu-smoke-menu-item-dark-chromium-linux.png │ │ │ │ ├── Menu-smoke-menu-item-light-chromium-linux.png │ │ │ │ ├── Menu-smoke-menu-item-with-icons-dark-chromium-linux.png │ │ │ │ └── Menu-smoke-menu-item-with-icons-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Menu.stories.tsx │ │ ├── __tests__ │ │ │ ├── Menu.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ └── helpers.tsx │ │ └── index.ts │ ├── Modal │ │ ├── Modal.scss │ │ ├── Modal.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Modal.visual.test.tsx-snapshots │ │ │ │ ├── Modal-smoke-dark-chromium-linux.png │ │ │ │ └── Modal-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Modal.stories.tsx │ │ ├── __tests__ │ │ │ ├── Modal.visual.test.tsx │ │ │ └── constants.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ └── index.ts │ ├── NumberInput │ │ ├── NumberInput.scss │ │ ├── NumberInput.tsx │ │ ├── NumericArrows │ │ │ ├── NumericArrows.scss │ │ │ └── NumericArrows.tsx │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── NumberInput.visual.test.tsx-snapshots │ │ │ │ ├── NumberInput-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── NumberInput-render-story-Default-dark-webkit-linux.png │ │ │ │ ├── NumberInput-render-story-Default-light-chromium-linux.png │ │ │ │ ├── NumberInput-render-story-Default-light-webkit-linux.png │ │ │ │ ├── NumberInput-smoke-empty-light-chromium-linux.png │ │ │ │ ├── NumberInput-smoke-inside-error-placement-tooltip-light-chromium-linux.png │ │ │ │ ├── NumberInput-smoke-with-error-light-chromium-linux.png │ │ │ │ └── NumberInput-smoke-with-value-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── NumberInput.stories.tsx │ │ ├── __tests__ │ │ │ ├── NumberInput.test.tsx │ │ │ ├── NumberInput.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── stories.tsx │ │ │ └── utils.test.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ └── utils.ts │ ├── Overlay │ │ ├── Overlay.scss │ │ ├── Overlay.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Overlay.visual.test.tsx-snapshots │ │ │ │ ├── Overlay-smoke-dark-chromium-linux.png │ │ │ │ ├── Overlay-smoke-dark-webkit-linux.png │ │ │ │ ├── Overlay-smoke-light-chromium-linux.png │ │ │ │ └── Overlay-smoke-light-webkit-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Overlay.stories.scss │ │ │ ├── Overlay.stories.tsx │ │ │ └── data.tsx │ │ ├── __tests__ │ │ │ ├── Overlay.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── Pagination │ │ ├── Pagination.scss │ │ ├── Pagination.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Pagination.visual.test.tsx-snapshots │ │ │ │ ├── Pagination-smoke-not-compact-default-click-on-page-10-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-not-compact-default-click-on-page-2-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-not-compact-default-hover-on-page-10-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-not-compact-default-hover-on-page-2-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-not-compact-default-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-regular-default-click-on-page-10-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-regular-default-click-on-page-2-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-regular-default-hover-on-page-10-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-regular-default-hover-on-page-2-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-regular-default-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-with-page-input-default-after-type-enter-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-with-page-input-default-after-type-page-number-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-with-page-input-default-focus-on-input-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-with-page-input-default-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-with-page-size-select-default-after-click-on-page-size-select-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-with-page-size-select-default-after-hover-option-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-with-page-size-select-default-after-select-option-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-with-page-size-select-default-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-without-pages-default-click-on-next-page-button-light-chromium-linux.png │ │ │ │ ├── Pagination-smoke-without-pages-default-hover-on-next-page-button-light-chromium-linux.png │ │ │ │ └── Pagination-smoke-without-pages-default-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Pagination.stories.tsx │ │ ├── __tests__ │ │ │ ├── Pagination.test.tsx │ │ │ ├── Pagination.visual.test.tsx │ │ │ └── helpers.tsx │ │ ├── components │ │ │ ├── PaginationButton │ │ │ │ └── PaginationButton.tsx │ │ │ ├── PaginationEllipsis │ │ │ │ ├── PaginationEllipsis.scss │ │ │ │ └── PaginationEllipsis.tsx │ │ │ ├── PaginationInput │ │ │ │ ├── PaginationInput.scss │ │ │ │ └── PaginationInput.tsx │ │ │ ├── PaginationPage │ │ │ │ ├── PaginationPage.scss │ │ │ │ └── PaginationPage.tsx │ │ │ ├── PaginationPageOf │ │ │ │ ├── PaginationPageOf.scss │ │ │ │ └── PaginationPageOf.tsx │ │ │ ├── PaginationPageSizer │ │ │ │ └── PaginationPageSizer.tsx │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── hooks │ │ │ └── usePagination.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── Palette │ │ ├── Palette.scss │ │ ├── Palette.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Palette.visual.test.tsx-snapshots │ │ │ │ ├── Palette-smoke-hover-after-click-dark-chromium-linux.png │ │ │ │ ├── Palette-smoke-hover-after-click-light-chromium-linux.png │ │ │ │ ├── Palette-smoke-hover-after-focus-dark-chromium-linux.png │ │ │ │ ├── Palette-smoke-hover-after-focus-light-chromium-linux.png │ │ │ │ ├── Palette-smoke-hover-dark-chromium-linux.png │ │ │ │ ├── Palette-smoke-hover-light-chromium-linux.png │ │ │ │ └── Palette-smoke-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Palette.stories.tsx │ │ ├── __tests__ │ │ │ ├── Palette.test.tsx │ │ │ ├── Palette.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── helpersPlaywright.tsx │ │ │ └── utils.test.ts │ │ ├── hooks.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── PinInput │ │ ├── PinInput.scss │ │ ├── PinInput.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── PinInput.visual.test.tsx-snapshots │ │ │ │ ├── PinInput-smoke-alphabetic-light-chromium-linux.png │ │ │ │ ├── PinInput-smoke-empty-light-chromium-linux.png │ │ │ │ └── PinInput-smoke-number-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── PinInput.stories.tsx │ │ ├── __tests__ │ │ │ ├── PinInput.test.tsx │ │ │ ├── PinInput.visual.test.tsx │ │ │ └── cases.tsx │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ └── index.ts │ ├── PlaceholderContainer │ │ ├── PlaceholderContainer.scss │ │ ├── PlaceholderContainer.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── PlaceholderContainer.visual.test.tsx-snapshots │ │ │ │ ├── PlaceholderContainer-render-story-Actions-dark-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Actions-light-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Align-dark-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Align-light-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-CustomMaxWidth-dark-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-CustomMaxWidth-light-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Default-light-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Direction-dark-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Direction-light-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Size-dark-chromium-linux.png │ │ │ │ ├── PlaceholderContainer-render-story-Size-light-chromium-linux.png │ │ │ │ └── PlaceholderContainer-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── PlaceholderContainer.stories.tsx │ │ │ └── PlaceholderContainerShowcase.scss │ │ ├── __tests__ │ │ │ ├── PlaceholderContainer.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ └── helpersPlaywright.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.ts │ ├── Popover │ │ ├── Popover.tsx │ │ ├── README.md │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Popover.stories.tsx │ │ └── index.ts │ ├── Popup │ │ ├── Popup.scss │ │ ├── Popup.tsx │ │ ├── PopupArrow.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Popup.visual.test.tsx-snapshots │ │ │ │ ├── Popup-smoke-default-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-offset-10-25-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-default-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-auto-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-auto-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-auto-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-bottom-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-bottom-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-bottom-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-left-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-left-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-left-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-right-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-right-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-right-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-top-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-top-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-placement-top-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-default-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-auto-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-auto-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-auto-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-bottom-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-bottom-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-bottom-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-left-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-left-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-left-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-right-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-right-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-right-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-top-end-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-top-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-placement-with-arrow-placement-top-start-light-chromium-linux.png │ │ │ │ ├── Popup-smoke-strategy-absolute-light-chromium-linux.png │ │ │ │ └── Popup-smoke-strategy-fixed-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Popup.stories.tsx │ │ ├── __tests__ │ │ │ ├── Popup.test.tsx │ │ │ ├── Popup.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── constants.ts │ │ │ └── helpers.tsx │ │ ├── constants.ts │ │ ├── hooks.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── Portal │ │ ├── Portal.scss │ │ ├── Portal.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Portal.stories.tsx │ │ │ └── README.md │ │ └── index.ts │ ├── Progress │ │ ├── Progress.scss │ │ ├── Progress.tsx │ │ ├── ProgressInnerText.tsx │ │ ├── ProgressStackItem.tsx │ │ ├── ProgressWithStack.tsx │ │ ├── ProgressWithValue.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── Progress.visual.test.tsx-snapshots │ │ │ │ ├── Progress-smoke-smoke-light-chromium-linux.png │ │ │ │ ├── Progress-smoke-smoke-with-color-stops-light-chromium-linux.png │ │ │ │ └── Progress-smoke-smoke-with-stack-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Progress.stories.tsx │ │ ├── __tests__ │ │ │ ├── Progress.visual.test.tsx │ │ │ └── cases.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── Radio │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Radio.scss │ │ ├── Radio.tsx │ │ ├── __snapshots__ │ │ │ └── Radio.visual.test.tsx-snapshots │ │ │ │ ├── Radio-smoke-dark-chromium-linux.png │ │ │ │ ├── Radio-smoke-default-checked-dark-chromium-linux.png │ │ │ │ ├── Radio-smoke-default-checked-light-chromium-linux.png │ │ │ │ ├── Radio-smoke-disabled-dark-chromium-linux.png │ │ │ │ ├── Radio-smoke-disabled-light-chromium-linux.png │ │ │ │ └── Radio-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Radio.stories.tsx │ │ │ └── RadioShowcase.tsx │ │ ├── __tests__ │ │ │ ├── Radio.test.tsx │ │ │ ├── Radio.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── RadioGroup │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── RadioGroup.scss │ │ ├── RadioGroup.tsx │ │ ├── __snapshots__ │ │ │ └── RadioGroup.visual.test.tsx-snapshots │ │ │ │ ├── RadioGroup-smoke-dark-chromium-linux.png │ │ │ │ ├── RadioGroup-smoke-disabled-dark-chromium-linux.png │ │ │ │ ├── RadioGroup-smoke-disabled-light-chromium-linux.png │ │ │ │ └── RadioGroup-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── RadioGroup.stories.tsx │ │ │ └── RadioGroupShowcase.tsx │ │ ├── __tests__ │ │ │ ├── RadioGroup.test.tsx │ │ │ ├── RadioGroup.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── SegmentedRadioGroup │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── SegmentedRadioGroup.scss │ │ ├── SegmentedRadioGroup.tsx │ │ ├── SegmentedRadioGroupOption.tsx │ │ ├── __snapshots__ │ │ │ └── RadioButton.visual.test.tsx-snapshots │ │ │ │ ├── SegmentedRadioGroup-smoke-dark-chromium-linux.png │ │ │ │ ├── SegmentedRadioGroup-smoke-disabled-dark-chromium-linux.png │ │ │ │ ├── SegmentedRadioGroup-smoke-disabled-light-chromium-linux.png │ │ │ │ └── SegmentedRadioGroup-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── SegmentedRadioGroup.stories.tsx │ │ │ └── SegmentedRadioGroupShowcase.tsx │ │ ├── __tests__ │ │ │ ├── RadioButton.visual.test.tsx │ │ │ ├── SegmentedRadioGroup.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── Select │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Select.scss │ │ ├── Select.tsx │ │ ├── __snapshots__ │ │ │ └── Select.visual.test.tsx-snapshots │ │ │ │ ├── Select-smoke-empty-light-chromium-linux.png │ │ │ │ ├── Select-smoke-non-empty-multiple-light-chromium-linux.png │ │ │ │ ├── Select-smoke-non-empty-single-light-chromium-linux.png │ │ │ │ ├── Select-smoke-with-filter-light-chromium-linux.png │ │ │ │ ├── Select-smoke-with-opened-popup-light-chromium-linux.png │ │ │ │ └── Select-smoke-with-options-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Select.stories.tsx │ │ │ ├── SelectPopupWidthShowcase.tsx │ │ │ ├── SelectShowcase.scss │ │ │ ├── Showcase.mdx │ │ │ ├── UseSelectOptionsShowcase.tsx │ │ │ ├── WithActionButtonsShowcase.tsx │ │ │ └── constants.ts │ │ ├── __tests__ │ │ │ ├── Select.base-actions.test.tsx │ │ │ ├── Select.clear.test.tsx │ │ │ ├── Select.error.test.tsx │ │ │ ├── Select.filter.test.tsx │ │ │ ├── Select.form.test.tsx │ │ │ ├── Select.muitiple.test.tsx │ │ │ ├── Select.popup.test.tsx │ │ │ ├── Select.renderCounter.test.tsx │ │ │ ├── Select.renderPopup.test.tsx │ │ │ ├── Select.single.test.tsx │ │ │ ├── Select.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── getSelectedOptionsContent.test.ts │ │ │ ├── useSelectOptions.test.ts │ │ │ └── utils.tsx │ │ ├── components │ │ │ ├── EmptyOptions │ │ │ │ ├── EmptyOptions.scss │ │ │ │ └── EmptyOptions.tsx │ │ │ ├── HiddenSelect │ │ │ │ └── HiddenSelect.tsx │ │ │ ├── SelectClear │ │ │ │ ├── SelectClear.scss │ │ │ │ └── SelectClear.tsx │ │ │ ├── SelectControl │ │ │ │ ├── SelectControl.scss │ │ │ │ └── SelectControl.tsx │ │ │ ├── SelectCounter │ │ │ │ ├── SelectCounter.scss │ │ │ │ └── SelectCounter.tsx │ │ │ ├── SelectFilter │ │ │ │ ├── SelectFilter.scss │ │ │ │ └── SelectFilter.tsx │ │ │ ├── SelectList │ │ │ │ ├── GroupLabel.tsx │ │ │ │ ├── OptionWrap.tsx │ │ │ │ ├── SelectList.scss │ │ │ │ ├── SelectList.tsx │ │ │ │ └── SelectLoadingIndicator.tsx │ │ │ ├── SelectPopup │ │ │ │ ├── SelectPopup.scss │ │ │ │ ├── SelectPopup.tsx │ │ │ │ ├── middlewares.ts │ │ │ │ └── types.ts │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── hooks-public │ │ │ ├── index.ts │ │ │ └── useSelectOptions │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useActiveItemIndex.ts │ │ │ └── useQuickSearch.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ ├── tech-components.tsx │ │ ├── types-misc.ts │ │ ├── types.ts │ │ ├── utils.tsx │ │ └── variables.scss │ ├── Sheet │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Sheet.scss │ │ ├── Sheet.tsx │ │ ├── SheetContent.tsx │ │ ├── __snapshots__ │ │ │ └── Sheet.visual.test.tsx-snapshots │ │ │ │ ├── Sheet-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── Sheet-render-story-Default-light-chromium-linux.png │ │ │ │ ├── Sheet-smoke-default-light-chromium-linux.png │ │ │ │ ├── Sheet-smoke-hideTopBar-true-light-chromium-linux.png │ │ │ │ └── Sheet-smoke-title-Title-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── DefaultShowcase │ │ │ │ ├── DefaultShowcase.scss │ │ │ │ └── DefaultShowcase.stories.tsx │ │ │ ├── Docs.mdx │ │ │ ├── MultipleSheetsShowcase │ │ │ │ ├── MultipleSheets.scss │ │ │ │ └── MultipleSheets.stories.tsx │ │ │ ├── WithMenuShowcase │ │ │ │ ├── WithMenuShowcase.scss │ │ │ │ └── WithMenuShowcase.stories.tsx │ │ │ └── constants.ts │ │ ├── __tests__ │ │ │ ├── Sheet.test.tsx │ │ │ ├── Sheet.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── constants.ts │ │ │ ├── helpers.tsx │ │ │ └── helpersPlaywright.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── Skeleton │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Skeleton.scss │ │ ├── Skeleton.tsx │ │ ├── __snapshots__ │ │ │ └── Skeleton.visual.test.tsx-snapshots │ │ │ │ ├── Skeleton-smoke-dark-chromium-linux.png │ │ │ │ └── Skeleton-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Skeleton.stories.tsx │ │ │ ├── SkeletonShowcase.scss │ │ │ └── SkeletonShowcase.tsx │ │ ├── __tests__ │ │ │ └── Skeleton.visual.test.tsx │ │ └── index.ts │ ├── Slider │ │ ├── BaseSlider │ │ │ ├── BaseSlider.scss │ │ │ └── BaseSlider.tsx │ │ ├── HandleWithTooltip │ │ │ └── HandleWithTooltip.tsx │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Slider.scss │ │ ├── Slider.tsx │ │ ├── SliderTooltip │ │ │ ├── SliderTooltip.scss │ │ │ ├── SliderTooltip.tsx │ │ │ └── SliderTooltipPin.tsx │ │ ├── __snapshots__ │ │ │ └── Slider.visual.test.tsx-snapshots │ │ │ │ ├── Slider-smoke-light-chromium-linux.png │ │ │ │ ├── Slider-smoke-range-value-light-chromium-linux.png │ │ │ │ ├── Slider-smoke-range-value-with-error-light-chromium-linux.png │ │ │ │ └── Slider-smoke-with-error-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Slider.stories.tsx │ │ │ ├── SliderShowcase.scss │ │ │ └── SliderShowcase.tsx │ │ ├── __tests__ │ │ │ ├── Slider.visual.test.tsx │ │ │ └── cases.tsx │ │ ├── __tetsts__ │ │ │ └── Slider.form.test.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── variables.scss │ ├── Spin │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Spin.scss │ │ ├── Spin.tsx │ │ ├── __snapshots__ │ │ │ └── Spin.visual.test.tsx-snapshots │ │ │ │ ├── Spin-smoke-dark-chromium-linux.png │ │ │ │ └── Spin-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Spin.stories.tsx │ │ ├── __tests__ │ │ │ ├── Spin.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── Stepper │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Stepper.scss │ │ ├── Stepper.tsx │ │ ├── StepperItem.tsx │ │ ├── StepperSeparator.tsx │ │ ├── __snapshots__ │ │ │ └── Stepper.visual.test.tsx-snapshots │ │ │ │ ├── Stepper-render-story-CustomIcons-dark-chromium-linux.png │ │ │ │ ├── Stepper-render-story-CustomIcons-light-chromium-linux.png │ │ │ │ ├── Stepper-render-story-CustomSeparator-dark-chromium-linux.png │ │ │ │ ├── Stepper-render-story-CustomSeparator-light-chromium-linux.png │ │ │ │ ├── Stepper-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── Stepper-render-story-Default-light-chromium-linux.png │ │ │ │ ├── Stepper-render-story-Disabled-dark-chromium-linux.png │ │ │ │ ├── Stepper-render-story-Disabled-light-chromium-linux.png │ │ │ │ ├── Stepper-render-story-InteractiveShowcase-dark-chromium-linux.png │ │ │ │ ├── Stepper-render-story-InteractiveShowcase-light-chromium-linux.png │ │ │ │ ├── Stepper-render-story-Size-dark-chromium-linux.png │ │ │ │ ├── Stepper-render-story-Size-light-chromium-linux.png │ │ │ │ ├── Stepper-render-story-View-dark-chromium-linux.png │ │ │ │ ├── Stepper-render-story-View-light-chromium-linux.png │ │ │ │ ├── Stepper-render-story-WithFloatingElements-dark-chromium-linux.png │ │ │ │ ├── Stepper-render-story-WithFloatingElements-light-chromium-linux.png │ │ │ │ ├── Stepper-smoke-with-different-sizes-default-light-chromium-linux.png │ │ │ │ ├── Stepper-smoke-with-different-sizes-size-l-light-chromium-linux.png │ │ │ │ ├── Stepper-smoke-with-different-sizes-size-m-light-chromium-linux.png │ │ │ │ ├── Stepper-smoke-with-different-sizes-size-s-light-chromium-linux.png │ │ │ │ ├── Stepper-smoke-with-different-views-default-light-chromium-linux.png │ │ │ │ ├── Stepper-smoke-with-different-views-view-error-light-chromium-linux.png │ │ │ │ ├── Stepper-smoke-with-different-views-view-idle-light-chromium-linux.png │ │ │ │ └── Stepper-smoke-with-different-views-view-success-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Stepper.stories.tsx │ │ │ └── StepperShowcase.tsx │ │ ├── __tests__ │ │ │ ├── Stepper.test.tsx │ │ │ ├── Stepper.visual.test.tsx │ │ │ ├── cases.ts │ │ │ └── helpersPlaywright.tsx │ │ ├── context.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── Switch │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Switch.scss │ │ ├── Switch.tsx │ │ ├── __snapshots__ │ │ │ └── Switch.visual.test.tsx-snapshots │ │ │ │ ├── Switch-smoke-checked-dark-chromium-linux.png │ │ │ │ ├── Switch-smoke-checked-light-chromium-linux.png │ │ │ │ ├── Switch-smoke-dark-chromium-linux.png │ │ │ │ └── Switch-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Switch.stories.tsx │ │ │ └── SwitchShowcase.tsx │ │ ├── __tests__ │ │ │ ├── Switch.test.tsx │ │ │ ├── Switch.visual.test.tsx │ │ │ └── cases.tsx │ │ └── index.ts │ ├── Table │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Table.scss │ │ ├── Table.tsx │ │ ├── __snapshots__ │ │ │ └── Table.visual.test.tsx-snapshots │ │ │ │ ├── Table-render-story-Adaptive-light-chromium-linux.png │ │ │ │ ├── Table-render-story-Default-light-chromium-linux.png │ │ │ │ ├── Table-render-story-EmptyCustom-light-chromium-linux.png │ │ │ │ ├── Table-render-story-EmptyDefault-light-chromium-linux.png │ │ │ │ ├── Table-render-story-HOCWithTableSorting-light-chromium-linux.png │ │ │ │ ├── Table-render-story-RowInteractive-light-chromium-linux.png │ │ │ │ ├── Table-smoke-column-config-light-chromium-linux.png │ │ │ │ ├── Table-smoke-light-chromium-linux.png │ │ │ │ ├── Table-smoke-with-actions-light-chromium-linux.png │ │ │ │ ├── Table-smoke-with-checkbox-light-chromium-linux.png │ │ │ │ ├── Table-smoke-with-copy-light-chromium-linux.png │ │ │ │ ├── Table-smoke-with-filterable-settings-light-chromium-linux.png │ │ │ │ ├── Table-smoke-with-settings-light-chromium-linux.png │ │ │ │ └── Table-smoke-with-table-settings-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Adaptive.tsx │ │ │ ├── Docs.mdx │ │ │ ├── Table.stories.tsx │ │ │ ├── WithTableSettingsCustomActions │ │ │ │ ├── WithTableSettingsCustomActions.tsx │ │ │ │ └── index.ts │ │ │ └── utils.tsx │ │ ├── __tests__ │ │ │ ├── Table.hocs.test.ts │ │ │ ├── Table.test.tsx │ │ │ ├── Table.visual.test.tsx │ │ │ ├── Table.withTableSettings.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── helpersPlaywright.tsx │ │ │ └── utils.ts │ │ ├── hoc │ │ │ ├── index.ts │ │ │ ├── withTableActions │ │ │ │ ├── withTableActions.scss │ │ │ │ └── withTableActions.tsx │ │ │ ├── withTableCopy │ │ │ │ ├── withTableCopy.scss │ │ │ │ └── withTableCopy.tsx │ │ │ ├── withTableSelection │ │ │ │ ├── withTableSelection.scss │ │ │ │ └── withTableSelection.tsx │ │ │ ├── withTableSettings │ │ │ │ ├── TableColumnSetup │ │ │ │ │ ├── TableColumnSetup.scss │ │ │ │ │ ├── TableColumnSetup.tsx │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── ru.json │ │ │ │ ├── i18n │ │ │ │ │ ├── en.json │ │ │ │ │ ├── index.ts │ │ │ │ │ └── ru.json │ │ │ │ ├── withTableSettings.scss │ │ │ │ └── withTableSettings.tsx │ │ │ └── withTableSorting │ │ │ │ ├── SortIndicator │ │ │ │ └── SortIndicator.tsx │ │ │ │ ├── withTableSorting.scss │ │ │ │ └── withTableSorting.tsx │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ └── variables.scss │ ├── TableColumnSetup │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── TableColumnSetup.scss │ │ ├── TableColumnSetup.tsx │ │ ├── __stories__ │ │ │ └── TableColumnSetup.stories.tsx │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ └── index.ts │ ├── Text │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Text.tsx │ │ ├── __snapshots__ │ │ │ └── Text.visual.test.tsx-snapshots │ │ │ │ ├── Text-smoke-long-text-light-chromium-linux.png │ │ │ │ ├── Text-smoke-regular-light-chromium-linux.png │ │ │ │ ├── Text-smoke-render-story-Ellipsis-light-chromium-linux.png │ │ │ │ └── Text-smoke-render-story-WordBreak-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Text.stories.tsx │ │ ├── __tests__ │ │ │ ├── Text.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── helpersPlaywright.tsx │ │ │ └── stories.ts │ │ ├── colorText │ │ │ ├── colorText.scss │ │ │ └── colorText.ts │ │ ├── index.ts │ │ └── text │ │ │ ├── text.scss │ │ │ └── text.ts │ ├── Toaster │ │ ├── Provider │ │ │ ├── ToasterContext.ts │ │ │ ├── ToasterProvider.tsx │ │ │ └── ToastsContext.ts │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Toast │ │ │ ├── Toast.scss │ │ │ └── Toast.tsx │ │ ├── ToastList │ │ │ ├── ToastAnimation.scss │ │ │ ├── ToastList.scss │ │ │ └── ToastList.tsx │ │ ├── Toaster.ts │ │ ├── ToasterComponent │ │ │ └── ToasterComponent.tsx │ │ ├── __mocks__ │ │ │ ├── fireAnimationEndEvent.ts │ │ │ ├── getToast.ts │ │ │ └── tick.ts │ │ ├── __snapshots__ │ │ │ └── Toast.visual.test.tsx-snapshots │ │ │ │ ├── Toast-actions-wrap-dark-chromium-linux.png │ │ │ │ ├── Toast-actions-wrap-dark-webkit-linux.png │ │ │ │ ├── Toast-actions-wrap-light-chromium-linux.png │ │ │ │ ├── Toast-actions-wrap-light-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-danger-dark-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-danger-dark-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-danger-light-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-danger-light-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-info-dark-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-info-dark-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-info-light-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-info-light-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-normal-dark-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-normal-dark-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-normal-light-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-normal-light-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-success-dark-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-success-dark-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-success-light-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-success-light-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-utility-dark-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-utility-dark-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-utility-light-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-utility-light-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-warning-dark-chromium-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-warning-dark-webkit-linux.png │ │ │ │ ├── Toast-render-story-ToastPlayground-warning-light-chromium-linux.png │ │ │ │ └── Toast-render-story-ToastPlayground-warning-light-webkit-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Toaster.stories.tsx │ │ │ ├── ToasterShowcase.scss │ │ │ └── ToasterShowcase.tsx │ │ ├── __tests__ │ │ │ ├── Toast.visual.test.tsx │ │ │ ├── ToasterProvider.test.tsx │ │ │ └── helpersPlaywright.tsx │ │ ├── constants.ts │ │ ├── hooks │ │ │ ├── useInToasterContext.ts │ │ │ └── useToaster.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ ├── types.ts │ │ ├── utilities │ │ │ ├── getToastIndex.tsx │ │ │ ├── hasToast.ts │ │ │ └── removeToast.ts │ │ └── withToaster.tsx │ ├── Toc │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Toc.tsx │ │ ├── TocItem │ │ │ ├── TocItem.scss │ │ │ ├── TocItem.tsx │ │ │ └── index.ts │ │ ├── TocSections │ │ │ ├── TocSections.scss │ │ │ ├── TocSections.tsx │ │ │ └── index.ts │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── Toc.stories.scss │ │ │ └── Toc.stories.tsx │ │ ├── __tests__ │ │ │ └── Toc.test.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── Tooltip │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── Tooltip.scss │ │ ├── Tooltip.tsx │ │ ├── __snapshots__ │ │ │ └── Tooltip.visual.test.tsx-snapshots │ │ │ │ ├── Tooltip-smoke-default-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-auto-end-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-auto-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-auto-start-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-bottom-end-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-bottom-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-bottom-start-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-left-end-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-left-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-left-start-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-right-end-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-right-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-right-start-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-top-end-light-chromium-linux.png │ │ │ │ ├── Tooltip-smoke-placement-top-light-chromium-linux.png │ │ │ │ └── Tooltip-smoke-placement-top-start-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── Tooltip.stories.tsx │ │ ├── __tests__ │ │ │ ├── Tooltip.test.tsx │ │ │ ├── Tooltip.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── constants.ts │ │ │ └── helpers.tsx │ │ └── index.ts │ ├── TreeList │ │ ├── TreeList.tsx │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── TreeList.stories.tsx │ │ │ ├── TreeListDocs.md │ │ │ ├── components │ │ │ │ └── RenderVirtualizedContainer.tsx │ │ │ └── stories │ │ │ │ ├── DefaultStory.tsx │ │ │ │ ├── InfinityScrollStory.tsx │ │ │ │ ├── WithDisabledElementsStory.tsx │ │ │ │ ├── WithDndListStory.tsx │ │ │ │ ├── WithFiltrationAndControlsStory.tsx │ │ │ │ ├── WithGroupSelectionAndCustomIconStory.tsx │ │ │ │ └── WithItemLinksAndActionsStory.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── TreeSelect │ │ ├── TreeSelect.scss │ │ ├── TreeSelect.tsx │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── TreeSelect.stories.tsx │ │ │ ├── TreeSelectDocs.md │ │ │ └── components │ │ │ │ ├── ErrorStateExample.tsx │ │ │ │ ├── InfinityScrollExample.tsx │ │ │ │ ├── WithDisabledElementsExample.tsx │ │ │ │ ├── WithDndListExample.tsx │ │ │ │ ├── WithFiltrationAndControlsExample.tsx │ │ │ │ ├── WithGroupSelectionControlledStateAndCustomIcon.tsx │ │ │ │ └── WithItemLinksAndActionsExample.tsx │ │ ├── hooks │ │ │ └── useControlledValue.ts │ │ ├── index.ts │ │ └── types.ts │ ├── User │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── User.scss │ │ ├── User.tsx │ │ ├── __snapshots__ │ │ │ └── User.visual.test.tsx-snapshots │ │ │ │ ├── User-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── User-render-story-Default-light-chromium-linux.png │ │ │ │ ├── User-render-story-Showcase-dark-chromium-linux.png │ │ │ │ ├── User-render-story-Showcase-light-chromium-linux.png │ │ │ │ └── User-smoke-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── User.stories.tsx │ │ ├── __tests__ │ │ │ ├── User.test.tsx │ │ │ ├── User.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── helpers.tsx │ │ │ └── stories.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.ts │ ├── UserLabel │ │ ├── README-ru.md │ │ ├── README.md │ │ ├── UserLabel.scss │ │ ├── UserLabel.tsx │ │ ├── __snapshots__ │ │ │ └── UserLabel.visual.test.tsx-snapshots │ │ │ │ ├── UserLabel-render-story-Clickable-default-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Clickable-default-light-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Clickable-hovered-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Clickable-hovered-light-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Closable-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Closable-light-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Default-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Default-light-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Email-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Email-light-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Empty-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Empty-light-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Image-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Image-light-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-LongText-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-LongText-light-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Showcase-dark-chromium-linux.png │ │ │ │ ├── UserLabel-render-story-Showcase-light-chromium-linux.png │ │ │ │ ├── UserLabel-smoke-email-light-chromium-linux.png │ │ │ │ ├── UserLabel-smoke-person-light-chromium-linux.png │ │ │ │ └── UserLabel-smoke-user-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ └── UserLabel.stories.tsx │ │ ├── __tests__ │ │ │ ├── UserLabel.test.tsx │ │ │ ├── UserLabel.visual.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── helpers.tsx │ │ │ └── stories.ts │ │ ├── constants.ts │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.ts │ │ │ └── ru.json │ │ ├── index.ts │ │ └── types.ts │ ├── controls │ │ ├── PasswordInput │ │ │ ├── PasswordInput.scss │ │ │ ├── PasswordInput.tsx │ │ │ ├── README.md │ │ │ ├── __snapshots__ │ │ │ │ └── PasswordInput.visual.test.tsx-snapshots │ │ │ │ │ ├── PasswordInput-render-story-Default-dark-chromium-linux.png │ │ │ │ │ ├── PasswordInput-render-story-Default-dark-webkit-linux.png │ │ │ │ │ ├── PasswordInput-render-story-Default-light-chromium-linux.png │ │ │ │ │ ├── PasswordInput-render-story-Default-light-webkit-linux.png │ │ │ │ │ ├── PasswordInput-smoke-copy-button-tooltip-light-chromium-linux.png │ │ │ │ │ ├── PasswordInput-smoke-empty-light-chromium-linux.png │ │ │ │ │ ├── PasswordInput-smoke-inside-error-placement-tooltip-light-chromium-linux.png │ │ │ │ │ ├── PasswordInput-smoke-light-chromium-linux.png │ │ │ │ │ ├── PasswordInput-smoke-reveal-button-tooltip-light-chromium-linux.png │ │ │ │ │ └── PasswordInput-smoke-with-error-light-chromium-linux.png │ │ │ ├── __stories__ │ │ │ │ ├── Docs.mdx │ │ │ │ └── PasswordInput.stories.tsx │ │ │ ├── __tests__ │ │ │ │ ├── PasswordInput.visual.test.tsx │ │ │ │ ├── cases.tsx │ │ │ │ └── helpersPlaywright.ts │ │ │ ├── constants.ts │ │ │ ├── i18n │ │ │ │ ├── en.json │ │ │ │ ├── index.ts │ │ │ │ └── ru.json │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── TextArea │ │ │ ├── README.md │ │ │ ├── TextArea.scss │ │ │ ├── TextArea.tsx │ │ │ ├── TextAreaControl.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── TextArea.visual.test.tsx-snapshots │ │ │ │ │ ├── TextArea-smoke-empty-light-chromium-linux.png │ │ │ │ │ ├── TextArea-smoke-with-error-light-chromium-linux.png │ │ │ │ │ └── TextArea-smoke-with-value-light-chromium-linux.png │ │ │ ├── __stories__ │ │ │ │ ├── Docs.mdx │ │ │ │ ├── TextArea.stories.tsx │ │ │ │ ├── TextAreaShowcase.scss │ │ │ │ └── TextAreaShowcase.tsx │ │ │ ├── __tests__ │ │ │ │ ├── TextArea.test.tsx │ │ │ │ ├── TextArea.visual.test.tsx │ │ │ │ └── cases.tsx │ │ │ └── index.ts │ │ ├── TextInput │ │ │ ├── AdditionalContent.tsx │ │ │ ├── README.md │ │ │ ├── TextInput.scss │ │ │ ├── TextInput.tsx │ │ │ ├── TextInputControl.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── TextInput.visual.test.tsx-snapshots │ │ │ │ │ ├── TextInput-smoke-empty-light-chromium-linux.png │ │ │ │ │ ├── TextInput-smoke-inside-error-placement-tooltip-light-chromium-linux.png │ │ │ │ │ ├── TextInput-smoke-inside-error-placement-tooltip-with-clear-button-light-chromium-linux.png │ │ │ │ │ ├── TextInput-smoke-with-error-light-chromium-linux.png │ │ │ │ │ └── TextInput-smoke-with-value-light-chromium-linux.png │ │ │ ├── __stories__ │ │ │ │ ├── Docs.mdx │ │ │ │ ├── TextInput.stories.tsx │ │ │ │ ├── TextInputCustomThemeShowcase.tsx │ │ │ │ ├── TextInputShowcase.scss │ │ │ │ └── TextInputShowcase.tsx │ │ │ ├── __tests__ │ │ │ │ ├── AdditionalContent.test.tsx │ │ │ │ ├── TextInput.input.test.tsx │ │ │ │ ├── TextInput.visual.test.tsx │ │ │ │ └── cases.tsx │ │ │ └── index.ts │ │ ├── common │ │ │ ├── ClearButton │ │ │ │ ├── ClearButton.scss │ │ │ │ ├── ClearButton.tsx │ │ │ │ └── i18n │ │ │ │ │ ├── en.json │ │ │ │ │ ├── index.ts │ │ │ │ │ └── ru.json │ │ │ ├── OuterAdditionalContent │ │ │ │ ├── OuterAdditionalContent.scss │ │ │ │ └── OuterAdditionalContent.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── mixins.scss │ │ ├── types.ts │ │ ├── utils.ts │ │ └── variables.scss │ ├── index.ts │ ├── lab │ │ ├── ListItemView │ │ │ ├── ListItemView.scss │ │ │ └── ListItemView.tsx │ │ ├── Menu │ │ │ ├── Menu.scss │ │ │ ├── Menu.tsx │ │ │ ├── MenuContext.ts │ │ │ ├── MenuDivider.scss │ │ │ ├── MenuDivider.tsx │ │ │ ├── MenuItem.scss │ │ │ ├── MenuItem.tsx │ │ │ ├── MenuItemContext.ts │ │ │ ├── MenuTrigger.tsx │ │ │ ├── README.md │ │ │ ├── __stories__ │ │ │ │ ├── Docs.mdx │ │ │ │ ├── Menu.stories.tsx │ │ │ │ └── utils.tsx │ │ │ ├── __tests__ │ │ │ │ └── Menu.test.tsx │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ └── Virtualizer │ │ │ ├── Virtualizer.tsx │ │ │ └── useLoadMore.tsx │ ├── layout │ │ ├── Box │ │ │ ├── Box.scss │ │ │ └── Box.tsx │ │ ├── Col │ │ │ ├── Col.scss │ │ │ ├── Col.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Col.visual.test.tsx-snapshots │ │ │ │ │ ├── Col-smoke-render-story-AllMods---l-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-AllMods---m-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-AllMods---s-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-AllMods---xl-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-AllMods---xs-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-AllMods---xxl-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-AllMods---xxxl-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Dynamic---l-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Dynamic---m-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Dynamic---s-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Dynamic---xl-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Dynamic---xs-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Dynamic---xxl-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Dynamic---xxxl-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Static---l-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Static---m-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Static---s-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Static---xl-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Static---xs-light-chromium-linux.png │ │ │ │ │ ├── Col-smoke-render-story-Static---xxl-light-chromium-linux.png │ │ │ │ │ └── Col-smoke-render-story-Static---xxxl-light-chromium-linux.png │ │ │ ├── __stories__ │ │ │ │ └── Col.stories.tsx │ │ │ └── __tests__ │ │ │ │ ├── Col.visual.test.tsx │ │ │ │ └── stories.ts │ │ ├── Container │ │ │ ├── Container.scss │ │ │ ├── Container.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Container.visual.test.tsx-snapshots │ │ │ │ │ ├── Container-smoke-render-story-Default---l-light-chromium-linux.png │ │ │ │ │ ├── Container-smoke-render-story-Default---m-light-chromium-linux.png │ │ │ │ │ ├── Container-smoke-render-story-Default---s-light-chromium-linux.png │ │ │ │ │ ├── Container-smoke-render-story-Default---xl-light-chromium-linux.png │ │ │ │ │ ├── Container-smoke-render-story-Default---xs-light-chromium-linux.png │ │ │ │ │ ├── Container-smoke-render-story-Default---xxl-light-chromium-linux.png │ │ │ │ │ └── Container-smoke-render-story-Default---xxxl-light-chromium-linux.png │ │ │ ├── __stories__ │ │ │ │ └── Container.stories.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Container.visual.test.tsx │ │ │ │ └── stories.ts │ │ │ └── useContainerThemeProps.ts │ │ ├── Flex │ │ │ ├── Flex.scss │ │ │ ├── Flex.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Flex.visual.test.tsx-snapshots │ │ │ │ │ ├── Flex-smoke-render-story-ChildrenWithBgColor---l-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-ChildrenWithBgColor---m-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-ChildrenWithBgColor---s-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-ChildrenWithBgColor---xl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-ChildrenWithBgColor---xs-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-ChildrenWithBgColor---xxl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-ChildrenWithBgColor---xxxl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-Default---l-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-Default---m-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-Default---s-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-Default---xl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-Default---xs-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-Default---xxl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-Default---xxxl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-FlexGap---l-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-FlexGap---m-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-FlexGap---s-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-FlexGap---xl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-FlexGap---xs-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-FlexGap---xxl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-FlexGap---xxxl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-GapAndRowGap---l-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-GapAndRowGap---m-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-GapAndRowGap---s-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-GapAndRowGap---xl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-GapAndRowGap---xs-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-GapAndRowGap---xxl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-GapAndRowGap---xxxl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-WithNullChildren---l-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-WithNullChildren---m-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-WithNullChildren---s-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-WithNullChildren---xl-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-WithNullChildren---xs-light-chromium-linux.png │ │ │ │ │ ├── Flex-smoke-render-story-WithNullChildren---xxl-light-chromium-linux.png │ │ │ │ │ └── Flex-smoke-render-story-WithNullChildren---xxxl-light-chromium-linux.png │ │ │ ├── __stories__ │ │ │ │ └── Flex.stories.tsx │ │ │ └── __tests__ │ │ │ │ ├── Flex.visual.test.tsx │ │ │ │ └── stories.ts │ │ ├── LayoutProvider │ │ │ ├── LayoutProvider.tsx │ │ │ └── __stories__ │ │ │ │ └── Layout.mdx │ │ ├── Row │ │ │ ├── Row.scss │ │ │ ├── Row.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Row.visual.test.tsx-snapshots │ │ │ │ │ ├── Row-smoke-render-story-Default---l-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-Default---m-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-Default---s-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-Default---xl-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-Default---xs-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-Default---xxl-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-Default---xxxl-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-ZeroSpacings---l-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-ZeroSpacings---m-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-ZeroSpacings---s-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-ZeroSpacings---xl-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-ZeroSpacings---xs-light-chromium-linux.png │ │ │ │ │ ├── Row-smoke-render-story-ZeroSpacings---xxl-light-chromium-linux.png │ │ │ │ │ └── Row-smoke-render-story-ZeroSpacings---xxxl-light-chromium-linux.png │ │ │ ├── __stories__ │ │ │ │ └── Row.stories.tsx │ │ │ └── __tests__ │ │ │ │ ├── Row.visual.test.tsx │ │ │ │ └── stories.ts │ │ ├── constants.ts │ │ ├── contexts │ │ │ └── LayoutContext.tsx │ │ ├── demo │ │ │ ├── Box │ │ │ │ └── Box.tsx │ │ │ ├── ColPresenter │ │ │ │ └── ColPresenter.tsx │ │ │ ├── LayoutPresenter │ │ │ │ └── LayoutPresenter.tsx │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── useCurrentActiveMediaQuery.tsx │ │ │ └── useLayoutContext.ts │ │ ├── index.ts │ │ ├── spacing │ │ │ ├── spacing.scss │ │ │ ├── spacing.test.tsx │ │ │ └── spacing.tsx │ │ ├── types.ts │ │ ├── utils │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ └── overrideLayoutTheme.ts │ │ └── variables.scss │ ├── legacy │ │ ├── Breadcrumbs │ │ │ ├── Breadcrumbs.scss │ │ │ ├── Breadcrumbs.tsx │ │ │ ├── BreadcrumbsButton.tsx │ │ │ ├── BreadcrumbsItem.tsx │ │ │ ├── BreadcrumbsMore.tsx │ │ │ ├── BreadcrumbsSeparator.tsx │ │ │ ├── README-ru.md │ │ │ ├── README.md │ │ │ ├── __stories__ │ │ │ │ ├── Breadcrumbs.stories.tsx │ │ │ │ ├── BreadcrumbsShowcase.scss │ │ │ │ ├── BreadcrumbsShowcase.tsx │ │ │ │ └── Docs.mdx │ │ │ ├── __tests__ │ │ │ │ └── Breadcrumbs.test.tsx │ │ │ ├── i18n │ │ │ │ ├── en.json │ │ │ │ ├── index.ts │ │ │ │ └── ru.json │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── Popover │ │ │ ├── Popover.classname.ts │ │ │ ├── Popover.scss │ │ │ ├── Popover.tsx │ │ │ ├── README-ru.md │ │ │ ├── README.md │ │ │ ├── __stories__ │ │ │ │ ├── Docs.mdx │ │ │ │ ├── Popover.stories.tsx │ │ │ │ ├── PopoverDemo.classname.ts │ │ │ │ ├── PopoverDemo.scss │ │ │ │ └── examples │ │ │ │ │ ├── Base │ │ │ │ │ └── Base.tsx │ │ │ │ │ └── WithCustomAnchor │ │ │ │ │ └── WithCustomAnchor.tsx │ │ │ ├── __tests__ │ │ │ │ └── Popover.test.tsx │ │ │ ├── components │ │ │ │ ├── Buttons │ │ │ │ │ ├── Buttons.tsx │ │ │ │ │ └── helpers │ │ │ │ │ │ └── getButtonView.ts │ │ │ │ ├── Content │ │ │ │ │ └── Content.tsx │ │ │ │ ├── Links │ │ │ │ │ └── Links.tsx │ │ │ │ └── Trigger │ │ │ │ │ └── Trigger.tsx │ │ │ ├── config.ts │ │ │ ├── hooks │ │ │ │ └── useOpen.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── Tabs │ │ │ ├── README-ru.md │ │ │ ├── README.md │ │ │ ├── Tabs.scss │ │ │ ├── Tabs.tsx │ │ │ ├── TabsContext.ts │ │ │ ├── TabsItem.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Tabs.visual.test.tsx-snapshots │ │ │ │ │ ├── Tabs-smoke-allow-not-selected-light-chromium-linux.png │ │ │ │ │ ├── Tabs-smoke-light-chromium-linux.png │ │ │ │ │ └── Tabs-smoke-with-custom-tab-light-chromium-linux.png │ │ │ ├── __stories__ │ │ │ │ ├── Docs.mdx │ │ │ │ ├── Tabs.stories.tsx │ │ │ │ ├── getTabsMock.tsx │ │ │ │ └── types.ts │ │ │ ├── __tests__ │ │ │ │ ├── Tabs.test.tsx │ │ │ │ ├── Tabs.visual.test.tsx │ │ │ │ ├── TabsItem.test.tsx │ │ │ │ ├── cases.tsx │ │ │ │ └── helpers.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── mobile │ │ ├── MobileContext.ts │ │ ├── MobileProvider.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── useMobile.ts │ │ ├── usePlatform.ts │ │ ├── withMobile.tsx │ │ └── withPlatform.tsx │ ├── tabs │ │ ├── README.md │ │ ├── Tab.scss │ │ ├── Tab.tsx │ │ ├── TabList.scss │ │ ├── TabList.tsx │ │ ├── TabPanel.scss │ │ ├── TabPanel.tsx │ │ ├── TabProvider.tsx │ │ ├── __snapshots__ │ │ │ └── TabList.visual.test.tsx-snapshots │ │ │ │ ├── TabList-smoke-light-chromium-linux.png │ │ │ │ ├── TabList-smoke-with-custom-tab-light-chromium-linux.png │ │ │ │ └── TabList-smoke-without-value-light-chromium-linux.png │ │ ├── __stories__ │ │ │ ├── Docs.mdx │ │ │ ├── TabList.stories.tsx │ │ │ └── getTabsMock.tsx │ │ ├── __tests__ │ │ │ ├── Tab.test.tsx │ │ │ ├── TabList.test.tsx │ │ │ ├── TabList.visual.test.tsx │ │ │ ├── TabPanel.test.tsx │ │ │ ├── TabProvider.test.tsx │ │ │ ├── cases.tsx │ │ │ ├── constants.ts │ │ │ └── helpers.tsx │ │ ├── constants.ts │ │ ├── contexts │ │ │ └── TabContext.tsx │ │ ├── hooks │ │ │ ├── useTab.ts │ │ │ ├── useTabList.ts │ │ │ └── useTabPanel.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── theme │ │ ├── ThemeContext.ts │ │ ├── ThemeProvider.tsx │ │ ├── ThemeSettingsContext.ts │ │ ├── __stories__ │ │ │ └── Theme.stories.tsx │ │ ├── constants.ts │ │ ├── dom-helpers.ts │ │ ├── getRootClassName.ts │ │ ├── getThemeType.ts │ │ ├── index.ts │ │ ├── types.ts │ │ ├── useDirection.ts │ │ ├── useLang.tsx │ │ ├── useSystemTheme.ts │ │ ├── useTheme.ts │ │ ├── useThemeContext.ts │ │ ├── useThemeSettings.ts │ │ ├── useThemeType.ts │ │ ├── useThemeValue.ts │ │ ├── withDirection.tsx │ │ ├── withTheme.tsx │ │ └── withThemeValue.tsx │ ├── types.ts │ ├── useList │ │ ├── __stories__ │ │ │ ├── DndExample.stories.tsx │ │ │ ├── Docs.mdx │ │ │ ├── ListInfinityScroll.stories.tsx │ │ │ ├── PopupWithToggler.stories.tsx │ │ │ ├── RecursiveRenderer.stories.tsx │ │ │ ├── VirtualizedList.stories.tsx │ │ │ ├── components │ │ │ │ ├── FlattenList.tsx │ │ │ │ ├── InfinityScrollList.tsx │ │ │ │ ├── IntersectionContainer │ │ │ │ │ └── IntersectionContainer.tsx │ │ │ │ ├── ListWithDnd.tsx │ │ │ │ ├── PopupWithTogglerList.tsx │ │ │ │ ├── RecursiveList.tsx │ │ │ │ └── VirtualizedListContainer │ │ │ │ │ ├── VirtualizedListContainer.async.tsx │ │ │ │ │ ├── VirtualizedListContainer.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ ├── docs │ │ │ │ ├── compute-item-size.md │ │ │ │ ├── get-item-render-state.md │ │ │ │ ├── get-list-item-click-handler.md │ │ │ │ ├── get-list-item-qa.md │ │ │ │ ├── get-list-parsed-state.md │ │ │ │ ├── list-container-view.md │ │ │ │ ├── list-item-view.md │ │ │ │ ├── list-recursive-renderer.md │ │ │ │ ├── scroll-to-list-item.md │ │ │ │ ├── use-list-filter.md │ │ │ │ ├── use-list-keydown.md │ │ │ │ └── use-list.md │ │ │ └── utils │ │ │ │ ├── makeData.ts │ │ │ │ ├── reorderArray.ts │ │ │ │ └── useInfinityFetch.ts │ │ ├── components │ │ │ ├── ListContainer │ │ │ │ ├── ListContainer.tsx │ │ │ │ └── index.ts │ │ │ ├── ListContainerView │ │ │ │ ├── ListContainerView.scss │ │ │ │ ├── ListContainerView.tsx │ │ │ │ └── index.ts │ │ │ ├── ListItemExpandIcon │ │ │ │ ├── ListItemExpandIcon.scss │ │ │ │ ├── ListItemExpandIcon.tsx │ │ │ │ ├── __stories__ │ │ │ │ │ ├── ListItemExpandIcon.stories.tsx │ │ │ │ │ └── list-item-expand-icon.md │ │ │ │ └── index.ts │ │ │ ├── ListItemView │ │ │ │ ├── ListItemView.scss │ │ │ │ ├── ListItemView.tsx │ │ │ │ ├── ListItemViewContent.tsx │ │ │ │ ├── __stories__ │ │ │ │ │ └── ListItemView.stories.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.ts │ │ │ └── ListRecursiveRenderer │ │ │ │ ├── ListRecursiveRenderer.scss │ │ │ │ ├── ListRecursiveRenderer.tsx │ │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── hooks │ │ │ ├── useFlattenListItems.ts │ │ │ ├── useList.ts │ │ │ ├── useListFilter.ts │ │ │ ├── useListKeydown.tsx │ │ │ ├── useListParsedState.ts │ │ │ └── useListState.ts │ │ ├── index.ts │ │ ├── migration-guide.md │ │ ├── types.ts │ │ └── utils │ │ │ ├── computeItemSize.ts │ │ │ ├── defaultFilterItems.test.ts │ │ │ ├── defaultFilterItems.ts │ │ │ ├── findNextIndex.ts │ │ │ ├── flattenItems.test.ts │ │ │ ├── flattenItems.ts │ │ │ ├── getItemRenderState.tsx │ │ │ ├── getListItemClickHandler.ts │ │ │ ├── getListItemId.ts │ │ │ ├── getListItemQa.ts │ │ │ ├── getListParsedState.test.ts │ │ │ ├── getListParsedState.ts │ │ │ ├── groupItemId.ts │ │ │ ├── isTreeItemGuard.ts │ │ │ └── scrollToListItem.ts │ ├── utils │ │ ├── __tests__ │ │ │ ├── class-transform.test.ts │ │ │ ├── isOfType.test.tsx │ │ │ └── xpath.test.tsx │ │ ├── class-transform.ts │ │ ├── cn.ts │ │ ├── common.ts │ │ ├── event-broker │ │ │ ├── EventBroker.ts │ │ │ ├── index.ts │ │ │ └── useEventBroker.ts │ │ ├── filterDOMProps.ts │ │ ├── getComponentName.ts │ │ ├── getElementRef.ts │ │ ├── isOfType.ts │ │ ├── layer-manager │ │ │ ├── LayerManager.ts │ │ │ ├── index.ts │ │ │ └── useLayer.ts │ │ ├── mergeProps.ts │ │ ├── svg.ts │ │ ├── transition.ts │ │ ├── typeCheckers.ts │ │ ├── warn.ts │ │ ├── withEventBrokerDomHandlers.tsx │ │ └── xpath.ts │ └── variables.scss ├── constants.ts ├── demo │ ├── DocsDecorator │ │ ├── DocsDecorator.scss │ │ └── DocsDecorator.tsx │ ├── DocsExample │ │ ├── DocsExample.scss │ │ └── DocsExample.tsx │ ├── DocsSource │ │ └── DocsSource.tsx │ ├── Showcase │ │ ├── Showcase.scss │ │ ├── Showcase.tsx │ │ └── index.ts │ ├── ShowcaseGrid │ │ ├── ShowcaseGrid.tsx │ │ ├── getPropsCombinations.test.ts │ │ ├── getPropsCombinations.tsx │ │ └── index.ts │ ├── ShowcaseItem │ │ ├── ShowcaseItem.scss │ │ ├── ShowcaseItem.tsx │ │ └── index.ts │ ├── colors │ │ ├── Base.tsx │ │ ├── ColorPanel.scss │ │ ├── ColorPanel.tsx │ │ ├── ColorTable.scss │ │ ├── ColorTable.tsx │ │ ├── Effects.tsx │ │ ├── Lines.tsx │ │ ├── Misc.tsx │ │ ├── Private.tsx │ │ └── Texts.tsx │ └── typography │ │ ├── Fonts.tsx │ │ ├── TextPanel.scss │ │ ├── TextPanel.tsx │ │ └── Variants.tsx ├── deprecated.ts ├── hooks │ ├── index.ts │ ├── private │ │ ├── index.ts │ │ ├── useAnimateHeight │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useAnimateHeight.ts │ │ ├── useBoolean │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useBoolean.ts │ │ ├── useCheckbox │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useCheckbox.ts │ │ ├── useCloseOnTimeout │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useCloseOnTimeout.ts │ │ ├── useConditionallyControlledState │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useConditionallyControlledState.ts │ │ ├── useElementSize │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useElementSize.ts │ │ ├── useFloatingTransition │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useFloatingTransition.ts │ │ ├── useFormResetHandler │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── useHover │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useHover.ts │ │ ├── useMatchMedia │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useMatchMedia.ts │ │ ├── usePrevious │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── usePrevious.ts │ │ ├── useRadio │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useRadio.ts │ │ ├── useRadioGroup │ │ │ ├── README.md │ │ │ ├── RadioGroupContext.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── useRadioGroup.ts │ │ ├── useStateWithCallback │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useStateWithCallback.ts │ │ └── useUpdateEffect │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── useUpdateEffect.ts │ ├── useActionHandlers │ │ ├── README.md │ │ ├── index.ts │ │ └── useActionHandlers.ts │ ├── useAsyncActionHandler │ │ ├── README.md │ │ ├── __stories__ │ │ │ ├── ProgressButton.tsx │ │ │ ├── UseAsyncActionHandlerDemo.classname.ts │ │ │ ├── UseAsyncActionHandlerDemo.scss │ │ │ ├── UseAsyncActionHandlerDemo.tsx │ │ │ └── UseAsyncActionHandlerStories.stories.tsx │ │ ├── index.ts │ │ └── useAsyncActionHandler.ts │ ├── useColorGenerator │ │ ├── README.md │ │ ├── __stories__ │ │ │ ├── ColorInfoPopup.scss │ │ │ ├── ColorInfoPopup.tsx │ │ │ ├── CustomColoredAvatar.tsx │ │ │ ├── TokenControls.tsx │ │ │ ├── constants.ts │ │ │ ├── useColorGenerator.stories.scss │ │ │ ├── useColorGenerator.stories.tsx │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── color.test.ts │ │ ├── color.ts │ │ ├── constants.ts │ │ ├── hash-utils.test.ts │ │ ├── hash-utils.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── useColorGenerator.ts │ ├── useControlledState │ │ ├── README.md │ │ ├── index.ts │ │ ├── useControlledState.test.tsx │ │ └── useControlledState.ts │ ├── useFileInput │ │ ├── README.md │ │ ├── __stories__ │ │ │ └── UseFileInput.stories.tsx │ │ ├── index.ts │ │ └── useFileInput.ts │ ├── useFocusWithin │ │ ├── README.md │ │ ├── SyntheticFocusEvent.ts │ │ ├── index.ts │ │ ├── useFocusWithin.test.tsx │ │ ├── useFocusWithin.ts │ │ └── useSyntheticBlurEvent.tsx │ ├── useForkRef │ │ ├── README.md │ │ ├── index.ts │ │ ├── mergeRefs.ts │ │ ├── setRef.ts │ │ └── useForkRef.ts │ ├── useIntersection │ │ ├── README.md │ │ ├── index.ts │ │ └── useIntersection.ts │ ├── useLayoutEffect │ │ ├── index.ts │ │ └── useLayoutEffect.ts │ ├── useListNavigation │ │ ├── README.md │ │ ├── index.ts │ │ ├── moveBack.ts │ │ ├── moveForward.ts │ │ └── useListNavigation.ts │ ├── useOutsideClick │ │ ├── README.md │ │ ├── __tests__ │ │ │ ├── Demo.tsx │ │ │ └── useOutsideClick.test.tsx │ │ ├── index.ts │ │ └── useOutsideClick.tsx │ ├── usePortalContainer │ │ ├── PortalProvider.tsx │ │ ├── README.md │ │ ├── index.ts │ │ └── usePortalContainer.ts │ ├── useResizeObserver │ │ ├── README.md │ │ ├── index.ts │ │ └── useResizeObserver.ts │ ├── useSelect │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── useOpenState.test.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ ├── useOpenState.ts │ │ └── useSelect.ts │ ├── useTimeout │ │ ├── README.md │ │ ├── index.ts │ │ └── useTimeout.ts │ ├── useUniqId │ │ ├── README.md │ │ ├── index.ts │ │ └── useUniqId.ts │ ├── useViewportSize │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── useViewportSize.test.tsx │ │ ├── index.ts │ │ └── useViewportSize.tsx │ └── useVirtualElementRef │ │ ├── README.md │ │ ├── index.ts │ │ └── useVirtualElementRef.ts ├── i18n │ ├── addComponentKeysets.ts │ ├── addLanguageKeysets.test.ts │ ├── addLanguageKeysets.ts │ ├── i18n.ts │ ├── index.ts │ └── types.ts ├── index.ts ├── legacy.ts ├── server.ts ├── stories │ ├── Branding │ │ ├── BrandingConfugurator │ │ │ ├── BrandingConfigurator.scss │ │ │ └── BrandingConfigurator.tsx │ │ ├── Example.stories.tsx │ │ ├── Overview.mdx │ │ ├── PaletteGenerator.stories.tsx │ │ └── PaletteGenerator │ │ │ ├── PaletteGenerator.scss │ │ │ └── PaletteGenerator.tsx │ ├── Colors.stories.tsx │ ├── Typography.stories.tsx │ └── tests-factory │ │ ├── create-smoke-scenarios.test.ts │ │ ├── create-smoke-scenarios.ts │ │ └── models.ts ├── toaster-singleton.ts ├── unstable.ts └── utils │ ├── EventEmitter │ ├── EventEmitter.ts │ ├── __tests__ │ │ └── EventEmitter.test.ts │ ├── index.ts │ └── types.ts │ ├── configure.ts │ ├── dom.ts │ └── types.ts ├── styles ├── fonts.scss ├── mixins.scss ├── styles.scss └── themes │ ├── _index.scss │ ├── common │ ├── _index.scss │ ├── spacing.scss │ └── typography.scss │ ├── dark-hc │ ├── _index.scss │ ├── base.scss │ ├── line.scss │ ├── private.scss │ ├── sfx.scss │ ├── system.scss │ └── text.scss │ ├── dark │ ├── _index.scss │ ├── base.scss │ ├── line.scss │ ├── private.scss │ ├── sfx.scss │ ├── system.scss │ └── text.scss │ ├── light-hc │ ├── _index.scss │ ├── base.scss │ ├── line.scss │ ├── private.scss │ ├── sfx.scss │ ├── system.scss │ └── text.scss │ └── light │ ├── _index.scss │ ├── base.scss │ ├── line.scss │ ├── private.scss │ ├── sfx.scss │ ├── system.scss │ └── text.scss ├── test-utils ├── setup-tests-after.ts ├── setup-tests.ts ├── setupIntersectionObserverMock.ts ├── setupTimersMock.ts └── utils.tsx ├── tsconfig.json └── tsconfig.test.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/ISSUE_TEMPLATE/3-task.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/main-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/workflows/main-preview.yml -------------------------------------------------------------------------------- /.github/workflows/pr-preview-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/workflows/pr-preview-build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-preview-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/workflows/pr-preview-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/pr-visual-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/workflows/pr-visual-tests.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-storybook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.github/workflows/test-storybook.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx commitlint -e 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx nano-staged 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@gravity-ui/prettier-config'); 2 | -------------------------------------------------------------------------------- /.storybook/decorators/withLang.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/decorators/withLang.tsx -------------------------------------------------------------------------------- /.storybook/decorators/withMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/decorators/withMobile.tsx -------------------------------------------------------------------------------- /.storybook/decorators/withStrictMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/decorators/withStrictMode.tsx -------------------------------------------------------------------------------- /.storybook/decorators/withTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/decorators/withTheme.tsx -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/manager.ts -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.storybook/test-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/test-runner.ts -------------------------------------------------------------------------------- /.storybook/theme-addon/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/theme-addon/register.tsx -------------------------------------------------------------------------------- /.storybook/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.storybook/theme.ts -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/.stylelintrc -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/README-ru.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ['@commitlint/config-conventional']}; 2 | -------------------------------------------------------------------------------- /contribute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/contribute/README.md -------------------------------------------------------------------------------- /contribute/pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/contribute/pull-request.md -------------------------------------------------------------------------------- /docs/assets/book-open_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/book-open_dark.svg -------------------------------------------------------------------------------- /docs/assets/book-open_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/book-open_light.svg -------------------------------------------------------------------------------- /docs/assets/bucket-paint_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/bucket-paint_dark.svg -------------------------------------------------------------------------------- /docs/assets/bucket-paint_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/bucket-paint_light.svg -------------------------------------------------------------------------------- /docs/assets/figma_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/figma_dark.svg -------------------------------------------------------------------------------- /docs/assets/figma_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/figma_light.svg -------------------------------------------------------------------------------- /docs/assets/globe_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/globe_dark.svg -------------------------------------------------------------------------------- /docs/assets/globe_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/globe_light.svg -------------------------------------------------------------------------------- /docs/assets/storybook_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/storybook_dark.svg -------------------------------------------------------------------------------- /docs/assets/storybook_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/storybook_light.svg -------------------------------------------------------------------------------- /docs/assets/telegram_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/telegram_dark.svg -------------------------------------------------------------------------------- /docs/assets/telegram_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/telegram_light.svg -------------------------------------------------------------------------------- /docs/assets/uikit_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/docs/assets/uikit_cover.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/package.json -------------------------------------------------------------------------------- /playwright/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/README.md -------------------------------------------------------------------------------- /playwright/core/expectScreenshotFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/core/expectScreenshotFixture.ts -------------------------------------------------------------------------------- /playwright/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/core/index.ts -------------------------------------------------------------------------------- /playwright/core/mountFixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/core/mountFixture.tsx -------------------------------------------------------------------------------- /playwright/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/core/types.ts -------------------------------------------------------------------------------- /playwright/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/playwright.config.ts -------------------------------------------------------------------------------- /playwright/playwright/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/playwright/index.html -------------------------------------------------------------------------------- /playwright/playwright/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/playwright/index.scss -------------------------------------------------------------------------------- /playwright/playwright/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/playwright/index.tsx -------------------------------------------------------------------------------- /playwright/run-docker-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/playwright/run-docker-command.sh -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/Accordion.scss -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/Accordion.tsx -------------------------------------------------------------------------------- /src/components/Accordion/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/README-ru.md -------------------------------------------------------------------------------- /src/components/Accordion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/README.md -------------------------------------------------------------------------------- /src/components/Accordion/__tests__/cases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/__tests__/cases.ts -------------------------------------------------------------------------------- /src/components/Accordion/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/constants.ts -------------------------------------------------------------------------------- /src/components/Accordion/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Accordion" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Accordion/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Accordion/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Аккордеон" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Accordion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/index.ts -------------------------------------------------------------------------------- /src/components/Accordion/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Accordion/types.ts -------------------------------------------------------------------------------- /src/components/ActionTooltip/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionTooltip/README-ru.md -------------------------------------------------------------------------------- /src/components/ActionTooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionTooltip/README.md -------------------------------------------------------------------------------- /src/components/ActionTooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionTooltip/index.ts -------------------------------------------------------------------------------- /src/components/ActionsPanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionsPanel/README.md -------------------------------------------------------------------------------- /src/components/ActionsPanel/components/hooks/types.ts: -------------------------------------------------------------------------------- 1 | export type VisibilityMap = Record; 2 | -------------------------------------------------------------------------------- /src/components/ActionsPanel/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionsPanel/i18n/en.json -------------------------------------------------------------------------------- /src/components/ActionsPanel/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionsPanel/i18n/index.ts -------------------------------------------------------------------------------- /src/components/ActionsPanel/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionsPanel/i18n/ru.json -------------------------------------------------------------------------------- /src/components/ActionsPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionsPanel/index.ts -------------------------------------------------------------------------------- /src/components/ActionsPanel/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ActionsPanel/types.ts -------------------------------------------------------------------------------- /src/components/Alert/Alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/Alert.scss -------------------------------------------------------------------------------- /src/components/Alert/Alert.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/Alert.test.tsx -------------------------------------------------------------------------------- /src/components/Alert/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/Alert.tsx -------------------------------------------------------------------------------- /src/components/Alert/AlertAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/AlertAction.tsx -------------------------------------------------------------------------------- /src/components/Alert/AlertActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/AlertActions.tsx -------------------------------------------------------------------------------- /src/components/Alert/AlertContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/AlertContext.tsx -------------------------------------------------------------------------------- /src/components/Alert/AlertIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/AlertIcon.tsx -------------------------------------------------------------------------------- /src/components/Alert/AlertTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/AlertTitle.tsx -------------------------------------------------------------------------------- /src/components/Alert/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/README-ru.md -------------------------------------------------------------------------------- /src/components/Alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/README.md -------------------------------------------------------------------------------- /src/components/Alert/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Alert/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Alert/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/constants.ts -------------------------------------------------------------------------------- /src/components/Alert/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/i18n/en.json -------------------------------------------------------------------------------- /src/components/Alert/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Alert/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_close": "Закрыть" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/index.ts -------------------------------------------------------------------------------- /src/components/Alert/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/types.ts -------------------------------------------------------------------------------- /src/components/Alert/useAlertContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Alert/useAlertContext.tsx -------------------------------------------------------------------------------- /src/components/ArrowToggle/ArrowToggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ArrowToggle/ArrowToggle.scss -------------------------------------------------------------------------------- /src/components/ArrowToggle/ArrowToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ArrowToggle/ArrowToggle.tsx -------------------------------------------------------------------------------- /src/components/ArrowToggle/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ArrowToggle/README-ru.md -------------------------------------------------------------------------------- /src/components/ArrowToggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ArrowToggle/README.md -------------------------------------------------------------------------------- /src/components/ArrowToggle/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ArrowToggle'; 2 | -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/Avatar.scss -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/components/Avatar/AvatarIcon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/AvatarIcon/index.ts -------------------------------------------------------------------------------- /src/components/Avatar/AvatarIcon/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/AvatarIcon/types.ts -------------------------------------------------------------------------------- /src/components/Avatar/AvatarImage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/AvatarImage/index.ts -------------------------------------------------------------------------------- /src/components/Avatar/AvatarImage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/AvatarImage/types.ts -------------------------------------------------------------------------------- /src/components/Avatar/AvatarText/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/AvatarText/index.ts -------------------------------------------------------------------------------- /src/components/Avatar/AvatarText/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/AvatarText/types.ts -------------------------------------------------------------------------------- /src/components/Avatar/AvatarText/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/AvatarText/utils.ts -------------------------------------------------------------------------------- /src/components/Avatar/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/README-ru.md -------------------------------------------------------------------------------- /src/components/Avatar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/README.md -------------------------------------------------------------------------------- /src/components/Avatar/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Avatar/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Avatar/__tests__/stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/__tests__/stories.ts -------------------------------------------------------------------------------- /src/components/Avatar/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/_variables.scss -------------------------------------------------------------------------------- /src/components/Avatar/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/constants.ts -------------------------------------------------------------------------------- /src/components/Avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/index.ts -------------------------------------------------------------------------------- /src/components/Avatar/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/types/common.ts -------------------------------------------------------------------------------- /src/components/Avatar/types/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Avatar/types/main.ts -------------------------------------------------------------------------------- /src/components/AvatarStack/AvatarStack.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/AvatarStack.scss -------------------------------------------------------------------------------- /src/components/AvatarStack/AvatarStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/AvatarStack.tsx -------------------------------------------------------------------------------- /src/components/AvatarStack/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/README-ru.md -------------------------------------------------------------------------------- /src/components/AvatarStack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/README.md -------------------------------------------------------------------------------- /src/components/AvatarStack/constants.ts: -------------------------------------------------------------------------------- 1 | export const AVATAR_STACK_DEFAULT_MAX = 3; 2 | -------------------------------------------------------------------------------- /src/components/AvatarStack/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/i18n/en.json -------------------------------------------------------------------------------- /src/components/AvatarStack/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/i18n/index.ts -------------------------------------------------------------------------------- /src/components/AvatarStack/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/i18n/ru.json -------------------------------------------------------------------------------- /src/components/AvatarStack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/index.ts -------------------------------------------------------------------------------- /src/components/AvatarStack/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/AvatarStack/types.ts -------------------------------------------------------------------------------- /src/components/Breadcrumbs/Breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/Breadcrumbs.scss -------------------------------------------------------------------------------- /src/components/Breadcrumbs/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/Breadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/Breadcrumbs/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/README-ru.md -------------------------------------------------------------------------------- /src/components/Breadcrumbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/README.md -------------------------------------------------------------------------------- /src/components/Breadcrumbs/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/i18n/en.json -------------------------------------------------------------------------------- /src/components/Breadcrumbs/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Breadcrumbs/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/i18n/ru.json -------------------------------------------------------------------------------- /src/components/Breadcrumbs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/index.ts -------------------------------------------------------------------------------- /src/components/Breadcrumbs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Breadcrumbs/utils.ts -------------------------------------------------------------------------------- /src/components/Button/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/Button.scss -------------------------------------------------------------------------------- /src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/Button/ButtonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/ButtonIcon.tsx -------------------------------------------------------------------------------- /src/components/Button/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/README-ru.md -------------------------------------------------------------------------------- /src/components/Button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/README.md -------------------------------------------------------------------------------- /src/components/Button/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Button/__tests__/cases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/__tests__/cases.ts -------------------------------------------------------------------------------- /src/components/Button/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/constants.ts -------------------------------------------------------------------------------- /src/components/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Button/index.ts -------------------------------------------------------------------------------- /src/components/Card/Card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Card/Card.scss -------------------------------------------------------------------------------- /src/components/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Card/Card.tsx -------------------------------------------------------------------------------- /src/components/Card/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Card/README-ru.md -------------------------------------------------------------------------------- /src/components/Card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Card/README.md -------------------------------------------------------------------------------- /src/components/Card/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Card/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Card/__tests__/Card.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Card/__tests__/Card.test.tsx -------------------------------------------------------------------------------- /src/components/Card/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Card/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Card/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Card'; 2 | -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Checkbox/Checkbox.scss -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Checkbox/README-ru.md -------------------------------------------------------------------------------- /src/components/Checkbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Checkbox/README.md -------------------------------------------------------------------------------- /src/components/Checkbox/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Checkbox/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Checkbox'; 2 | -------------------------------------------------------------------------------- /src/components/ClipboardButton/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ClipboardButton/README-ru.md -------------------------------------------------------------------------------- /src/components/ClipboardButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ClipboardButton/README.md -------------------------------------------------------------------------------- /src/components/ClipboardButton/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ClipboardButton/i18n/en.json -------------------------------------------------------------------------------- /src/components/ClipboardButton/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ClipboardButton/i18n/ru.json -------------------------------------------------------------------------------- /src/components/ClipboardButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClipboardButton'; 2 | -------------------------------------------------------------------------------- /src/components/ClipboardIcon/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ClipboardIcon/README-ru.md -------------------------------------------------------------------------------- /src/components/ClipboardIcon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ClipboardIcon/README.md -------------------------------------------------------------------------------- /src/components/ClipboardIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ClipboardIcon'; 2 | -------------------------------------------------------------------------------- /src/components/ControlLabel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ControlLabel/index.ts -------------------------------------------------------------------------------- /src/components/ControlLabel/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/ControlLabel/types.ts -------------------------------------------------------------------------------- /src/components/CopyToClipboard/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/CopyToClipboard/README-ru.md -------------------------------------------------------------------------------- /src/components/CopyToClipboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/CopyToClipboard/README.md -------------------------------------------------------------------------------- /src/components/CopyToClipboard/copyText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/CopyToClipboard/copyText.ts -------------------------------------------------------------------------------- /src/components/CopyToClipboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/CopyToClipboard/index.ts -------------------------------------------------------------------------------- /src/components/CopyToClipboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/CopyToClipboard/types.ts -------------------------------------------------------------------------------- /src/components/DefinitionList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DefinitionList/README.md -------------------------------------------------------------------------------- /src/components/DefinitionList/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DefinitionList/constants.ts -------------------------------------------------------------------------------- /src/components/DefinitionList/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DefinitionList/i18n/en.json -------------------------------------------------------------------------------- /src/components/DefinitionList/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DefinitionList/i18n/index.ts -------------------------------------------------------------------------------- /src/components/DefinitionList/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_note": "Справка" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/DefinitionList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DefinitionList/index.ts -------------------------------------------------------------------------------- /src/components/DefinitionList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DefinitionList/types.ts -------------------------------------------------------------------------------- /src/components/DefinitionList/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DefinitionList/utils.ts -------------------------------------------------------------------------------- /src/components/Dialog/Dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/Dialog.scss -------------------------------------------------------------------------------- /src/components/Dialog/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/Dialog.tsx -------------------------------------------------------------------------------- /src/components/Dialog/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/README-ru.md -------------------------------------------------------------------------------- /src/components/Dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/README.md -------------------------------------------------------------------------------- /src/components/Dialog/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Dialog/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Dialog/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/i18n/en.json -------------------------------------------------------------------------------- /src/components/Dialog/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Dialog/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/i18n/ru.json -------------------------------------------------------------------------------- /src/components/Dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Dialog/index.ts -------------------------------------------------------------------------------- /src/components/Disclosure/Disclosure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Disclosure/Disclosure.scss -------------------------------------------------------------------------------- /src/components/Disclosure/Disclosure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Disclosure/Disclosure.tsx -------------------------------------------------------------------------------- /src/components/Disclosure/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Disclosure/README-ru.md -------------------------------------------------------------------------------- /src/components/Disclosure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Disclosure/README.md -------------------------------------------------------------------------------- /src/components/Disclosure/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Disclosure/constants.ts -------------------------------------------------------------------------------- /src/components/Disclosure/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Disclosure/index.ts -------------------------------------------------------------------------------- /src/components/Divider/Divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Divider/Divider.scss -------------------------------------------------------------------------------- /src/components/Divider/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Divider/Divider.tsx -------------------------------------------------------------------------------- /src/components/Divider/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Divider/README-ru.md -------------------------------------------------------------------------------- /src/components/Divider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Divider/README.md -------------------------------------------------------------------------------- /src/components/Divider/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Divider/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Divider/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Divider/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Divider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Divider'; 2 | -------------------------------------------------------------------------------- /src/components/DropdownMenu/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DropdownMenu/README-ru.md -------------------------------------------------------------------------------- /src/components/DropdownMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DropdownMenu/README.md -------------------------------------------------------------------------------- /src/components/DropdownMenu/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DropdownMenu/constants.ts -------------------------------------------------------------------------------- /src/components/DropdownMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DropdownMenu'; 2 | -------------------------------------------------------------------------------- /src/components/DropdownMenu/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/DropdownMenu/types.ts -------------------------------------------------------------------------------- /src/components/FilePreview/FilePreview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/FilePreview.scss -------------------------------------------------------------------------------- /src/components/FilePreview/FilePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/FilePreview.tsx -------------------------------------------------------------------------------- /src/components/FilePreview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/README.md -------------------------------------------------------------------------------- /src/components/FilePreview/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/i18n/en.json -------------------------------------------------------------------------------- /src/components/FilePreview/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/i18n/index.ts -------------------------------------------------------------------------------- /src/components/FilePreview/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/i18n/ru.json -------------------------------------------------------------------------------- /src/components/FilePreview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/index.ts -------------------------------------------------------------------------------- /src/components/FilePreview/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/types.ts -------------------------------------------------------------------------------- /src/components/FilePreview/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/utils.ts -------------------------------------------------------------------------------- /src/components/FilePreview/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/FilePreview/variables.scss -------------------------------------------------------------------------------- /src/components/HelpMark/HelpMark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/HelpMark/HelpMark.scss -------------------------------------------------------------------------------- /src/components/HelpMark/HelpMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/HelpMark/HelpMark.tsx -------------------------------------------------------------------------------- /src/components/HelpMark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/HelpMark/README.md -------------------------------------------------------------------------------- /src/components/HelpMark/__tests__/cases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/HelpMark/__tests__/cases.ts -------------------------------------------------------------------------------- /src/components/HelpMark/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/HelpMark/constants.ts -------------------------------------------------------------------------------- /src/components/HelpMark/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HelpMark'; 2 | -------------------------------------------------------------------------------- /src/components/Hotkey/Hotkey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/Hotkey.scss -------------------------------------------------------------------------------- /src/components/Hotkey/Hotkey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/Hotkey.tsx -------------------------------------------------------------------------------- /src/components/Hotkey/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/README-ru.md -------------------------------------------------------------------------------- /src/components/Hotkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/README.md -------------------------------------------------------------------------------- /src/components/Hotkey/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Hotkey/__stories__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/__stories__/README.md -------------------------------------------------------------------------------- /src/components/Hotkey/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Hotkey/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/definitions.ts -------------------------------------------------------------------------------- /src/components/Hotkey/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/index.ts -------------------------------------------------------------------------------- /src/components/Hotkey/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/parse.ts -------------------------------------------------------------------------------- /src/components/Hotkey/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/types.ts -------------------------------------------------------------------------------- /src/components/Hotkey/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Hotkey/utils.ts -------------------------------------------------------------------------------- /src/components/Icon/Icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/Icon.scss -------------------------------------------------------------------------------- /src/components/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/Icon.tsx -------------------------------------------------------------------------------- /src/components/Icon/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/README-ru.md -------------------------------------------------------------------------------- /src/components/Icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/README.md -------------------------------------------------------------------------------- /src/components/Icon/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Icon/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Icon/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/__tests__/utils.test.ts -------------------------------------------------------------------------------- /src/components/Icon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Icon'; 2 | -------------------------------------------------------------------------------- /src/components/Icon/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/types.ts -------------------------------------------------------------------------------- /src/components/Icon/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Icon/utils.ts -------------------------------------------------------------------------------- /src/components/Label/Label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Label/Label.scss -------------------------------------------------------------------------------- /src/components/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Label/Label.tsx -------------------------------------------------------------------------------- /src/components/Label/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Label/README-ru.md -------------------------------------------------------------------------------- /src/components/Label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Label/README.md -------------------------------------------------------------------------------- /src/components/Label/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Label/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Label/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Label/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Label/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Label/constants.ts -------------------------------------------------------------------------------- /src/components/Label/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Label'; 2 | -------------------------------------------------------------------------------- /src/components/Link/Link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Link/Link.scss -------------------------------------------------------------------------------- /src/components/Link/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Link/Link.tsx -------------------------------------------------------------------------------- /src/components/Link/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Link/README-ru.md -------------------------------------------------------------------------------- /src/components/Link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Link/README.md -------------------------------------------------------------------------------- /src/components/Link/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Link/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Link/__tests__/Link.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Link/__tests__/Link.test.tsx -------------------------------------------------------------------------------- /src/components/Link/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Link/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Link/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Link'; 2 | -------------------------------------------------------------------------------- /src/components/List/List.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/List.scss -------------------------------------------------------------------------------- /src/components/List/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/List.tsx -------------------------------------------------------------------------------- /src/components/List/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/README-ru.md -------------------------------------------------------------------------------- /src/components/List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/README.md -------------------------------------------------------------------------------- /src/components/List/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/List/__tests__/List.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/__tests__/List.test.tsx -------------------------------------------------------------------------------- /src/components/List/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/List/components/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/components/ListItem.tsx -------------------------------------------------------------------------------- /src/components/List/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/components/index.ts -------------------------------------------------------------------------------- /src/components/List/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/constants.ts -------------------------------------------------------------------------------- /src/components/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/index.tsx -------------------------------------------------------------------------------- /src/components/List/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/List/types.ts -------------------------------------------------------------------------------- /src/components/Loader/Loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Loader/Loader.scss -------------------------------------------------------------------------------- /src/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /src/components/Loader/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Loader/README-ru.md -------------------------------------------------------------------------------- /src/components/Loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Loader/README.md -------------------------------------------------------------------------------- /src/components/Loader/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Loader/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Loader/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Loader/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Loader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Loader'; 2 | -------------------------------------------------------------------------------- /src/components/Menu/Menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/Menu.scss -------------------------------------------------------------------------------- /src/components/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/Menu.tsx -------------------------------------------------------------------------------- /src/components/Menu/MenuGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/MenuGroup.tsx -------------------------------------------------------------------------------- /src/components/Menu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/MenuItem.tsx -------------------------------------------------------------------------------- /src/components/Menu/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/README-ru.md -------------------------------------------------------------------------------- /src/components/Menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/README.md -------------------------------------------------------------------------------- /src/components/Menu/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Menu/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Menu/__tests__/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/__tests__/helpers.tsx -------------------------------------------------------------------------------- /src/components/Menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Menu/index.ts -------------------------------------------------------------------------------- /src/components/Modal/Modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Modal/Modal.scss -------------------------------------------------------------------------------- /src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/Modal/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Modal/README-ru.md -------------------------------------------------------------------------------- /src/components/Modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Modal/README.md -------------------------------------------------------------------------------- /src/components/Modal/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Modal/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Modal/__tests__/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Modal/__tests__/constants.ts -------------------------------------------------------------------------------- /src/components/Modal/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Modal/i18n/en.json -------------------------------------------------------------------------------- /src/components/Modal/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Modal/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Modal/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "close": "Закрыть" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Modal'; 2 | -------------------------------------------------------------------------------- /src/components/NumberInput/NumberInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/NumberInput/NumberInput.scss -------------------------------------------------------------------------------- /src/components/NumberInput/NumberInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/NumberInput/NumberInput.tsx -------------------------------------------------------------------------------- /src/components/NumberInput/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/NumberInput/README.md -------------------------------------------------------------------------------- /src/components/NumberInput/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/NumberInput/i18n/en.json -------------------------------------------------------------------------------- /src/components/NumberInput/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/NumberInput/i18n/index.ts -------------------------------------------------------------------------------- /src/components/NumberInput/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/NumberInput/i18n/ru.json -------------------------------------------------------------------------------- /src/components/NumberInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/NumberInput/index.ts -------------------------------------------------------------------------------- /src/components/NumberInput/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/NumberInput/utils.ts -------------------------------------------------------------------------------- /src/components/Overlay/Overlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Overlay/Overlay.scss -------------------------------------------------------------------------------- /src/components/Overlay/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Overlay/Overlay.tsx -------------------------------------------------------------------------------- /src/components/Overlay/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Overlay/README-ru.md -------------------------------------------------------------------------------- /src/components/Overlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Overlay/README.md -------------------------------------------------------------------------------- /src/components/Overlay/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Overlay/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Overlay/__stories__/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Overlay/__stories__/data.tsx -------------------------------------------------------------------------------- /src/components/Overlay/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Overlay/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Overlay/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Overlay'; 2 | -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/Pagination.scss -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /src/components/Pagination/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/README-ru.md -------------------------------------------------------------------------------- /src/components/Pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/README.md -------------------------------------------------------------------------------- /src/components/Pagination/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/constants.ts -------------------------------------------------------------------------------- /src/components/Pagination/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/i18n/en.json -------------------------------------------------------------------------------- /src/components/Pagination/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Pagination/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/i18n/ru.json -------------------------------------------------------------------------------- /src/components/Pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/index.ts -------------------------------------------------------------------------------- /src/components/Pagination/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/types.ts -------------------------------------------------------------------------------- /src/components/Pagination/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/utils.test.ts -------------------------------------------------------------------------------- /src/components/Pagination/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Pagination/utils.ts -------------------------------------------------------------------------------- /src/components/Palette/Palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Palette/Palette.scss -------------------------------------------------------------------------------- /src/components/Palette/Palette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Palette/Palette.tsx -------------------------------------------------------------------------------- /src/components/Palette/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Palette/README-ru.md -------------------------------------------------------------------------------- /src/components/Palette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Palette/README.md -------------------------------------------------------------------------------- /src/components/Palette/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Palette/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Palette/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Palette/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Palette/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Palette/hooks.ts -------------------------------------------------------------------------------- /src/components/Palette/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Palette'; 2 | -------------------------------------------------------------------------------- /src/components/Palette/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Palette/utils.ts -------------------------------------------------------------------------------- /src/components/PinInput/PinInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/PinInput/PinInput.scss -------------------------------------------------------------------------------- /src/components/PinInput/PinInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/PinInput/PinInput.tsx -------------------------------------------------------------------------------- /src/components/PinInput/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/PinInput/README-ru.md -------------------------------------------------------------------------------- /src/components/PinInput/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/PinInput/README.md -------------------------------------------------------------------------------- /src/components/PinInput/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/PinInput/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/PinInput/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_one-of": "{{number}} of {{count}}, " 3 | } 4 | -------------------------------------------------------------------------------- /src/components/PinInput/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/PinInput/i18n/index.ts -------------------------------------------------------------------------------- /src/components/PinInput/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_one-of": "{{number}} из {{count}}, " 3 | } 4 | -------------------------------------------------------------------------------- /src/components/PinInput/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PinInput'; 2 | -------------------------------------------------------------------------------- /src/components/Popover/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popover/Popover.tsx -------------------------------------------------------------------------------- /src/components/Popover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popover/README.md -------------------------------------------------------------------------------- /src/components/Popover/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popover/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Popover/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Popover'; 2 | -------------------------------------------------------------------------------- /src/components/Popup/Popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/Popup.scss -------------------------------------------------------------------------------- /src/components/Popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/Popup.tsx -------------------------------------------------------------------------------- /src/components/Popup/PopupArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/PopupArrow.tsx -------------------------------------------------------------------------------- /src/components/Popup/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/README-ru.md -------------------------------------------------------------------------------- /src/components/Popup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/README.md -------------------------------------------------------------------------------- /src/components/Popup/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Popup/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Popup/__tests__/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/__tests__/constants.ts -------------------------------------------------------------------------------- /src/components/Popup/__tests__/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/__tests__/helpers.tsx -------------------------------------------------------------------------------- /src/components/Popup/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/constants.ts -------------------------------------------------------------------------------- /src/components/Popup/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/hooks.ts -------------------------------------------------------------------------------- /src/components/Popup/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/i18n/en.json -------------------------------------------------------------------------------- /src/components/Popup/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Popup/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "close": "Закрыть" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/index.ts -------------------------------------------------------------------------------- /src/components/Popup/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/types.ts -------------------------------------------------------------------------------- /src/components/Popup/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Popup/utils.ts -------------------------------------------------------------------------------- /src/components/Portal/Portal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Portal/Portal.scss -------------------------------------------------------------------------------- /src/components/Portal/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Portal/Portal.tsx -------------------------------------------------------------------------------- /src/components/Portal/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Portal/README-ru.md -------------------------------------------------------------------------------- /src/components/Portal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Portal/README.md -------------------------------------------------------------------------------- /src/components/Portal/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Portal/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Portal/__stories__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Portal/__stories__/README.md -------------------------------------------------------------------------------- /src/components/Portal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Portal'; 2 | -------------------------------------------------------------------------------- /src/components/Progress/Progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/Progress.scss -------------------------------------------------------------------------------- /src/components/Progress/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/Progress.tsx -------------------------------------------------------------------------------- /src/components/Progress/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/README-ru.md -------------------------------------------------------------------------------- /src/components/Progress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/README.md -------------------------------------------------------------------------------- /src/components/Progress/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Progress/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/constants.ts -------------------------------------------------------------------------------- /src/components/Progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/index.ts -------------------------------------------------------------------------------- /src/components/Progress/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/types.ts -------------------------------------------------------------------------------- /src/components/Progress/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Progress/utils.ts -------------------------------------------------------------------------------- /src/components/Radio/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Radio/README-ru.md -------------------------------------------------------------------------------- /src/components/Radio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Radio/README.md -------------------------------------------------------------------------------- /src/components/Radio/Radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Radio/Radio.scss -------------------------------------------------------------------------------- /src/components/Radio/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Radio/Radio.tsx -------------------------------------------------------------------------------- /src/components/Radio/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Radio/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Radio/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Radio/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Radio/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Radio'; 2 | -------------------------------------------------------------------------------- /src/components/RadioGroup/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/RadioGroup/README-ru.md -------------------------------------------------------------------------------- /src/components/RadioGroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/RadioGroup/README.md -------------------------------------------------------------------------------- /src/components/RadioGroup/RadioGroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/RadioGroup/RadioGroup.scss -------------------------------------------------------------------------------- /src/components/RadioGroup/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/RadioGroup/RadioGroup.tsx -------------------------------------------------------------------------------- /src/components/RadioGroup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './RadioGroup'; 2 | -------------------------------------------------------------------------------- /src/components/SegmentedRadioGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/SegmentedRadioGroup/index.ts -------------------------------------------------------------------------------- /src/components/Select/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/README-ru.md -------------------------------------------------------------------------------- /src/components/Select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/README.md -------------------------------------------------------------------------------- /src/components/Select/Select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/Select.scss -------------------------------------------------------------------------------- /src/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/Select.tsx -------------------------------------------------------------------------------- /src/components/Select/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Select/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Select/__tests__/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/__tests__/utils.tsx -------------------------------------------------------------------------------- /src/components/Select/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/components/index.ts -------------------------------------------------------------------------------- /src/components/Select/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/constants.ts -------------------------------------------------------------------------------- /src/components/Select/hooks-public/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useSelectOptions'; 2 | -------------------------------------------------------------------------------- /src/components/Select/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/hooks/index.ts -------------------------------------------------------------------------------- /src/components/Select/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/i18n/en.json -------------------------------------------------------------------------------- /src/components/Select/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Select/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/i18n/ru.json -------------------------------------------------------------------------------- /src/components/Select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/index.ts -------------------------------------------------------------------------------- /src/components/Select/tech-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/tech-components.tsx -------------------------------------------------------------------------------- /src/components/Select/types-misc.ts: -------------------------------------------------------------------------------- 1 | export type SelectFilterRef = { 2 | focus: () => void; 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/Select/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/types.ts -------------------------------------------------------------------------------- /src/components/Select/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/utils.tsx -------------------------------------------------------------------------------- /src/components/Select/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Select/variables.scss -------------------------------------------------------------------------------- /src/components/Sheet/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/README-ru.md -------------------------------------------------------------------------------- /src/components/Sheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/README.md -------------------------------------------------------------------------------- /src/components/Sheet/Sheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/Sheet.scss -------------------------------------------------------------------------------- /src/components/Sheet/Sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/Sheet.tsx -------------------------------------------------------------------------------- /src/components/Sheet/SheetContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/SheetContent.tsx -------------------------------------------------------------------------------- /src/components/Sheet/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Sheet/__stories__/constants.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_SHEET_QA = 'default-sheet-qa'; 2 | -------------------------------------------------------------------------------- /src/components/Sheet/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Sheet/__tests__/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/__tests__/constants.ts -------------------------------------------------------------------------------- /src/components/Sheet/__tests__/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/__tests__/helpers.tsx -------------------------------------------------------------------------------- /src/components/Sheet/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/constants.ts -------------------------------------------------------------------------------- /src/components/Sheet/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Sheet'; 2 | -------------------------------------------------------------------------------- /src/components/Sheet/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Sheet/utils.ts -------------------------------------------------------------------------------- /src/components/Skeleton/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Skeleton/README-ru.md -------------------------------------------------------------------------------- /src/components/Skeleton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Skeleton/README.md -------------------------------------------------------------------------------- /src/components/Skeleton/Skeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Skeleton/Skeleton.scss -------------------------------------------------------------------------------- /src/components/Skeleton/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Skeleton/Skeleton.tsx -------------------------------------------------------------------------------- /src/components/Skeleton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Skeleton'; 2 | -------------------------------------------------------------------------------- /src/components/Slider/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/README-ru.md -------------------------------------------------------------------------------- /src/components/Slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/README.md -------------------------------------------------------------------------------- /src/components/Slider/Slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/Slider.scss -------------------------------------------------------------------------------- /src/components/Slider/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/Slider.tsx -------------------------------------------------------------------------------- /src/components/Slider/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Slider/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Slider/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/constants.ts -------------------------------------------------------------------------------- /src/components/Slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/index.ts -------------------------------------------------------------------------------- /src/components/Slider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/types.ts -------------------------------------------------------------------------------- /src/components/Slider/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/utils.ts -------------------------------------------------------------------------------- /src/components/Slider/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Slider/variables.scss -------------------------------------------------------------------------------- /src/components/Spin/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Spin/README-ru.md -------------------------------------------------------------------------------- /src/components/Spin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Spin/README.md -------------------------------------------------------------------------------- /src/components/Spin/Spin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Spin/Spin.scss -------------------------------------------------------------------------------- /src/components/Spin/Spin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Spin/Spin.tsx -------------------------------------------------------------------------------- /src/components/Spin/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Spin/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Spin/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Spin/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Spin/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Spin'; 2 | -------------------------------------------------------------------------------- /src/components/Stepper/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/README-ru.md -------------------------------------------------------------------------------- /src/components/Stepper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/README.md -------------------------------------------------------------------------------- /src/components/Stepper/Stepper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/Stepper.scss -------------------------------------------------------------------------------- /src/components/Stepper/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/Stepper.tsx -------------------------------------------------------------------------------- /src/components/Stepper/StepperItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/StepperItem.tsx -------------------------------------------------------------------------------- /src/components/Stepper/StepperSeparator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/StepperSeparator.tsx -------------------------------------------------------------------------------- /src/components/Stepper/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Stepper/__tests__/cases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/__tests__/cases.ts -------------------------------------------------------------------------------- /src/components/Stepper/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/context.ts -------------------------------------------------------------------------------- /src/components/Stepper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/index.ts -------------------------------------------------------------------------------- /src/components/Stepper/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/types.ts -------------------------------------------------------------------------------- /src/components/Stepper/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Stepper/utils.ts -------------------------------------------------------------------------------- /src/components/Switch/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Switch/README-ru.md -------------------------------------------------------------------------------- /src/components/Switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Switch/README.md -------------------------------------------------------------------------------- /src/components/Switch/Switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Switch/Switch.scss -------------------------------------------------------------------------------- /src/components/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Switch/Switch.tsx -------------------------------------------------------------------------------- /src/components/Switch/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Switch/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Switch/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Switch/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Switch/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Switch'; 2 | -------------------------------------------------------------------------------- /src/components/Table/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/README-ru.md -------------------------------------------------------------------------------- /src/components/Table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/README.md -------------------------------------------------------------------------------- /src/components/Table/Table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/Table.scss -------------------------------------------------------------------------------- /src/components/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/Table.tsx -------------------------------------------------------------------------------- /src/components/Table/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Table/__stories__/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/__stories__/utils.tsx -------------------------------------------------------------------------------- /src/components/Table/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Table/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/__tests__/utils.ts -------------------------------------------------------------------------------- /src/components/Table/hoc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/hoc/index.ts -------------------------------------------------------------------------------- /src/components/Table/hoc/withTableSettings/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_settings": "Настройки таблицы" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Table/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/i18n/en.json -------------------------------------------------------------------------------- /src/components/Table/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Table/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/i18n/ru.json -------------------------------------------------------------------------------- /src/components/Table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/index.ts -------------------------------------------------------------------------------- /src/components/Table/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Table/variables.scss -------------------------------------------------------------------------------- /src/components/TableColumnSetup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/TableColumnSetup/README.md -------------------------------------------------------------------------------- /src/components/TableColumnSetup/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "button_switcher": "Columns" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/TableColumnSetup/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "button_switcher": "Колонки" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/TableColumnSetup/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TableColumnSetup'; 2 | -------------------------------------------------------------------------------- /src/components/Text/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/README-ru.md -------------------------------------------------------------------------------- /src/components/Text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/README.md -------------------------------------------------------------------------------- /src/components/Text/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/Text.tsx -------------------------------------------------------------------------------- /src/components/Text/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Text/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Text/__tests__/stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/__tests__/stories.ts -------------------------------------------------------------------------------- /src/components/Text/colorText/colorText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/colorText/colorText.ts -------------------------------------------------------------------------------- /src/components/Text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/index.ts -------------------------------------------------------------------------------- /src/components/Text/text/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/text/text.scss -------------------------------------------------------------------------------- /src/components/Text/text/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Text/text/text.ts -------------------------------------------------------------------------------- /src/components/Toaster/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/README-ru.md -------------------------------------------------------------------------------- /src/components/Toaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/README.md -------------------------------------------------------------------------------- /src/components/Toaster/Toast/Toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/Toast/Toast.scss -------------------------------------------------------------------------------- /src/components/Toaster/Toast/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/Toast/Toast.tsx -------------------------------------------------------------------------------- /src/components/Toaster/Toaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/Toaster.ts -------------------------------------------------------------------------------- /src/components/Toaster/__mocks__/tick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/__mocks__/tick.ts -------------------------------------------------------------------------------- /src/components/Toaster/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Toaster/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/constants.ts -------------------------------------------------------------------------------- /src/components/Toaster/hooks/useToaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/hooks/useToaster.ts -------------------------------------------------------------------------------- /src/components/Toaster/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/i18n/en.json -------------------------------------------------------------------------------- /src/components/Toaster/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/i18n/index.ts -------------------------------------------------------------------------------- /src/components/Toaster/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_close-button": "Закрыть" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Toaster/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/index.ts -------------------------------------------------------------------------------- /src/components/Toaster/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/types.ts -------------------------------------------------------------------------------- /src/components/Toaster/withToaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toaster/withToaster.tsx -------------------------------------------------------------------------------- /src/components/Toc/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/README-ru.md -------------------------------------------------------------------------------- /src/components/Toc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/README.md -------------------------------------------------------------------------------- /src/components/Toc/Toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/Toc.tsx -------------------------------------------------------------------------------- /src/components/Toc/TocItem/TocItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/TocItem/TocItem.scss -------------------------------------------------------------------------------- /src/components/Toc/TocItem/TocItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/TocItem/TocItem.tsx -------------------------------------------------------------------------------- /src/components/Toc/TocItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TocItem'; 2 | -------------------------------------------------------------------------------- /src/components/Toc/TocSections/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TocSections'; 2 | -------------------------------------------------------------------------------- /src/components/Toc/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Toc/__tests__/Toc.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/__tests__/Toc.test.tsx -------------------------------------------------------------------------------- /src/components/Toc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/index.ts -------------------------------------------------------------------------------- /src/components/Toc/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Toc/types.ts -------------------------------------------------------------------------------- /src/components/Tooltip/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Tooltip/README-ru.md -------------------------------------------------------------------------------- /src/components/Tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Tooltip/README.md -------------------------------------------------------------------------------- /src/components/Tooltip/Tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Tooltip/Tooltip.scss -------------------------------------------------------------------------------- /src/components/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/Tooltip/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Tooltip/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/Tooltip/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Tooltip/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/Tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/Tooltip/index.ts -------------------------------------------------------------------------------- /src/components/TreeList/TreeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/TreeList/TreeList.tsx -------------------------------------------------------------------------------- /src/components/TreeList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/TreeList/index.ts -------------------------------------------------------------------------------- /src/components/TreeList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/TreeList/types.ts -------------------------------------------------------------------------------- /src/components/TreeSelect/TreeSelect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/TreeSelect/TreeSelect.scss -------------------------------------------------------------------------------- /src/components/TreeSelect/TreeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/TreeSelect/TreeSelect.tsx -------------------------------------------------------------------------------- /src/components/TreeSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/TreeSelect/index.ts -------------------------------------------------------------------------------- /src/components/TreeSelect/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/TreeSelect/types.ts -------------------------------------------------------------------------------- /src/components/User/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/README-ru.md -------------------------------------------------------------------------------- /src/components/User/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/README.md -------------------------------------------------------------------------------- /src/components/User/User.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/User.scss -------------------------------------------------------------------------------- /src/components/User/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/User.tsx -------------------------------------------------------------------------------- /src/components/User/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/User/__tests__/User.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/__tests__/User.test.tsx -------------------------------------------------------------------------------- /src/components/User/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/User/__tests__/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/__tests__/helpers.tsx -------------------------------------------------------------------------------- /src/components/User/__tests__/stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/__tests__/stories.ts -------------------------------------------------------------------------------- /src/components/User/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/constants.ts -------------------------------------------------------------------------------- /src/components/User/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/index.ts -------------------------------------------------------------------------------- /src/components/User/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/User/types.ts -------------------------------------------------------------------------------- /src/components/UserLabel/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/README-ru.md -------------------------------------------------------------------------------- /src/components/UserLabel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/README.md -------------------------------------------------------------------------------- /src/components/UserLabel/UserLabel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/UserLabel.scss -------------------------------------------------------------------------------- /src/components/UserLabel/UserLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/UserLabel.tsx -------------------------------------------------------------------------------- /src/components/UserLabel/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/constants.ts -------------------------------------------------------------------------------- /src/components/UserLabel/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/i18n/en.json -------------------------------------------------------------------------------- /src/components/UserLabel/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/i18n/index.ts -------------------------------------------------------------------------------- /src/components/UserLabel/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_remove-button": "Удалить" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/UserLabel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/index.ts -------------------------------------------------------------------------------- /src/components/UserLabel/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/UserLabel/types.ts -------------------------------------------------------------------------------- /src/components/controls/PasswordInput/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PasswordInput'; 2 | -------------------------------------------------------------------------------- /src/components/controls/TextArea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/TextArea/README.md -------------------------------------------------------------------------------- /src/components/controls/TextArea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/TextArea/index.ts -------------------------------------------------------------------------------- /src/components/controls/TextInput/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/TextInput/README.md -------------------------------------------------------------------------------- /src/components/controls/TextInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/TextInput/index.ts -------------------------------------------------------------------------------- /src/components/controls/common/ClearButton/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_clear-button": "Очистить" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/controls/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/common/index.ts -------------------------------------------------------------------------------- /src/components/controls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/index.ts -------------------------------------------------------------------------------- /src/components/controls/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/mixins.scss -------------------------------------------------------------------------------- /src/components/controls/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/types.ts -------------------------------------------------------------------------------- /src/components/controls/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/controls/utils.ts -------------------------------------------------------------------------------- /src/components/controls/variables.scss: -------------------------------------------------------------------------------- 1 | $border-width: 1px; 2 | -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/lab/Menu/Menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/Menu.scss -------------------------------------------------------------------------------- /src/components/lab/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/Menu.tsx -------------------------------------------------------------------------------- /src/components/lab/Menu/MenuContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/MenuContext.ts -------------------------------------------------------------------------------- /src/components/lab/Menu/MenuDivider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/MenuDivider.scss -------------------------------------------------------------------------------- /src/components/lab/Menu/MenuDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/MenuDivider.tsx -------------------------------------------------------------------------------- /src/components/lab/Menu/MenuItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/MenuItem.scss -------------------------------------------------------------------------------- /src/components/lab/Menu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/MenuItem.tsx -------------------------------------------------------------------------------- /src/components/lab/Menu/MenuItemContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/MenuItemContext.ts -------------------------------------------------------------------------------- /src/components/lab/Menu/MenuTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/MenuTrigger.tsx -------------------------------------------------------------------------------- /src/components/lab/Menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/README.md -------------------------------------------------------------------------------- /src/components/lab/Menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/index.ts -------------------------------------------------------------------------------- /src/components/lab/Menu/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/types.ts -------------------------------------------------------------------------------- /src/components/lab/Menu/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/lab/Menu/utils.ts -------------------------------------------------------------------------------- /src/components/layout/Box/Box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/Box/Box.scss -------------------------------------------------------------------------------- /src/components/layout/Box/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/Box/Box.tsx -------------------------------------------------------------------------------- /src/components/layout/Col/Col.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/Col/Col.scss -------------------------------------------------------------------------------- /src/components/layout/Col/Col.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/Col/Col.tsx -------------------------------------------------------------------------------- /src/components/layout/Flex/Flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/Flex/Flex.scss -------------------------------------------------------------------------------- /src/components/layout/Flex/Flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/Flex/Flex.tsx -------------------------------------------------------------------------------- /src/components/layout/Row/Row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/Row/Row.scss -------------------------------------------------------------------------------- /src/components/layout/Row/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/Row/Row.tsx -------------------------------------------------------------------------------- /src/components/layout/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/constants.ts -------------------------------------------------------------------------------- /src/components/layout/demo/Box/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/demo/Box/Box.tsx -------------------------------------------------------------------------------- /src/components/layout/demo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/demo/index.ts -------------------------------------------------------------------------------- /src/components/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/index.ts -------------------------------------------------------------------------------- /src/components/layout/spacing/spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/spacing/spacing.scss -------------------------------------------------------------------------------- /src/components/layout/spacing/spacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/spacing/spacing.tsx -------------------------------------------------------------------------------- /src/components/layout/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/types.ts -------------------------------------------------------------------------------- /src/components/layout/utils/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/utils/index.test.ts -------------------------------------------------------------------------------- /src/components/layout/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/utils/index.ts -------------------------------------------------------------------------------- /src/components/layout/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/layout/variables.scss -------------------------------------------------------------------------------- /src/components/legacy/Breadcrumbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Breadcrumbs/README.md -------------------------------------------------------------------------------- /src/components/legacy/Breadcrumbs/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "label_more": "Показать больше" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/legacy/Breadcrumbs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Breadcrumbs'; 2 | -------------------------------------------------------------------------------- /src/components/legacy/Breadcrumbs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Breadcrumbs/types.ts -------------------------------------------------------------------------------- /src/components/legacy/Popover/Popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Popover/Popover.scss -------------------------------------------------------------------------------- /src/components/legacy/Popover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Popover/README.md -------------------------------------------------------------------------------- /src/components/legacy/Popover/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Popover/config.ts -------------------------------------------------------------------------------- /src/components/legacy/Popover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Popover/index.ts -------------------------------------------------------------------------------- /src/components/legacy/Popover/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Popover/types.ts -------------------------------------------------------------------------------- /src/components/legacy/Tabs/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Tabs/README-ru.md -------------------------------------------------------------------------------- /src/components/legacy/Tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Tabs/README.md -------------------------------------------------------------------------------- /src/components/legacy/Tabs/Tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Tabs/Tabs.scss -------------------------------------------------------------------------------- /src/components/legacy/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/components/legacy/Tabs/TabsItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/Tabs/TabsItem.tsx -------------------------------------------------------------------------------- /src/components/legacy/Tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Tabs'; 2 | -------------------------------------------------------------------------------- /src/components/legacy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/legacy/index.ts -------------------------------------------------------------------------------- /src/components/mobile/MobileContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/mobile/MobileContext.ts -------------------------------------------------------------------------------- /src/components/mobile/MobileProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/mobile/MobileProvider.tsx -------------------------------------------------------------------------------- /src/components/mobile/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/mobile/constants.ts -------------------------------------------------------------------------------- /src/components/mobile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/mobile/index.ts -------------------------------------------------------------------------------- /src/components/mobile/useMobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/mobile/useMobile.ts -------------------------------------------------------------------------------- /src/components/mobile/usePlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/mobile/usePlatform.ts -------------------------------------------------------------------------------- /src/components/mobile/withMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/mobile/withMobile.tsx -------------------------------------------------------------------------------- /src/components/mobile/withPlatform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/mobile/withPlatform.tsx -------------------------------------------------------------------------------- /src/components/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/README.md -------------------------------------------------------------------------------- /src/components/tabs/Tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/Tab.scss -------------------------------------------------------------------------------- /src/components/tabs/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/Tab.tsx -------------------------------------------------------------------------------- /src/components/tabs/TabList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/TabList.scss -------------------------------------------------------------------------------- /src/components/tabs/TabList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/TabList.tsx -------------------------------------------------------------------------------- /src/components/tabs/TabPanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/TabPanel.scss -------------------------------------------------------------------------------- /src/components/tabs/TabPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/TabPanel.tsx -------------------------------------------------------------------------------- /src/components/tabs/TabProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/TabProvider.tsx -------------------------------------------------------------------------------- /src/components/tabs/__stories__/Docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/__stories__/Docs.mdx -------------------------------------------------------------------------------- /src/components/tabs/__tests__/cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/__tests__/cases.tsx -------------------------------------------------------------------------------- /src/components/tabs/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/constants.ts -------------------------------------------------------------------------------- /src/components/tabs/hooks/useTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/hooks/useTab.ts -------------------------------------------------------------------------------- /src/components/tabs/hooks/useTabList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/hooks/useTabList.ts -------------------------------------------------------------------------------- /src/components/tabs/hooks/useTabPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/hooks/useTabPanel.ts -------------------------------------------------------------------------------- /src/components/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/index.ts -------------------------------------------------------------------------------- /src/components/tabs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/types.ts -------------------------------------------------------------------------------- /src/components/tabs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/tabs/utils.ts -------------------------------------------------------------------------------- /src/components/theme/ThemeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/ThemeContext.ts -------------------------------------------------------------------------------- /src/components/theme/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/components/theme/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/constants.ts -------------------------------------------------------------------------------- /src/components/theme/dom-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/dom-helpers.ts -------------------------------------------------------------------------------- /src/components/theme/getRootClassName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/getRootClassName.ts -------------------------------------------------------------------------------- /src/components/theme/getThemeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/getThemeType.ts -------------------------------------------------------------------------------- /src/components/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/index.ts -------------------------------------------------------------------------------- /src/components/theme/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/types.ts -------------------------------------------------------------------------------- /src/components/theme/useDirection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/useDirection.ts -------------------------------------------------------------------------------- /src/components/theme/useLang.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/useLang.tsx -------------------------------------------------------------------------------- /src/components/theme/useSystemTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/useSystemTheme.ts -------------------------------------------------------------------------------- /src/components/theme/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/useTheme.ts -------------------------------------------------------------------------------- /src/components/theme/useThemeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/useThemeContext.ts -------------------------------------------------------------------------------- /src/components/theme/useThemeSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/useThemeSettings.ts -------------------------------------------------------------------------------- /src/components/theme/useThemeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/useThemeType.ts -------------------------------------------------------------------------------- /src/components/theme/useThemeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/useThemeValue.ts -------------------------------------------------------------------------------- /src/components/theme/withDirection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/withDirection.tsx -------------------------------------------------------------------------------- /src/components/theme/withTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/withTheme.tsx -------------------------------------------------------------------------------- /src/components/theme/withThemeValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/theme/withThemeValue.tsx -------------------------------------------------------------------------------- /src/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/types.ts -------------------------------------------------------------------------------- /src/components/useList/__stories__/components/VirtualizedListContainer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VirtualizedListContainer.async'; 2 | -------------------------------------------------------------------------------- /src/components/useList/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/useList/constants.ts -------------------------------------------------------------------------------- /src/components/useList/hooks/useList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/useList/hooks/useList.ts -------------------------------------------------------------------------------- /src/components/useList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/useList/index.ts -------------------------------------------------------------------------------- /src/components/useList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/useList/types.ts -------------------------------------------------------------------------------- /src/components/utils/class-transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/class-transform.ts -------------------------------------------------------------------------------- /src/components/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/cn.ts -------------------------------------------------------------------------------- /src/components/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/common.ts -------------------------------------------------------------------------------- /src/components/utils/filterDOMProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/filterDOMProps.ts -------------------------------------------------------------------------------- /src/components/utils/getComponentName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/getComponentName.ts -------------------------------------------------------------------------------- /src/components/utils/getElementRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/getElementRef.ts -------------------------------------------------------------------------------- /src/components/utils/isOfType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/isOfType.ts -------------------------------------------------------------------------------- /src/components/utils/mergeProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/mergeProps.ts -------------------------------------------------------------------------------- /src/components/utils/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/svg.ts -------------------------------------------------------------------------------- /src/components/utils/transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/transition.ts -------------------------------------------------------------------------------- /src/components/utils/typeCheckers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/typeCheckers.ts -------------------------------------------------------------------------------- /src/components/utils/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/warn.ts -------------------------------------------------------------------------------- /src/components/utils/xpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/utils/xpath.ts -------------------------------------------------------------------------------- /src/components/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/components/variables.scss -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/demo/DocsDecorator/DocsDecorator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/DocsDecorator/DocsDecorator.tsx -------------------------------------------------------------------------------- /src/demo/DocsExample/DocsExample.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/DocsExample/DocsExample.scss -------------------------------------------------------------------------------- /src/demo/DocsExample/DocsExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/DocsExample/DocsExample.tsx -------------------------------------------------------------------------------- /src/demo/DocsSource/DocsSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/DocsSource/DocsSource.tsx -------------------------------------------------------------------------------- /src/demo/Showcase/Showcase.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/Showcase/Showcase.scss -------------------------------------------------------------------------------- /src/demo/Showcase/Showcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/Showcase/Showcase.tsx -------------------------------------------------------------------------------- /src/demo/Showcase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/Showcase/index.ts -------------------------------------------------------------------------------- /src/demo/ShowcaseGrid/ShowcaseGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/ShowcaseGrid/ShowcaseGrid.tsx -------------------------------------------------------------------------------- /src/demo/ShowcaseGrid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/ShowcaseGrid/index.ts -------------------------------------------------------------------------------- /src/demo/ShowcaseItem/ShowcaseItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/ShowcaseItem/ShowcaseItem.scss -------------------------------------------------------------------------------- /src/demo/ShowcaseItem/ShowcaseItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/ShowcaseItem/ShowcaseItem.tsx -------------------------------------------------------------------------------- /src/demo/ShowcaseItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/ShowcaseItem/index.ts -------------------------------------------------------------------------------- /src/demo/colors/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/Base.tsx -------------------------------------------------------------------------------- /src/demo/colors/ColorPanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/ColorPanel.scss -------------------------------------------------------------------------------- /src/demo/colors/ColorPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/ColorPanel.tsx -------------------------------------------------------------------------------- /src/demo/colors/ColorTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/ColorTable.scss -------------------------------------------------------------------------------- /src/demo/colors/ColorTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/ColorTable.tsx -------------------------------------------------------------------------------- /src/demo/colors/Effects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/Effects.tsx -------------------------------------------------------------------------------- /src/demo/colors/Lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/Lines.tsx -------------------------------------------------------------------------------- /src/demo/colors/Misc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/Misc.tsx -------------------------------------------------------------------------------- /src/demo/colors/Private.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/Private.tsx -------------------------------------------------------------------------------- /src/demo/colors/Texts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/colors/Texts.tsx -------------------------------------------------------------------------------- /src/demo/typography/Fonts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/typography/Fonts.tsx -------------------------------------------------------------------------------- /src/demo/typography/TextPanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/typography/TextPanel.scss -------------------------------------------------------------------------------- /src/demo/typography/TextPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/typography/TextPanel.tsx -------------------------------------------------------------------------------- /src/demo/typography/Variants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/demo/typography/Variants.tsx -------------------------------------------------------------------------------- /src/deprecated.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/private/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/index.ts -------------------------------------------------------------------------------- /src/hooks/private/useBoolean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useBoolean/README.md -------------------------------------------------------------------------------- /src/hooks/private/useBoolean/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useBoolean/index.ts -------------------------------------------------------------------------------- /src/hooks/private/useCheckbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useCheckbox/README.md -------------------------------------------------------------------------------- /src/hooks/private/useCheckbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useCheckbox/index.ts -------------------------------------------------------------------------------- /src/hooks/private/useHover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useHover/README.md -------------------------------------------------------------------------------- /src/hooks/private/useHover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useHover/index.ts -------------------------------------------------------------------------------- /src/hooks/private/useHover/useHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useHover/useHover.ts -------------------------------------------------------------------------------- /src/hooks/private/useMatchMedia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useMatchMedia/index.ts -------------------------------------------------------------------------------- /src/hooks/private/usePrevious/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/usePrevious/README.md -------------------------------------------------------------------------------- /src/hooks/private/usePrevious/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/usePrevious/index.ts -------------------------------------------------------------------------------- /src/hooks/private/useRadio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useRadio/README.md -------------------------------------------------------------------------------- /src/hooks/private/useRadio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useRadio/index.ts -------------------------------------------------------------------------------- /src/hooks/private/useRadio/useRadio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useRadio/useRadio.ts -------------------------------------------------------------------------------- /src/hooks/private/useRadioGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useRadioGroup/index.ts -------------------------------------------------------------------------------- /src/hooks/private/useRadioGroup/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/private/useRadioGroup/types.ts -------------------------------------------------------------------------------- /src/hooks/useActionHandlers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useActionHandlers/README.md -------------------------------------------------------------------------------- /src/hooks/useActionHandlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useActionHandlers/index.ts -------------------------------------------------------------------------------- /src/hooks/useAsyncActionHandler/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useAsyncActionHandler'; 2 | -------------------------------------------------------------------------------- /src/hooks/useColorGenerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useColorGenerator/README.md -------------------------------------------------------------------------------- /src/hooks/useColorGenerator/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useColorGenerator/color.ts -------------------------------------------------------------------------------- /src/hooks/useColorGenerator/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useColorGenerator/constants.ts -------------------------------------------------------------------------------- /src/hooks/useColorGenerator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useColorGenerator/index.ts -------------------------------------------------------------------------------- /src/hooks/useColorGenerator/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useColorGenerator/types.ts -------------------------------------------------------------------------------- /src/hooks/useControlledState/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useControlledState/README.md -------------------------------------------------------------------------------- /src/hooks/useControlledState/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useControlledState'; 2 | -------------------------------------------------------------------------------- /src/hooks/useFileInput/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useFileInput/README.md -------------------------------------------------------------------------------- /src/hooks/useFileInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useFileInput/index.ts -------------------------------------------------------------------------------- /src/hooks/useFileInput/useFileInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useFileInput/useFileInput.ts -------------------------------------------------------------------------------- /src/hooks/useFocusWithin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useFocusWithin/README.md -------------------------------------------------------------------------------- /src/hooks/useFocusWithin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useFocusWithin/index.ts -------------------------------------------------------------------------------- /src/hooks/useForkRef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useForkRef/README.md -------------------------------------------------------------------------------- /src/hooks/useForkRef/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useForkRef/index.ts -------------------------------------------------------------------------------- /src/hooks/useForkRef/mergeRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useForkRef/mergeRefs.ts -------------------------------------------------------------------------------- /src/hooks/useForkRef/setRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useForkRef/setRef.ts -------------------------------------------------------------------------------- /src/hooks/useForkRef/useForkRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useForkRef/useForkRef.ts -------------------------------------------------------------------------------- /src/hooks/useIntersection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useIntersection/README.md -------------------------------------------------------------------------------- /src/hooks/useIntersection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useIntersection/index.ts -------------------------------------------------------------------------------- /src/hooks/useLayoutEffect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useLayoutEffect/index.ts -------------------------------------------------------------------------------- /src/hooks/useListNavigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useListNavigation/README.md -------------------------------------------------------------------------------- /src/hooks/useListNavigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useListNavigation/index.ts -------------------------------------------------------------------------------- /src/hooks/useListNavigation/moveBack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useListNavigation/moveBack.ts -------------------------------------------------------------------------------- /src/hooks/useOutsideClick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useOutsideClick/README.md -------------------------------------------------------------------------------- /src/hooks/useOutsideClick/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useOutsideClick/index.ts -------------------------------------------------------------------------------- /src/hooks/usePortalContainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/usePortalContainer/README.md -------------------------------------------------------------------------------- /src/hooks/usePortalContainer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/usePortalContainer/index.ts -------------------------------------------------------------------------------- /src/hooks/useResizeObserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useResizeObserver/README.md -------------------------------------------------------------------------------- /src/hooks/useResizeObserver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useResizeObserver/index.ts -------------------------------------------------------------------------------- /src/hooks/useSelect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useSelect/README.md -------------------------------------------------------------------------------- /src/hooks/useSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useSelect/index.ts -------------------------------------------------------------------------------- /src/hooks/useSelect/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useSelect/types.ts -------------------------------------------------------------------------------- /src/hooks/useSelect/useOpenState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useSelect/useOpenState.ts -------------------------------------------------------------------------------- /src/hooks/useSelect/useSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useSelect/useSelect.ts -------------------------------------------------------------------------------- /src/hooks/useTimeout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useTimeout/README.md -------------------------------------------------------------------------------- /src/hooks/useTimeout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useTimeout/index.ts -------------------------------------------------------------------------------- /src/hooks/useTimeout/useTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useTimeout/useTimeout.ts -------------------------------------------------------------------------------- /src/hooks/useUniqId/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useUniqId/README.md -------------------------------------------------------------------------------- /src/hooks/useUniqId/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useUniqId/index.ts -------------------------------------------------------------------------------- /src/hooks/useUniqId/useUniqId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useUniqId/useUniqId.ts -------------------------------------------------------------------------------- /src/hooks/useViewportSize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useViewportSize/README.md -------------------------------------------------------------------------------- /src/hooks/useViewportSize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useViewportSize/index.ts -------------------------------------------------------------------------------- /src/hooks/useVirtualElementRef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useVirtualElementRef/README.md -------------------------------------------------------------------------------- /src/hooks/useVirtualElementRef/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/hooks/useVirtualElementRef/index.ts -------------------------------------------------------------------------------- /src/i18n/addComponentKeysets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/i18n/addComponentKeysets.ts -------------------------------------------------------------------------------- /src/i18n/addLanguageKeysets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/i18n/addLanguageKeysets.test.ts -------------------------------------------------------------------------------- /src/i18n/addLanguageKeysets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/i18n/addLanguageKeysets.ts -------------------------------------------------------------------------------- /src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/i18n/i18n.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/i18n/types.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/legacy.ts: -------------------------------------------------------------------------------- 1 | export * from './components/legacy'; 2 | -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/stories/Branding/Example.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/stories/Branding/Example.stories.tsx -------------------------------------------------------------------------------- /src/stories/Branding/Overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/stories/Branding/Overview.mdx -------------------------------------------------------------------------------- /src/stories/Colors.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/stories/Colors.stories.tsx -------------------------------------------------------------------------------- /src/stories/Typography.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/stories/Typography.stories.tsx -------------------------------------------------------------------------------- /src/stories/tests-factory/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/stories/tests-factory/models.ts -------------------------------------------------------------------------------- /src/toaster-singleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/toaster-singleton.ts -------------------------------------------------------------------------------- /src/unstable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/unstable.ts -------------------------------------------------------------------------------- /src/utils/EventEmitter/EventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/utils/EventEmitter/EventEmitter.ts -------------------------------------------------------------------------------- /src/utils/EventEmitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/utils/EventEmitter/index.ts -------------------------------------------------------------------------------- /src/utils/EventEmitter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/utils/EventEmitter/types.ts -------------------------------------------------------------------------------- /src/utils/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/utils/configure.ts -------------------------------------------------------------------------------- /src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/utils/dom.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /styles/fonts.scss: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap'); 2 | -------------------------------------------------------------------------------- /styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/mixins.scss -------------------------------------------------------------------------------- /styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/styles.scss -------------------------------------------------------------------------------- /styles/themes/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/_index.scss -------------------------------------------------------------------------------- /styles/themes/common/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/common/_index.scss -------------------------------------------------------------------------------- /styles/themes/common/spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/common/spacing.scss -------------------------------------------------------------------------------- /styles/themes/common/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/common/typography.scss -------------------------------------------------------------------------------- /styles/themes/dark-hc/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark-hc/_index.scss -------------------------------------------------------------------------------- /styles/themes/dark-hc/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark-hc/base.scss -------------------------------------------------------------------------------- /styles/themes/dark-hc/line.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark-hc/line.scss -------------------------------------------------------------------------------- /styles/themes/dark-hc/private.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark-hc/private.scss -------------------------------------------------------------------------------- /styles/themes/dark-hc/sfx.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark-hc/sfx.scss -------------------------------------------------------------------------------- /styles/themes/dark-hc/system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark-hc/system.scss -------------------------------------------------------------------------------- /styles/themes/dark-hc/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark-hc/text.scss -------------------------------------------------------------------------------- /styles/themes/dark/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark/_index.scss -------------------------------------------------------------------------------- /styles/themes/dark/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark/base.scss -------------------------------------------------------------------------------- /styles/themes/dark/line.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark/line.scss -------------------------------------------------------------------------------- /styles/themes/dark/private.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark/private.scss -------------------------------------------------------------------------------- /styles/themes/dark/sfx.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark/sfx.scss -------------------------------------------------------------------------------- /styles/themes/dark/system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark/system.scss -------------------------------------------------------------------------------- /styles/themes/dark/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/dark/text.scss -------------------------------------------------------------------------------- /styles/themes/light-hc/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light-hc/_index.scss -------------------------------------------------------------------------------- /styles/themes/light-hc/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light-hc/base.scss -------------------------------------------------------------------------------- /styles/themes/light-hc/line.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light-hc/line.scss -------------------------------------------------------------------------------- /styles/themes/light-hc/private.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light-hc/private.scss -------------------------------------------------------------------------------- /styles/themes/light-hc/sfx.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light-hc/sfx.scss -------------------------------------------------------------------------------- /styles/themes/light-hc/system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light-hc/system.scss -------------------------------------------------------------------------------- /styles/themes/light-hc/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light-hc/text.scss -------------------------------------------------------------------------------- /styles/themes/light/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light/_index.scss -------------------------------------------------------------------------------- /styles/themes/light/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light/base.scss -------------------------------------------------------------------------------- /styles/themes/light/line.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light/line.scss -------------------------------------------------------------------------------- /styles/themes/light/private.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light/private.scss -------------------------------------------------------------------------------- /styles/themes/light/sfx.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light/sfx.scss -------------------------------------------------------------------------------- /styles/themes/light/system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light/system.scss -------------------------------------------------------------------------------- /styles/themes/light/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/styles/themes/light/text.scss -------------------------------------------------------------------------------- /test-utils/setup-tests-after.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /test-utils/setup-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/test-utils/setup-tests.ts -------------------------------------------------------------------------------- /test-utils/setupTimersMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/test-utils/setupTimersMock.ts -------------------------------------------------------------------------------- /test-utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/test-utils/utils.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravity-ui/uikit/HEAD/tsconfig.test.json --------------------------------------------------------------------------------